将时间戳添加到H264-ES视频流gstreamer

时间:2017-05-12 18:31:33

标签: video gstreamer-1.0

我有一个文件(可能是mplayer -identify所说的) H264-ES 信息流。

可以使用以下gstreamer管道播放:

gst-launch-1.0 filesrc location=vid.H264 ! h264parse ! avdec_h264 ! autovideosink

(我在示例中使用autovideosink,但管道要复杂得多 - 这是"最小的工作示例") 它播放速度非常快,可能与我的CPU允许的速度一样快。如果我使用任何需要时间戳的元素,则会失败,因为该流具有帧率0/1

我认为该流根本不包含任何帧速率信息。

请参阅:

$ mplayer -identify vid.H264 2>&1 | grep -i fps
FPS not specified in the header or invalid, use the -fps option.
ID_VIDEO_FPS=0.000

我知道正确的帧率应该是多少(让我们说它的25fps),我希望能够将正确的时间戳放入视频帧设置正确的流帧速率

我尝试了什么:

我认为我可以使用videorate

gst-launch-1.0 filesrc location=vid.H264 ! h264parse ! avdec_h264 \
               ! videorate ! video/x-raw,framerate=25/1 ! autovideosink

但是我错了 - videorate尝试将传入的流转换为固定的帧速率,有时它看起来像我想要的那样,但是当下游的任何元素中有最轻微的延迟时,它会产生&#34 ;冷冻框架"视频 - 许多重复的帧 - 所以我认为我可以使用drop-only=true选项,但它根本不起作用:

$ GST_DEBUG=3 gst-launch-1.0 filesrc location=vid.H264 ! h264parse ! avdec_h264 \
        ! videorate drop-only=true ! video/x-raw,framerate=25/1 ! autovideosink

Setting pipeline to PAUSED ...
0:00:00.030550249 31831      0x2094e10 WARN                 basesrc gstbasesrc.c:3470:gst_base_src_start_complete:<filesrc0> pad not activated yet
Pipeline is PREROLLING ...
0:00:00.044233138 31831      0x207d450 WARN                   libav gstavcodecmap.c:2408:gst_ffmpeg_caps_to_pixfmt: ignoring insane framerate 1/0
0:00:00.045314795 31831      0x207d450 WARN                GST_PADS gstpad.c:3742:gst_pad_peer_query:<avdec_h264-0:src> could not send sticky events
0:00:00.070760684 31831      0x207d450 WARN               baseparse gstbaseparse.c:3262:gst_base_parse_loop:<h264parse0> error: streaming stopped, reason not-negotiated
ERROR: from element /GstPipeline:pipeline0/GstH264Parse:h264parse0: GStreamer encountered a general stream error.
Additional debug info:
gstbaseparse.c(3262): gst_base_parse_loop (): /GstPipeline:pipeline0/GstH264Parse:h264parse0:
streaming stopped, reason not-negotiated
ERROR: pipeline doesn't want to preroll.
Setting pipeline to NULL ...
Freeing pipeline ...

问题出在avdec_h264videorate之间 - 它不会接受framerate=0/1个上限。

我认为我需要的是(假想的管道):

$ GST_DEBUG=3 gst-launch-1.0 filesrc location=vid.H264 ! h264parse ! avdec_h264 \
        ! force_timestamps framerate=25/1 ! autovideosink

我害怕我自己必须写force_timestamps元素,但因为我之前写了一些元素,这是我做过的最难和最不愉快的事情之一,我&# 39;如果可能的话,更倾向于使用现有的元素。

所以我的问题是:

是否有某种方式(最好使用现有元素)以某些固定的帧速率强制视频帧(或gstreamer缓冲区)上的时间戳?

1 个答案:

答案 0 :(得分:0)

技术上,这不是一个答案,因为这样,原来的h264流 失去了。

这是一个丑陋的黑客,但我需要视频,这给了我一些东西 可以使用质量稍差:

fn="$1"

mkdir images

gst-launch-1.0 filesrc location=$fn ! h264parse ! avdec_h264 \
    ! videoconvert ! jpegenc \
    ! multifilesink location=images/img%06d.jpg

gst-launch-1.0 multifilesrc location=images/img%06d.jpg \
    caps="image/jpeg,framerate=25/1,pixel-aspect-ratio=1/1" \
    ! jpegdec ! videoconvert ! video/x-raw \
    ! x264enc rc-lookahead=5 pass=quant quantizer=20 \
    ! avimux ! filesink location=${fn}.avi

rm -rf images