mirror of https://git.ffmpeg.org/ffmpeg.git
dashenc: set DASH related options for the subsequent matroska muxer when using webm
This patch is inspired by the ffmpeg webm_chunk muxer and fixes that all resulting tracks have the same track number. Signed-off-by: Peter Große <pegro@friiks.de> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
3dca4887ae
commit
44ede215b6
|
@ -778,6 +778,9 @@ static int dash_init(AVFormatContext *s)
|
||||||
} else {
|
} else {
|
||||||
av_dict_set_int(&opts, "cluster_time_limit", c->min_seg_duration / 1000, 0);
|
av_dict_set_int(&opts, "cluster_time_limit", c->min_seg_duration / 1000, 0);
|
||||||
av_dict_set_int(&opts, "cluster_size_limit", 5 * 1024 * 1024, 0); // set a large cluster size limit
|
av_dict_set_int(&opts, "cluster_size_limit", 5 * 1024 * 1024, 0); // set a large cluster size limit
|
||||||
|
av_dict_set_int(&opts, "dash", 1, 0);
|
||||||
|
av_dict_set_int(&opts, "dash_track_number", i + 1, 0);
|
||||||
|
av_dict_set_int(&opts, "live", 1, 0);
|
||||||
}
|
}
|
||||||
if ((ret = avformat_write_header(ctx, &opts)) < 0)
|
if ((ret = avformat_write_header(ctx, &opts)) < 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Reference in New Issue