webrtc

DEV Community

Most WebRTC tutorials on iOS assume your video comes from the device camera. You call RTCCameraVideoCapturer , point it at the front lens, and the framework handles the rest. But a large class of real applications doesn't have a camera as the source at all — it has an IP camera, a dashcam, a drone feed, or some other device speaking RTSP, and the iOS app's job is to ingest that stream and republi…

iottechnologywebrtc
DEV Community

Camdiv matches you with a random stranger and puts you both on live video. I wrote separately about the genuinely hard part, which is moderation. This post is about the part people assume is hard and mostly isn't: getting two browsers to see and hear each other. WebRTC handles the media. The interesting work lives around it. Think about the clock the user feels. They click Start, then they wait, …

technologywebrtc
DEV Community

TL;DR: I built a P2P file transfer tool that runs entirely in the browser. No install, no server relay, no account. Here's what I learned about WebRTC data channels, resumable transfers, and the browser storage mess along the way. Most file transfer tools follow the same pattern: upload to a server, get a link, the recipient downloads from that server. Your file sits on someone else's infrastruct…

computer-sciencep2pweb-developmentwebrtc