Can I use WebRTC to receive a standard RTP video stream?

Pal Szasz picture Pal Szasz · May 24, 2013 · Viewed 19.5k times · Source

I have two computers on the same network. One of them transmits a movie (H264) with RTP protocol. Is it possible to create a simple javascript app to receive this stream on the second computer and display in a video tag?

So far my impression of WebRTC is that it's designed to be used between browser (both using WebRTC api), but I want to use it only on the receiving side.

Answer

Konga Raju picture Konga Raju · May 24, 2013

It is possible to stream video uisng WebRTC, you can send only data parts with RTP protocol, on the other side you should use Media Source API to stream video.

Here is article with demo explained about Media Source API