diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-08-18 15:39:24 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2011-09-16 21:22:05 +0200 |
commit | 4893c204c8e94d9e97acb8b48f63ba8d5dd50135 (patch) | |
tree | 8a5fe55e0eac3ce564f6a4a39c5539dc7a3c1e77 /doc/indevs.texi | |
parent | 3ee0bedcc00650b0827833e3fa90e76d10cf6e01 (diff) | |
download | ffmpeg-4893c204c8e94d9e97acb8b48f63ba8d5dd50135.tar.gz |
lavdev/lavfi: add audio support
Diffstat (limited to 'doc/indevs.texi')
-rw-r--r-- | doc/indevs.texi | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/indevs.texi b/doc/indevs.texi index a3711857bf..79f786f8e0 100644 --- a/doc/indevs.texi +++ b/doc/indevs.texi @@ -266,6 +266,21 @@ Create three different video test filtered sources and play them: @example ffplay -f lavfi -graph "testsrc [out0]; testsrc,hflip [out1]; testsrc,negate [out2]" test3 @end example + +@item +Read an audio stream from a file using the amovie source and play it +back with @file{ffplay}: +@example +ffplay -f lavfi "amovie=test.wav" +@end example + +@item +Read an audio stream and a video stream and play it back with +@file{ffplay}: +@example +ffplay -f lavfi "movie=test.avi[out0];amovie=test.wav[out1]" +@end example + @end itemize @section libdc1394 |