I am trying to play .mp4 file which is on Darwin server
I have tried with my code but its not working
if i open rtsp://192.168.15.158:554/sample_100kbit.mp4 in VLC player its working fine.
Whats the wrong with this?
my code is
<!DOCTYPE html>
<html>
<body>
<video src="rtsp://192.168.15.158:554/sample_100kbit.mp4" width="320" height="240"
controls="controls">
Your browser does not support the video tag.
</video>
</body>
</html>
Your browser doesn’t know how to communicate using the
RSTP(rtsp://) protocol. That’s why it works in VLC (which supports it) but not your browser.