gpt4 book ai didi

python - 将 yuv420p 原始数据转换为图像 opencv

转载 作者:行者123 更新时间:2023-12-02 16:09:05 25 4
gpt4 key购买 nike

我有来自像素格式 yuv420p 的 rtmp 服务器的原始数据
我使用管道读取数据。但我不知道如何将原始数据解码为图像。

command = ['ffmpeg']
command.extend(["-loglevel", "fatal", "-i", 'rtmp://localhost/live/stream', "-f", "flv", "-pix_fmt" , 'yuv420p', '-vcodec', 'h264', "-"])
self.process = subprocess.Popen(command, stderr=subprocess.PIPE ,stdout = subprocess.PIPE)
self.output = self.process.stdout
self.fs = width*height*3 // 2
while True:
data = self.output.read(self.fs)
我试过这样解码 enter link description here
但结果是 enter image description here
谁能帮我解决这个问题?

最佳答案

我不是 ffmpeg 方面的专家,所以我会听从任何知道得更好的人的意见,如果证明不正确,我会删除我的答案。
据我所知,您有一个 RTMP 流,您想将其摄取到 OpenCV 中。 OpenCV 使用带有 BGR 排序的 Numpy 数组来存储图像 - 显然还有视频帧,它们只是一个接一个的大量图像。所以,我建议你问ffmpeg将 Flash 视频流转换为 OpenCV 想要的内容:

ffmpeg <RTMP INPUT STUFF> -pix_fmt bgr24 -f rawvideo -
然后更改它,因为它现在是 BGR888:
self.fs = width * height * 3

因为我没有可用的 RTMP 源,所以我生成了一个这样的测试流:
# Generate raw video stream to read into OpenCV    
ffmpeg -f lavfi -i testsrc=duration=10:size=640x480:rate=30 -pixel_format rgb24 -f rawvideo -
然后我用管道将它输入到 Python 中:
ffmpeg -f lavfi -i testsrc=duration=10:size=640x480:rate=30 -pixel_format rgb24 -f rawvideo - | ./PlayRawVideo
Python 程序 PlayRawVideo看起来像这样:
#!/usr/bin/env python3

import numpy as np
import cv2
import sys

# Set width and height
w, h = 640, 480

while True:
data = sys.stdin.buffer.read(w * h *3)
if len(data) == 0:
break
frame = np.frombuffer(data, dtype=np.uint8).reshape((h, w, 3))
cv2.imshow("Stream", frame)
cv2.waitKey(1)

请注意,我必须使用 sys.stdin.buffer.read()获取原始二进制数据。
enter image description here

关于python - 将 yuv420p 原始数据转换为图像 opencv,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64456621/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com