diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-08-21 16:20:37 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-08-22 07:16:28 +0200 |
commit | b6d28eff8454dd37c2f461fa7c55e35be7b05e9c (patch) | |
tree | 91a9bc418002e9b7d7d888a1dbd8209e26eddf2d | |
parent | 143d6a3fa79f2d8b230c02939e3d8bbdbbacb25a (diff) | |
download | ffmpeg-b6d28eff8454dd37c2f461fa7c55e35be7b05e9c.tar.gz |
avplay: add examples of how to specify size/pixel format through private options
Clarify with an example what the user should use instead of the
deprecated (and no longer working) -s/-pix_fmt options.
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-rw-r--r-- | doc/avplay.texi | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/avplay.texi b/doc/avplay.texi index d7fecf0db0..e292481228 100644 --- a/doc/avplay.texi +++ b/doc/avplay.texi @@ -39,7 +39,8 @@ Force displayed width. Force displayed height. @item -s @var{size} This option has been removed. Use private format options for specifying the -input video size. +input video size. For example with the rawvideo demuxer you need to specify the +option @var{video_size}. @item -an Disable audio. @item -vn @@ -70,7 +71,8 @@ also sources and sinks). @table @option @item -pix_fmt @var{format} This option has been removed. Use private options for specifying the -input pixel format. +input pixel format. For example with the rawvideo demuxer you need to specify +the option @var{pixel_format}. @item -stats Show the stream duration, the codec parameters, the current position in the stream and the audio/video synchronisation drift. |