diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-05-30 03:32:32 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-05-30 04:38:32 +0200 |
commit | 16e25ef34b375dbc6789b6b0da7d077c1dcefe88 (patch) | |
tree | cd2b27d2a0c185192c1202f0aaa7979c760ed6a1 /doc/ffmpeg.texi | |
parent | b0387edd5e766b1032f946d6cdb35b765bb45435 (diff) | |
parent | c9cc76290f8139a012a12efe7e581276b8bd8dff (diff) | |
download | ffmpeg-16e25ef34b375dbc6789b6b0da7d077c1dcefe88.tar.gz |
Merge remote-tracking branch 'qatar/master'
* qatar/master:
avconv: extend -r to work on any input stream.
doc/avconv: expand documentation for the -s option.
avconv: don't print filters inserted by avconv in stream mappings.
avconv: merge configuration code for complex and simple filters
avconv: split configuring input filters out of configure_complex_filter
Conflicts:
configure
doc/ffmpeg.texi
ffmpeg.c
tests/ref/fate/idroq-video-encode
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'doc/ffmpeg.texi')
-rw-r--r-- | doc/ffmpeg.texi | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/doc/ffmpeg.texi b/doc/ffmpeg.texi index 44c2ad42ed..e6d2aac244 100644 --- a/doc/ffmpeg.texi +++ b/doc/ffmpeg.texi @@ -282,10 +282,27 @@ attachments. @item -vframes @var{number} (@emph{output}) Set the number of video frames to record. This is an alias for @code{-frames:v}. @item -r[:@var{stream_specifier}] @var{fps} (@emph{input/output,per-stream}) -Set frame rate (Hz value, fraction or abbreviation), (default = 25). For output -streams implies @code{-vsync cfr}. +Set frame rate (Hz value, fraction or abbreviation). + +As an input option, ignore any timestamps stored in the file and instead +generate timestamps assuming constant frame rate @var{fps}. + +As an output option, duplicate or drop input frames to achieve constant output +frame rate @var{fps} (note that this actually causes the @code{fps} filter to be +inserted to the end of the corresponding filtergraph). + @item -s[:@var{stream_specifier}] @var{size} (@emph{input/output,per-stream}) -Set frame size. The format is @samp{wxh} (default - same as source). +Set frame size. + +As an input option, this is a shortcut for the @option{video_size} private +option, recognized by some demuxers for which the frame size is either not +stored in the file or is configurable -- e.g. raw video or video grabbers. + +As an output option, this inserts the @code{scale} video filter to the +@emph{end} of the corresponding filtergraph. Please use the @code{scale} filter +directly to insert it at the beginning or some other place. + +The format is @samp{wxh} (default - same as source). @item -aspect[:@var{stream_specifier}] @var{aspect} (@emph{output,per-stream}) Set the video display aspect ratio specified by @var{aspect}. |