Streaming via RTSP or RTP in HTML5

Technically ‘Yes’ (but not really…) HTML 5’s <video> tag is protocol agnostic—it does not care. You place the protocol in the src attribute as part of the URL. E.g.: <video src=”rtp://myserver.com/path/to/stream”> Your browser does not support the VIDEO tag and/or RTP streams. </video> or maybe <video src=”http://myserver.com:1935/path/to/stream/myPlaylist.m3u8″> Your browser does not support the VIDEO tag … Read more

Video Streaming from IP Camera in Python Using OpenCV cv2.VideoCapture

You’re most likely getting that error due to an invalid stream link. Insert your stream link into VLC player to confirm it is working. Here’s a IP camera video streaming widget using OpenCV and cv2.VideoCapture.read(). This implementation uses threading for obtaining frames in a different thread since read() is a blocking operation. By putting this … Read more