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 <pe...@friiks.de> --- v2: extended commit message libavformat/dashenc.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c index e25a660fbe..0ca7cf5aa3 100644 --- a/libavformat/dashenc.c +++ b/libavformat/dashenc.c @@ -778,6 +778,9 @@ static int dash_init(AVFormatContext *s) } else { 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, "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) return ret; -- 2.13.6 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel