python

超轻量级php框架startmvc

python处理RSTP视频流过程解析

更新时间:2020-08-20 09:00:01 作者:startmvc
这篇文章主要介绍了python处理RSTP视频流过程解析,文中通过示例代码介绍的非常详细,对大

这篇文章主要介绍了python处理RSTP视频流过程解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

python链接海康摄像头,并以弹出框的方式播放实时视频流,

这种方式是以弹出框的形式播放。本地测试可以,实际业务场景不建议使用。可以采用rtsp转rtmp的方式


@shared_task
def parse_video(rtsp_address=None):
 winname = 'Video'
 if not rtsp_address:
 raise exceptions.ParseError('摄像头rstp地址错误!')

 cap = cv2.VideoCapture(rtsp_address)
 if not cap.isOpened():
 raise exceptions.ParseError('视频播放失败!')

 while cap.isOpened():
 ret, frame = cap.read()
 if not ret:
 break

 cv2.putText(frame, 'Please press "ESC" to close the window', (900, 20), cv2.FONT_HERSHEY_SIMPLEX, 0.5, (55, 255, 155), 1)
 cv2.imshow(winname, frame)
 k = cv2.waitKey(1)

 if cv2.getWindowProperty(winname, cv2.WND_PROP_AUTOSIZE) < 1:
 break
 if k == 27:
 break

 cap.release()
 cv2.destroyAllWindows()

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

python RSTP 视频