A simple C implementation to stream H.264 to browser using WebRTC
1–10 of 128 posts
Re: A simple C implementation to stream H.264 to browser using WebRTC
#2I'm not very familiar with WebRTC & how the browser pulls video usually, in what way is this better?
Also, what benefits does WebRTC give over other protocols?
Re: A simple C implementation to stream H.264 to browser using WebRTC
#3I'm not very familiar with WebRTC & how the browser pulls video usually, in what way is this better? Also, what benefits does WebRTC give over other protocols?
People mostly do this for lower latency.
Re: A simple C implementation to stream H.264 to browser using WebRTC
#4In complete sincerity, how is this better than ffmpeg
Re: A simple C implementation to stream H.264 to browser using WebRTC
#5In complete sincerity, how is this better than ffmpeg https://trac.ffmpeg.org/wiki/StreamingGuide
WebRTC with STUN is pure p2p where ffmpeg it requires a rtmp or rtsp server
Re: A simple C implementation to stream H.264 to browser using WebRTC
#6In complete sincerity, how is this better than ffmpeg https://trac.ffmpeg.org/wiki/StreamingGuide
It's certainly not better than FFmpeg. But I had a look through the source code and the author seems to have a fairly good grasp of WebRTC. The library looks really useful for anyone that wants to quickly understand WebRTC and how to use librtp and libsrtp. It's mostly a bare-bone wrapper around those libs.
Re: A simple C implementation to stream H.264 to browser using WebRTC
#7Re: A simple C implementation to stream H.264 to browser using WebRTC
#8Re: A simple C implementation to stream H.264 to browser using WebRTC
#9Re: A simple C implementation to stream H.264 to browser using WebRTC
#10Can you provide an example that streams from a v4l device?