ffmpeg # 为什么remux之后大多数ts文件的第一个时间戳是1.4s (1260000)

ffmpeg.h

    float mux_max_delay;

ffmpeg_opt.c

static void init_options(OptionsContext *o)
{
    memset(o, 0, sizeof(*o));

    ..
    o->mux_max_delay  = 0.7; // 重点 初始化是 0.7
    ...
}

static int open_output_file(OptionsContext *o, const char *filename)
{
    AVFormatContext *oc;
...
    oc->max_delay = (int)(o->mux_max_delay * AV_TIME_BASE);
...
}
static int mpegts_init(AVFormatContext *s)
{
...
if (ts->copyts < 1)
            ts->first_pcr = av_rescale(s->max_delay, PCR_TIME_BASE, AV_TIME_BASE);


static int mpegts_write_packet_internal(AVFormatContext *s, AVPacket *pkt)
{
...
       const int64_t delay = av_rescale(s->max_delay, 90000, AV_TIME_BASE) * 2; // 重点 乘以了2倍
...
    if (ts->copyts < 1) {
        if (pts != AV_NOPTS_VALUE)
            pts += delay;
        if (dts != AV_NOPTS_VALUE)
            dts += delay;
    }
...
}

计算如下:
ts文件的time base是 90000

1.4 * 90000 =  1260000

即:

    pts = 126000
    pts_time = 1.4000

其它说明:

the splitting and transcoding process, generates a delay(0.7 seconds) on the frame's Play Time Seconds.
Surprisingly, when we are dealing with .ts files,this delay is doubled, which means the first frame will have a 1.4 seconds delay to play.

The solution to this problem is also using another property (muxdelay), that sets the maximum demux-decode delay. If we set this property to 0, the 0.7 seconds delay no longer exists.


控制delay的参数

另外的参数mark:

muxdelay

-muxdelay seconds (output)
Set the maximum demux-decode delay.

max_delay

max_delay integer (input/output)
Set maximum muxing or demuxing delay in microseconds.

muxdelay sets the delay in seconds while max_delay sets it in microseconds.
The end result is the same. You can see the code that sets the underlying value in ffmpeg_opt.c

output_ts_offset offset (output)
Set the output time offset.

offset must be a time duration specification, see (ffmpeg-utils)the Time duration section in the ffmpeg-utils(1) manual.

The offset is added by the muxer to the output timestamps.

Specifying a positive offset means that the corresponding streams are delayed bt the time duration specified in offset. Default value is 0 (meaning that no offset is applied).

MPEG-TS流中的pts_time的开始时间戳不为零?

但至于为什么不从0开始呢。
TS将pts和dts存储为单独的值,而其他容器使用dts + cts来确定pts
因此,如果您的流有乱序(B)帧,您将遇到必须在时间0之前解码并在之后显示的帧。
换句话说,您将在流的开头具有负(滚动)dts值。
为了简化解码器工作,一些值大于最大可能的cts(pts-dts)被添加到pts / dts以使它们在开始时进入正范围。
这是常见的做法,并由解码器/播放器将逻辑应用于向用户显示的时间。

MPEG-TS is a streaming format and ffmpeg will offset timestamps to accommodate possible video encoding delay. Setting muxpreload and muxdelay to 0 can avoid that.

FFmpeg is simply telling you the starting timestamp as parsed from the input.
MPEG-TS is a transport stream format, used to convey television broadcasts..etc, having no global header, and can be sliced at ~arbitrary points.
There are timestamp packets (PCR) at regular intervals, and ffmpeg is showing you the timestamp of the earliest packet.

References:

https://lists.ffmpeg.org/pipermail/libav-user/2012-May/002034.html
https://www.w3.org/2013/12/byte-stream-format-registry/mp2t-byte-stream-format.html
https://tsduck.io/
https://lists.ffmpeg.org/pipermail/ffmpeg-user/2013-February/013778.html
https://ffmpeg.org/ffmpeg-formats.html
https://cloud.tencent.com/developer/ask/137010
https://www.thinbug.com/q/27532571
https://superuser.com/questions/1109852/ffmpeg-transcode-each-segment-individually
https://stackoverflow.com/questions/29527882/ffmpeg-copyts-to-preserve-timestamp?answertab=active#tab-top
https://stackoverflow.com/questions/44565968/while-transcoding-to-mpegts-ffmpeg-creates-the-first-frame-after-1-48-seconds-de
https://superuser.com/questions/1462997/ffmpeg-spliting-video-but-keeping-the-timestamp/1463051
https://video.stackexchange.com/questions/26364/how-to-change-start-time-using-ffmpeg
https://www.thinbug.com/q/44565968

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,839评论 6 482
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,543评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 153,116评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,371评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,384评论 5 374
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,111评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,416评论 3 400
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,053评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,558评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,007评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,117评论 1 334
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,756评论 4 324
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,324评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,315评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,539评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,578评论 2 355
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,877评论 2 345