---
doc/avconv.texi | 2 +-
doc/encoders.texi | 2 +-
doc/faq.texi | 12 +++++-------
doc/filters.texi | 10 +++++-----
doc/libavfilter.texi | 2 +-
5 files changed, 13 insertions(+), 15 deletions(-)
diff --git a/doc/avconv.texi b/doc/avconv.texi
index 0a83326..8188215 100644
--- a/doc/avconv.texi
+++ b/doc/avconv.texi
@@ -1004,7 +1004,7 @@ output them in files named @file{foo-001.jpeg},
@file{foo-002.jpeg},
etc. Images will be rescaled to fit the new WxH values.
If you want to extract just a limited number of frames, you can use the
-above command in combination with the -vframes or -t option, or in
+above command in combination with the -frames:v or -t option, or in
combination with -ss to start extracting from a certain point in time.
For creating a video from many images:
diff --git a/doc/encoders.texi b/doc/encoders.texi
index 830981f..6920c9d 100644
--- a/doc/encoders.texi
+++ b/doc/encoders.texi
@@ -38,7 +38,7 @@ always faster, just that one or the other may be better
suited to a
particular system. The floating-point encoder will generally produce better
quality audio for a given bitrate. The @var{ac3_fixed} encoder is not the
default codec for any of the output formats, so it must be specified explicitly
-using the option @code{-acodec ac3_fixed} in order to use it.
+using the option @code{-c:a ac3_fixed} in order to use it.
@subsection AC-3 Metadata
diff --git a/doc/faq.texi b/doc/faq.texi
index 7c5373c..0d8164d 100644
--- a/doc/faq.texi
+++ b/doc/faq.texi
@@ -167,7 +167,7 @@ Both Xvid and DivX (version 4+) are implementations of the
ISO MPEG-4
standard (note that there are many other coding formats that use this
same standard). Thus, use '-c:v mpeg4' to encode in these formats. The
default fourcc stored in an MPEG-4-coded file will be 'FMP4'. If you want
-a different fourcc, use the '-vtag' option. E.g., '-vtag xvid' will
+a different fourcc, use the '-tag:v' option. E.g., '-tag:v xvid' will
force the fourcc 'xvid' to be stored as the video fourcc rather than the
default.
@@ -235,7 +235,7 @@ mkfifo intermediate2.mpg
avconv -i input1.avi -same_quant -y intermediate1.mpg < /dev/null &
avconv -i input2.avi -same_quant -y intermediate2.mpg < /dev/null &
cat intermediate1.mpg intermediate2.mpg |\
-avconv -f mpeg -i - -same_quant -c:v mpeg4 -acodec libmp3lame output.avi
+avconv -f mpeg -i - -same_quant -c:v mpeg4 -c:a libmp3lame output.avi
@end example
Similarly, the yuv4mpegpipe format, and the raw video, raw audio codecs also
@@ -254,15 +254,13 @@ mkfifo temp2.a
mkfifo temp2.v
mkfifo all.a
mkfifo all.v
-avconv -i input1.flv -vn -f u16le -acodec pcm_s16le -ac 2 -ar 44100 - >
temp1.a < /dev/null &
-avconv -i input2.flv -vn -f u16le -acodec pcm_s16le -ac 2 -ar 44100 - >
temp2.a < /dev/null &
+avconv -i input1.flv -vn -f u16le -c:a pcm_s16le -ac 2 -ar 44100 - > temp1.a <
/dev/null &
+avconv -i input2.flv -vn -f u16le -c:a pcm_s16le -ac 2 -ar 44100 - > temp2.a <
/dev/null &
avconv -i input1.flv -an -f yuv4mpegpipe - > temp1.v < /dev/null &
@{ avconv -i input2.flv -an -f yuv4mpegpipe - < /dev/null | tail -n +2 >
temp2.v ; @} &
cat temp1.a temp2.a > all.a &
cat temp1.v temp2.v > all.v &
-avconv -f u16le -acodec pcm_s16le -ac 2 -ar 44100 -i all.a \
- -f yuv4mpegpipe -i all.v \
- -same_quant -y output.flv
+avconv -f u16le -c:a pcm_s16le -ac 2 -ar 44100 -i all.a -f yuv4mpegpipe -i
all.v -same_quant -y output.flv
rm temp[12].[av] all.[av]
@end example
diff --git a/doc/filters.texi b/doc/filters.texi
index 4e7ede2..a3de463 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -688,7 +688,7 @@ which is bottom field first.
For example:
@example
-./avconv -i in.vob -vf "fieldorder=bff" out.dv
+./avconv -i in.vob -filter:v "fieldorder=bff" out.dv
@end example
@section fifo
@@ -808,7 +808,7 @@ Flip the input video horizontally.
For example to horizontally flip the input video with @command{avconv}:
@example
-avconv -i in.avi -vf "hflip" out.avi
+avconv -i in.avi -filter:v "hflip" out.avi
@end example
@section hqdn3d
@@ -1649,7 +1649,7 @@ Pass the images of input video on to next video filter as
multiple
slices.
@example
-./avconv -i in.avi -vf "slicify=32" out.avi
+./avconv -i in.avi -filter:v "slicify=32" out.avi
@end example
The filter accepts the slice height as parameter. If the parameter is
@@ -1746,7 +1746,7 @@ unsharp=7:7:2.5
unsharp=7:7:-2:7:7:-2
# Use the default values with @command{avconv}
-./avconv -i in.avi -vf "unsharp" out.mp4
+./avconv -i in.avi -filter:v "unsharp" out.mp4
@end example
@section vflip
@@ -1754,7 +1754,7 @@ unsharp=7:7:-2:7:7:-2
Flip the input video vertically.
@example
-./avconv -i in.avi -vf "vflip" out.avi
+./avconv -i in.avi -filter:v "vflip" out.avi
@end example
@section yadif
diff --git a/doc/libavfilter.texi b/doc/libavfilter.texi
index b452294..9a1403a 100644
--- a/doc/libavfilter.texi
+++ b/doc/libavfilter.texi
@@ -36,7 +36,7 @@ and the vflip filter before merging it back with the other
stream by
overlaying it on top. You can use the following command to achieve this:
@example
-./avconv -i input -vf "[in] split [T1], fifo, [T2] overlay=0:H/2 [out]; [T1]
fifo, crop=iw:ih/2:0:ih/2, vflip [T2]" output
+./avconv -i input -filter:v "[in] split [T1], fifo, [T2] overlay=0:H/2 [out];
[T1] fifo, crop=iw:ih/2:0:ih/2, vflip [T2]" output
@end example
The result will be that in output the top half of the video is mirrored
--
1.7.1
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel