summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2014-09-06 15:43:11 +0200
committerStefano Sabatini <stefasab@gmail.com>2014-09-07 13:17:46 +0200
commit4f5493fe2380ad4aba67759baa7d7d4437f2e776 (patch)
tree0d85d88df25cdbb9581f8887dd54c3a54d01e0b2 /doc
parent2c5c37ade115b5efa3f77ce11bc2c4e46b384959 (diff)
lavf/segment: add segment_format_options option
Diffstat (limited to 'doc')
-rw-r--r--doc/muxers.texi11
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/muxers.texi b/doc/muxers.texi
index d7833a6310..69ce47ff48 100644
--- a/doc/muxers.texi
+++ b/doc/muxers.texi
@@ -804,6 +804,11 @@ reference stream. The default value is @code{auto}.
Override the inner container format, by default it is guessed by the filename
extension.
+@item segment_format_options @var{options_list}
+Set output format options using a :-separated list of key=value
+parameters. Values containing the @code{:} special character must be
+escaped.
+
@item segment_list @var{name}
Generate also a listfile named @var{name}. If not specified no
listfile is generated.
@@ -959,6 +964,12 @@ ffmpeg -i in.mkv -codec copy -map 0 -f segment -segment_list out.list out%03d.nu
@end example
@item
+Segment input and set output format options for the output segments:
+@example
+ffmpeg -i in.mkv -f segment -segment_time 10 -segment_format_options movflags=+faststart out%03d.mp4
+@end example
+
+@item
As the example above, but segment the input file according to the split
points specified by the @var{segment_times} option:
@example