diff options
author | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2013-03-30 15:16:49 -0400 |
---|---|---|
committer | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2013-03-31 18:22:09 -0400 |
commit | a034cdf49d1a434ab751c2cc9672973bc0238540 (patch) | |
tree | 823671f1af9d62a78046178d4bdcbde8a4d5c623 | |
parent | 9db706206d1e4a5b776f50acee591d0e066a21ef (diff) | |
download | ffmpeg-a034cdf49d1a434ab751c2cc9672973bc0238540.tar.gz |
doc: Grammar fixes for stream selection
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
-rw-r--r-- | doc/ffmpeg.texi | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/ffmpeg.texi b/doc/ffmpeg.texi index 0b08eda528..1eeca9a82a 100644 --- a/doc/ffmpeg.texi +++ b/doc/ffmpeg.texi @@ -198,14 +198,14 @@ filters is obviously also impossible, since filters work on uncompressed data. @chapter Stream selection @c man begin STREAM SELECTION -By default ffmpeg includes only one stream of each type (video, audio, subtitle) +By default, @command{ffmpeg} includes only one stream of each type (video, audio, subtitle) present in the input files and adds them to each output file. It picks the -"best" of each based upon the following criteria; for video it is the stream -with the highest resolution, for audio the stream with the most channels, for -subtitle it's the first subtitle stream. In the case where several streams of -the same type rate equally, the lowest numbered stream is chosen. +"best" of each based upon the following criteria: for video, it is the stream +with the highest resolution, for audio, it is the stream with the most channels, for +subtitles, it is the first subtitle stream. In the case where several streams of +the same type rate equally, the stream with the lowest index is chosen. -You can disable some of those defaults by using @code{-vn/-an/-sn} options. For +You can disable some of those defaults by using the @code{-vn/-an/-sn} options. For full manual control, use the @code{-map} option, which disables the defaults just described. |