Advertisement
Guest User

Two-pass ffmpeg transcode to WebM(VP8/Vorbis)

a guest
Apr 15th, 2014
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. ffmpeg -i /mnt/scratch/test_source/Sintel.2010.720p.mkv \
  2. -map 0:0 -map 0:1 -sn \
  3. -c:0 libvpx -crf 8 -b:v 60M \
  4. -threads 3 -quality good -speed 0 \
  5. -pass 1 \
  6. -c:1 libvorbis -aq 4 -b:a 384k \
  7. /mnt/scratch/test_out/Sintel.2010.720p.webm
  8.  
  9. ffmpeg -i /mnt/scratch/test_source/Sintel.2010.720p.mkv \
  10. -map 0:0 -map 0:1 -sn \
  11. -c:0 libvpx -crf 8 -b:v 60M \
  12. -threads 3 -quality good -speed 0 \
  13. -pass 2 \
  14. -c:1 libvorbis -aq 4 -b:a 384k \
  15. /mnt/scratch/test_out/Sintel.2010.720p.webm
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement