diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-09-17 07:34:54 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-09-17 07:34:54 +0000 |
commit | 99f6278e31d7efa02e84b10fecfcb4f65a78ab7f (patch) | |
tree | 65d912165209b1888d1190e9bad2e4b3a1fd2888 /doc | |
parent | 5ca030fed4d3b315f182d8e6b6b6cf91a6a5dec2 (diff) | |
download | ffmpeg-99f6278e31d7efa02e84b10fecfcb4f65a78ab7f.tar.gz |
wording/spelling
Originally committed as revision 6283 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'doc')
-rw-r--r-- | doc/faq.texi | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/doc/faq.texi b/doc/faq.texi index ba67d634f9..4ed507797a 100644 --- a/doc/faq.texi +++ b/doc/faq.texi @@ -194,17 +194,19 @@ CAVLC ffmpeg -i input -acodec aac -ab 128 -vcodec h264 -b 1200 -ar 48000 -mbd 2 -coder 1 -cmp 2 -subcmp 2 -s 368x192 -r 30000/1001 -title X -f psp -flags loop -trellis 2 -partitions parti4x4+parti8x8+partp4x4+partp8x8+partb8x8 output.mp4 @end table -@section How could I read DirectShow files? +@section How can I read DirectShow files? -If you have built FFmpeg with @code{./configure --enable-avisynth} (only possible in MinGW/Cygwin platforms) -then you may use as input any file that DirectShow reads. -(Be aware that this feature has just been added, so you will need to support yourself for any query) +If you have built FFmpeg with @code{./configure --enable-avisynth} +(only possible on MinGW/Cygwin platforms), +then you may use any file that DirectShow can read as input. +(Be aware that this feature has been recently added, +so you will need to help yourself in case of problems.) Just create an "input.avs" text file with this single line ... @example DirectShowSource("C:\path to your file\yourfile.asf") @end example -... and then feed that text file to ffmpeg: +... and then feed that text file to FFmpeg: @example ffmpeg -i input.avs @end example |