Ffmpeg: Unterschied zwischen den Versionen

Aus SchnallIchNet
Wechseln zu: Navigation, Suche
 
Zeile 42: Zeile 42:
 
               1280x1024
 
               1280x1024
 
</pre>
 
</pre>
 
 
==flv2mpeg==
 
 
* Convert FLV to MPG file: <pre>ffmpeg -i video.flv video.mpg</pre>
 
* Convert MPG to FLV file: <pre>ffmpeg -i video.mpg video.flv</pre>
 
this works for avi, too!
 
 
 
==flv2avi==
 
 
* Convert FLV to AVI file: <pre>ffmpeg -i video.flv video.avi</pre>
 
* Convert AVI to FLV file: <pre>ffmpeg -i video.avi video.flv</pre>
 
  
  

Aktuelle Version vom 21. Dezember 2011, 06:34 Uhr


Inhaltsverzeichnis

Common options

  1. List all supported formats:
    -formats
  2. Use specific format:
    -f [FORMAT-Name]
  3. Set output size:
    -s [SIZE]

Some possible values for SIZE
See Manpage for full list:

           sqcif
               128x96

           qcif
               176x144

           cif 352x288

           4cif
               704x576

           qqvga
               160x120

           qvga
               320x240

           vga 640x480

           svga
               800x600

           xga 1024x768

           uxga
               1600x1200

           qxga
               2048x1536

           sxga
               1280x1024


Siehe auch

Convert