Python ffmpeg子进程:管道破裂[关闭]

lzfw57am  于 2022-12-15  发布在  Python
关注(0)|答案(2)|浏览(373)

**已关闭。**此问题为not reproducible or was caused by typos。当前不接受答案。

这个问题是由打字错误或无法再重现的问题引起的。虽然类似的问题在这里可能是on-topic,但这个问题的解决方式不太可能帮助未来的读者。
2天前关闭。
Improve this question
以下脚本使用OpenCV读取视频,对每帧应用转换,并尝试使用ffmpeg写入。我的问题是,我无法使用subprocess模块获得ffmpeg。我总是在尝试写入stdin的行中获得错误BrokenPipeError: [Errno 32] Broken pipe。为什么会这样,我做错了什么?

# Open input video with OpenCV
video_in = cv.VideoCapture(src_video_path)
frame_width = int(video_in.get(cv.CAP_PROP_FRAME_WIDTH))
frame_height = int(video_in.get(cv.CAP_PROP_FRAME_HEIGHT))
fps = video_in.get(cv.CAP_PROP_FPS)
frame_count = int(video_in.get(cv.CAP_PROP_FRAME_COUNT))
bitrate = bitrate * 4096 * 2160 / (frame_width * frame_height)

# Process video in ffmpeg pipe
# See http://zulko.github.io/blog/2013/09/27/read-and-write-video-frames-in-python-using-ffmpeg/
command = ['ffmpeg',
           '-loglevel', 'error',
           '-y',
           # Input
           '-f', 'rawvideo',
           '-vcodec', 'rawvideo'
           '-pix_fmt', 'bgr24',
           '-s', str(frame_width) + 'x' + str(frame_height),
           '-r', str(fps),
           # Output
           '-i', '-',
           '-an',
           '-vcodec', 'h264',
           '-r', str(fps),
           '-b:v', str(bitrate) + 'M',
           '-pix_fmt', 'bgr24',
           dst_video_path
           ]
pipe = sp.Popen(command, stdin=sp.PIPE)

for i_frame in range(frame_count):
    ret, frame = video_in.read()
    if ret:
        warped_frame = cv.warpPerspective(frame, homography, (frame_width, frame_height))
        pipe.stdin.write(warped_frame.astype(np.uint8).tobytes())
    else:
        print('Stopped early.')
        break
print('Done!')
3htmauhk

3htmauhk1#

'-vcodec', 'rawvideo'后面有一个缺少逗号!!
我花了一个小时才注意到...
您还应该关闭stdin并等待print('Done!')

pipe.stdin.close()
pipe.wait()
4zcjmb1e

4zcjmb1e2#

如果其他人也有类似的错误,也要检查你的图像宽度/高度是否是偶数。这是一个随机错误,没有真正弄清楚,也会导致管道破裂。

相关问题