summaryrefslogtreecommitdiff
path: root/doc/muxers.texi
diff options
context:
space:
mode:
authorVishwanath Dixit <vdixit@akamai.com>2018-04-16 10:55:45 +0530
committerKarthick Jeyapal <kjeyapal@akamai.com>2018-04-17 14:30:47 +0530
commit01ba52852d2ada3c79fe02a7de5bc1fdc27d56e8 (patch)
tree20d607ea62270efe54ae9f18aaba35075ea84e2d /doc/muxers.texi
parentc116221d90d63cc558a8e91d8a86f56545111011 (diff)
avformat/dashenc: replacing 'min_seg_duration' with 'seg_duration'
There are use cases where average segment duration needs to be configured and muxer is expected to maintain the average segment duration. So, using the name 'min_seg_duration' will be misleading. So, changing the parameter name to 'seg_duration', where it can be minimum segment duration or average segment duration based on the use-case. The additional updates needed for this functinality are made the sub-sequent patches of this patch series.
Diffstat (limited to 'doc/muxers.texi')
-rw-r--r--doc/muxers.texi4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/muxers.texi b/doc/muxers.texi
index f288764a23..fad9c9aced 100644
--- a/doc/muxers.texi
+++ b/doc/muxers.texi
@@ -226,7 +226,9 @@ ffmpeg -re -i <input> -map 0 -map 0 -c:a libfdk_aac -c:v libx264
@table @option
@item -min_seg_duration @var{microseconds}
-Set the segment length in microseconds.
+This is a deprecated option to set the segment length in microseconds, use @var{seg_duration} instead.
+@item -seg_duration @var{duration}
+Set the segment length in seconds (fractional value can be set).
@item -window_size @var{size}
Set the maximum number of segments kept in the manifest.
@item -extra_window_size @var{size}