Python读取推流地址Rtsp、Rtmp、Http

import cv2
capture = cv2.VideoCapture('http://ivi.bupt.edu.cn/hls/cctv1hd.m3u8')
while True:
    ret, frame = capture.read()
    # frame = cv2.flip(frame,1)   #镜像操作
    cv2.imshow("video", frame)
    key = cv2.waitKey(50)
    #print(key)
    if key  == ord('q'):  #判断是哪一个键按下
        break
cv2.destroyAllWindows()

上一篇:树莓派+VLC 实时显示摄像


下一篇:html5播放rtsp方案