OpenCV无法从MJPEG流读取视频



我正在尝试在OpenCV2中打开带有视频的MJPEG流但是,每当我尝试阅读帧时,都会收到以下错误: [mjpeg @ 0x10f4d20] unable to decode APP fields: Invalid data found when processing input

我可以在浏览器中没有问题的情况下观看流。我还尝试了添加诸如?type=.mjpg之类的虚拟参数但没有运气的典型建议。

这就是我打开流的方式:

cap = cv2.VideoCapture("http://localhost:8000/camera/mjpeg?type=.mjpg")
while cap.isOpened():
    ret, image = cap.read()
    if not ret:
        break
    cv2.imshow("Result", image)

我正在做这件事(Python 3.7),并且正在工作。我有一个覆盆子Pi 4发送流。在同一网络上,我的MacBook正在运行以下代码。

# Open a URL stream
stream = cv2.VideoCapture('http://192.168.50.1:8080/stream.mjpg')
while ( stream.isOpened() ):
    # Read a frame from the stream
    ret, img = stream.read()
    if ret: # ret == True if stream.read() was successful
        cv2.imshow('Video Stream Monitor', img)

所以我不确定你在做什么错。

您需要使用Urllib来阅读

import cv2
import urllib.request
import numpy as np
stream = urllib.request.urlopen('http://localhost:8000/camera/mjpeg?type=.mjpg')
bytes = b''
while True:
    bytes += stream.read(1024)
    a = bytes.find(b'xffxd8') #frame starting 
    b = bytes.find(b'xffxd9') #frame ending
    if a != -1 and b != -1:
        jpg = bytes[a:b+2]
        bytes = bytes[b+2:]
        img = cv2.imdecode(np.fromstring(jpg, dtype=np.uint8), cv2.CV_LOAD_IMAGE_COLOR)
        cv2.imshow('image', img)
        if cv2.waitKey(1) == 27:
            cv2.destroyAllWindows()
            break

如果您使用的是MJPEG流媒体,请访问流率

stream = opencv.VideoCapture('http://localhost:8080/?action=stream')

stream = opencv.VideoCapture('http://XX.XX.XX.XX:8080/?action=stream')

最新更新