summaryrefslogtreecommitdiff
path: root/doc/muxers.texi
diff options
context:
space:
mode:
authorKarthick Jeyapal <kjeyapal@akamai.com>2018-05-04 10:45:58 +0530
committerKarthick Jeyapal <kjeyapal@akamai.com>2018-05-28 10:52:01 +0530
commit2efdbf7367989cf9d296c25fa3d2aff8d6e25fdd (patch)
tree0fd7614bf0fa46796f2b90e6287990cb45fc73f2 /doc/muxers.texi
parente3275f937dc38e740c74539f2f6aad5bfdba2bf1 (diff)
avformat/dashenc: Added option for Segment file format
Right now segment file format is chosen to be either mp4 or webm based on the codec format. This patch makes that choice configurable by the user, instead of being decided by the muxer. Also with this change per-stream choice segment file format(based on codec type) is not possible. All the output audio and video streams should be in the same file format.
Diffstat (limited to 'doc/muxers.texi')
-rw-r--r--doc/muxers.texi9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/muxers.texi b/doc/muxers.texi
index 59e20bf426..80c65420ba 100644
--- a/doc/muxers.texi
+++ b/doc/muxers.texi
@@ -288,6 +288,15 @@ the segment indexes fall behind the expected real time position.
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}
+Possible values:
+@item mp4
+If this flag is set, the dash segment files will be in in ISOBMFF format. This is the default format.
+
+@item webm
+If this flag is set, the dash segment files will be in in WebM format.
+
@end table
@anchor{framecrc}