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

后端 未结 2 660
自闭症患者
自闭症患者 2021-01-31 17:44

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

2条回答
  •  遥遥无期
    2021-01-31 18:11

    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

提交回复
热议问题