Advertisement
Emulatorman

ffmpeg examples

May 26th, 2012
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. #webm, flac and speex
  2. ffmpeg -i <infile>.??? -quality best|good|realtime|0-10 -crf 0-10 -b:v ???k -b:a ???k <outfile>.webm
  3. ffmpeg -i <infile>.??? -quality best|good|realtime|0-10 -crf 0-10 -b:v ???k -an <outfile>.webm
  4. ffmpeg -i <infile>.??? -vn -b:a ???k <outfile>.webm
  5. ffmpeg -i <infile>.??? -b:a ???k <outfile>.flac
  6. ffmpeg -i <infile>.??? -cbr_quality 0-10 -b:a ???k <outfile>.spx
  7. #ogv
  8. ffmpeg -i <infile>.??? -vcodec libtheora -b:v ???k -acodec libvorbis -b:a ???k <outfile>.ogv
  9. ffmpeg -i <infile>.??? -vcodec libtheora -b:v ???k -acodec flac -b:a ???k <outfile>.ogv
  10. ffmpeg -i <infile>.??? -vcodec libtheora -b:v ???k -cbr_quality 0-10 -acodec libspeex -b:a ???k <outfile>.ogv
  11. ffmpeg -i <infile>.??? -vcodec libtheora -b:v ???k -an <outfile>.ogv
  12. ffmpeg -i <infile>.??? -vcodec libschroedinger -b:v ???k -acodec libvorbis -b:a ???k <outfile>.ogv
  13. ffmpeg -i <infile>.??? -vcodec libschroedinger -b:v ???k -acodec flac -b:a ???k <outfile>.ogv
  14. ffmpeg -i <infile>.??? -vcodec libschroedinger -b:v ???k -cbr_quality 0-10 -acodec libspeex -b:a ???k <outfile>.ogv
  15. ffmpeg -i <infile>.??? -vcodec libschroedinger -b:v ???k -an <outfile>.ogv
  16. #oga
  17. ffmpeg -i <infile>.??? -vn -acodec libvorbis -b:a ???k <outfile>.oga
  18. ffmpeg -i <infile>.??? -vn -acodec flac -b:a ???k <outfile>.oga
  19. ffmpeg -i <infile>.??? -vn -cbr_quality 0-10 -acodec libspeex -b:a ???k <outfile>.oga
  20. #theora+vorbis
  21. ffmpeg2theora -v 10 -V ??? --optimize --soft-target -a 10 -A ??? <infile>
  22. ffmpeg2theora -v 10 -V ??? --optimize --soft-target --noaudio <infile>
  23. ffmpeg2theora --novideo -a 10 -A ??? <infile>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement