diff options
author | Andrey Semashev | 2018-11-17 20:40:50 +0300 |
---|---|---|
committer | Karthick J | 2018-11-21 18:01:53 +0530 |
commit | 322e53f8aebb50cab0c3138c04b950f95fc455e5 (patch) | |
tree | 14ca54dc9c725fb277cfe13051f265c4fb2bc6a6 /doc | |
parent | 1ee4b4006be6c34a0dfec367a60942b85d13238e (diff) |
lavf/dashenc: Add DASH segment type auto and make it the default
This commit restores the ability to create DASH streams with codecs
that require different containers that was lost after commit
2efdbf7367989cf9d296c25fa3d2aff8d6e25fdd. It adds a new "auto" value for
the dash_segment_type option and makes it the default. When in this mode,
the segment format will be chosen based on the codec used in the stream:
webm for Vorbis, Opus, VP8 or VP9, mp4 otherwise.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/muxers.texi | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/muxers.texi b/doc/muxers.texi index 62f4091e31..2fed5cf3d4 100644 --- a/doc/muxers.texi +++ b/doc/muxers.texi @@ -289,10 +289,13 @@ Set container format (mp4/webm) options using a @code{:} separated list of key=value parameters. Values containing @code{:} special characters must be escaped. -@item dash_segment_type @var{dash_segment_type} +@item -dash_segment_type @var{dash_segment_type} Possible values: +@item auto +If this flag is set, the dash segment files format will be selected based on the stream codec. This is the default mode. + @item mp4 -If this flag is set, the dash segment files will be in in ISOBMFF format. This is the default format. +If this flag is set, the dash segment files will be in in ISOBMFF format. @item webm If this flag is set, the dash segment files will be in in WebM format. |