diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-05-29 01:09:51 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-05-29 01:13:59 +0200 |
commit | a8499cbbe87d00456c391f41207e1981bd7f746a (patch) | |
tree | fdfc491b412384196ec02fcf305db586a92d2c83 /doc/muxers.texi | |
parent | d858ee717bed6307b8e772bd5039ab001aeae03f (diff) | |
parent | c94e2e85cb6af8a570d8542a830556243bd32873 (diff) | |
download | ffmpeg-a8499cbbe87d00456c391f41207e1981bd7f746a.tar.gz |
Merge commit 'c94e2e85cb6af8a570d8542a830556243bd32873'
* commit 'c94e2e85cb6af8a570d8542a830556243bd32873':
nut: Support experimental NUT 4 features
Conflicts:
doc/nut.texi
libavformat/nut.h
libavformat/nutdec.c
libavformat/nutenc.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'doc/muxers.texi')
-rw-r--r-- | doc/muxers.texi | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/muxers.texi b/doc/muxers.texi index bab0081724..c1cf18607b 100644 --- a/doc/muxers.texi +++ b/doc/muxers.texi @@ -706,6 +706,23 @@ Alternatively you can write the command as: ffmpeg -benchmark -i INPUT -f null - @end example +@section nut + +@table @option +@item -syncpoints @var{flags} +Change the syncpoint usage in nut: +@table @option +@item @var{default} use the normal low-overhead seeking aids. +@item @var{none} do not use the syncpoints at all, reducing the overhead but making the stream non-seekable; +@item @var{timestamped} extend the syncpoint with a wallclock field. +@end table +The @var{none} and @var{timestamped} flags are experimental. +@end table + +@example +ffmpeg -i INPUT -f_strict experimental -syncpoints none - | processor +@end example + @section ogg Ogg container muxer. |