Is it possible to get the RTSP Streaming data into the web browser?
Below are some of my findings. Kindly correct me if I am wrong?
Only Mac OS, and Safari supports RTSP Live Streaming.
HTML 5 video does not support RTSP.
I can use the VLC plugin, but I don't want to use that.
Possibility of mixing ffmpeg and websocket?
Assume my IP camera is connected with Ethernet.
In the client machine:
- I run ffmpeg to get the data from server (ie: IP)
- Client machine runs websocket.
- Once ffmpeg gets the data from RTSP Server, it decodes, and generates the raw image of any format (for example: yuv).
- Now, i have to send this image to browser through websocket.
Question:
- It is the right approach ?
- How can I get the decoded image from ffmpeg into the browser ?
I might be wrong in different places. Kindly provide input.