gpt4 book ai didi

Gstreamer 多个接收器不起作用

转载 作者:行者123 更新时间:2023-12-03 07:58:02 24 4
gpt4 key购买 nike

我正在尝试从网络摄像头获取流,然后使用 tee 获取两个接收器(filesink 和 autovideosink),以便我可以在窗口中可视化视频并同时将其保存到文件夹中。当我运行这个命令时,我在窗口中只得到一个卡住的图像,而不是视频流。它适用于两个自动视频接收器(我有两个带有两个视频流的窗口),所以我猜问题出在文件接收器部分。文件接收器单独工作完美。

gst-launch-1.0 -v v4l2src device=/dev/video0 ! tee name=t \
t. ! queue ! videoscale ! video/x-raw,framerate=30/1,width=320,height=240 ! \
videoconvert ! autovideosink \
t. ! queue ! video/x-raw,framerate=30/1,width=320,height=240 ! \
x264enc ! mpegtsmux ! filesink location=~/Videos/test1.mp4

最佳答案

尝试添加 async=0属性到文件接收器。

    gst-launch-1.0 -v v4l2src device=/dev/video0 ! tee name=t \
t. ! queue ! videoscale ! video/x-raw,framerate=30/1,width=320,height=240 ! \
videoconvert ! autovideosink \
t. ! queue ! video/x-raw,framerate=30/1,width=320,height=240 ! \
x264enc ! mpegtsmux ! filesink **async=0** location=~/Videos/test1.mp4

关于Gstreamer 多个接收器不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45962097/

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