这看起来像 gstreamer 或 v4l2loopback 中的错误。它与如何处理可变帧速率有关。
我设法以这种方式重现它:
启动管道将视频从网络传输到/dev/video0
$ gst-launch-1.0 -v tcpserversrc port=5000 \
! gdpdepay ! rtph264depay \
! decodebin \
! v4l2sink device=/dev/video0
启动管道将一些视频传输到端口 5000
$ gst-launch-1.0 -v videotestsrc \
! x264enc ! rtph264pay ! gdppay \
! tcpserversink port=5000
尝试从/dev/video0
$ gst-launch v4l2src device=/dev/video0 ! autovideosink
...
ERROR: from element /GstPipeline:pipeline0/GstV4l2Src:v4l2src0: Device '/dev/video1' is not a capture device.
v4l2sink
现在,请注意第一个管道的调试日志中的上限。
/GstPipeline:pipeline0/GstV4l2Sink:v4l2sink0.GstPad:sink: caps = video/x-raw, format=(string)I420, width=(int)320, height=(int)240, pixel-aspect-ratio=(fraction)1/1, interlace-mode=(string)progressive, colorimetry=(string)bt601, framerate=(fraction)0/1
它提到framerate=(fraction)0/1
. 在 gstreamer 的术语中,这意味着帧速率是可变的。根据v4l2sink
的源代码,它似乎将相同的帧速率提供给v4l2loopback
内核模块,但v4l2loopback
不理解零帧速率。
(这只是假设,还需要检查是否真的发生了。)
要解决此错误,您可以修复帧速率。只需将videorate
元素添加到第一个管道:
$ gst-launch-1.0 -v tcpserversrc port=5000 \
! gdpdepay ! rtph264depay \
! decodebin \
! videorate ! video/x-raw, framerate=25/1 \
! v4l2sink device=/dev/video0