我正在使用gstreamer(gst-launch)捕获摄像头并将视频和图像帧保存为流。管道的问题是,当管道完成(通过中断)视频记录时,它不能支持位置跟踪和搜索。因此,视频在具有未知长度的vlc播放器中播放。我认为问题在于管道本身。我们如何才能实现支持位置跟踪和寻求。
下面你可以看到gstreamer管道代码:
gst-launch -v --gst-debug-level=0 \
v4l2src device=/dev/video0 \
! videorate \
! video/x-raw-yuv, width=320, height=240, framerate=5/1 \
! tee name=tp
tp. \
! queue \
! videobalance saturation=0.0 \
! textoverlay halign=left valign=top text="(c)PARK ON OM " shaded-background=true \
! clockoverlay halign=right valign=top time-format="%D %T " text="Date:" shaded-background=true \
! queue \
! ffmpegcolorspace \
! ffenc_mpeg4 \
! avimux \
! filesink location=/ram/pmc/recordCAM1.mp4 \
tp. \
! queue \
! jpegenc \
! multifilesink location=/ram/pmc/webcam1.jpeg &
管道的解释如下:
______________ ________ _______ ________________
|convert into|->|append|->|encode| -> |save file as |
_________________ ________________ _____________ | grayscale | |text | |ffenc | | recordCAM1.mp4 |
| use /dev/video |-> |set framerate |-> |multiplexer|->
| as input source| |and resolution| | named tp |->
__________ _________________
|jpeg enc|->|save to filesink|
| encode | | as jpeg |
最后,两个mux输出都将文件保存到磁盘。 我应该在管道中添加什么来在任何媒体播放器上实现位置跟踪。
此致
答案 0 :(得分:1)
确保当你中断它时,gstreamer正确地发出流即将结束的所有元素的信号。
通常这是通过发送EOS事件来完成的。
man gst-launch
[...]
-e, --eos-on-shutdown
Force an EOS event on sources before shutting the pipeline down.
This is useful to make sure muxers create readable files when a muxing
pipeline is shut down forcefully via Control-C.