Skip to content Skip to sidebar Skip to footer

Rtsp Solution For Javascript/html5

I am developing a Smart TV application and streaming live video from an IP Camera is a huge portion of the functionality. The camera's manual states that if it is set to stream MPE

Solution 1:

There doesn't seem to be any pure JS or HTML5 solution for this. You'll probably need to go through a server that will transcode the video.

See also: https://stackoverflow.com/a/4900156/3527940

Solution 2:

Two way can play rtsp live video to html5, but both need gateway to tranfer the rtsp real stream to the format html5 can use, and do not need transcode.

a. media source extensions Need a websocket gateway to repack the rtsp H264 stream to mp4 box.

b. WebRTC Send the RTSP H264 data to WebRTC

More detail you can refer https://linkingvision.com/rtsp_in_html5_with_low_latency

Post a Comment for "Rtsp Solution For Javascript/html5"