user1037552
user1037552

Reputation: 269

how to make RTSP request in html5 or in javascript?

How to make request "rtsp://localhost:554/sample_100kbit.mp4"? (in HTML5 or Javascript) I want to access video streaming data which source is present on Darwin server

Upvotes: 1

Views: 2121

Answers (2)

linkingvision
linkingvision

Reputation: 121

HTML5 don't support rtsp URL, and maybe MSE or WebRTC can help refer RTSP solution for JavaScript/HTML5

Upvotes: -1

Alnitak
Alnitak

Reputation: 339985

I don't believe it's possible without an additional browser plugin.

The <video> tag in HTML5 requires the content to be served over HTTP.

Flash supports streaming using their own protocol (RTMP) and there are products available that will proxy between RTSP and RTMP. However that would require you to run your own server and provision the bandwidth between user -> proxy -> content.

Upvotes: 3

Related Questions