Advertisement
Guest User

Batch Encode Fail VP8

a guest
Aug 31st, 2016
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.04 KB | None | 0 0
  1. "%~dp0ffmpeg.exe" -y -i %1 -c:v libvpx -pass 1 -b:v .5M -threads 7 -speed 4 -colorspace "bt709" -auto-alt-ref 1 -lag-in-frames 25 -an -f null NUL
  2. "%~dp0ffmpeg.exe" -y -i %1 -c:v libvpx -pass 2 -b:v .5M -threads 7 -speed 2 -colorspace "bt709" -auto-alt-ref 1 -lag-in-frames 25 -f webm "%~dp1test_0.5_vp8.webm"
  3. "%~dp0ffmpeg.exe" -y -i %1 -c:v libvpx -pass 1 -b:v 1M -threads 7 -speed 4 -colorspace "bt709" -auto-alt-ref 1 -lag-in-frames 25 -an -f null NUL
  4. "%~dp0ffmpeg.exe" -y -i %1 -c:v libvpx -pass 2 -b:v 1M -threads 7 -speed 2 -colorspace "bt709" -auto-alt-ref 1 -lag-in-frames 25 -f webm "%~dp1test_1.0_vp8.webm"
  5. "%~dp0ffmpeg.exe" -y -i %1 -c:v libvpx -pass 1 -b:v 1.5M -threads 7 -speed 4 -colorspace "bt709" -auto-alt-ref 1 -lag-in-frames 25 -an -f null NUL
  6. "%~dp0ffmpeg.exe" -y -i %1 -c:v libvpx -pass 2 -b:v 1.5M -threads 7 -speed 2 -colorspace "bt709" -auto-alt-ref 1 -lag-in-frames 25 -f webm "%~dp1test_1.5_vp8.webm"
  7. "%~dp0ffmpeg.exe" -y -i %1 -c:v libvpx -pass 1 -b:v 2M -threads 7 -speed 4 -colorspace "bt709" -auto-alt-ref 1 -lag-in-frames 25 -an -f null NUL
  8. "%~dp0ffmpeg.exe" -y -i %1 -c:v libvpx -pass 2 -b:v 2M -threads 7 -speed 2 -colorspace "bt709" -auto-alt-ref 1 -lag-in-frames 25 -f webm "%~dp1test_2.0_vp8.webm"
  9. "%~dp0ffmpeg.exe" -y -i %1 -c:v libvpx -pass 1 -b:v 2.5M -threads 7 -speed 4 -colorspace "bt709" -auto-alt-ref 1 -lag-in-frames 25 -an -f null NUL
  10. "%~dp0ffmpeg.exe" -y -i %1 -c:v libvpx -pass 2 -b:v 2.5M -threads 7 -speed 2 -colorspace "bt709" -auto-alt-ref 1 -lag-in-frames 25 -f webm "%~dp1test_2.5_vp8.webm"
  11. "%~dp0ffmpeg.exe" -y -i %1 -c:v libvpx -pass 1 -b:v 3M -threads 7 -speed 4 -colorspace "bt709" -auto-alt-ref 1 -lag-in-frames 25 -an -f null NUL
  12. "%~dp0ffmpeg.exe" -y -i %1 -c:v libvpx -pass 2 -b:v 3M -threads 7 -speed 2 -colorspace "bt709" -auto-alt-ref 1 -lag-in-frames 25 -f webm "%~dp1test_3.0_vp8.webm"
  13. "%~dp0ffmpeg.exe" -y -i %1 -c:v libvpx -pass 1 -b:v 3.5M -threads 7 -speed 4 -colorspace "bt709" -auto-alt-ref 1 -lag-in-frames 25 -an -f null NUL
  14. "%~dp0ffmpeg.exe" -y -i %1 -c:v libvpx -pass 2 -b:v 3.5M -threads 7 -speed 2 -colorspace "bt709" -auto-alt-ref 1 -lag-in-frames 25 -f webm "%~dp1test_3.5_vp8.webm"
  15. "%~dp0ffmpeg.exe" -y -i %1 -c:v libvpx -pass 1 -b:v 4M -threads 7 -speed 4 -colorspace "bt709" -auto-alt-ref 1 -lag-in-frames 25 -an -f null NUL
  16. "%~dp0ffmpeg.exe" -y -i %1 -c:v libvpx -pass 2 -b:v 4M -threads 7 -speed 2 -colorspace "bt709" -auto-alt-ref 1 -lag-in-frames 25 -f webm "%~dp1test_4.0_vp8.webm"
  17. "%~dp0ffmpeg.exe" -y -i %1 -c:v libvpx -pass 1 -b:v 4.5M -threads 7 -speed 4 -colorspace "bt709" -auto-alt-ref 1 -lag-in-frames 25 -an -f null NUL
  18. "%~dp0ffmpeg.exe" -y -i %1 -c:v libvpx -pass 2 -b:v 4.5M -threads 7 -speed 2 -colorspace "bt709" -auto-alt-ref 1 -lag-in-frames 25 -f webm "%~dp1test_4.5_vp8.webm"
  19. "%~dp0ffmpeg.exe" -y -i %1 -c:v libvpx -pass 1 -b:v 5M -threads 7 -speed 4 -colorspace "bt709" -auto-alt-ref 1 -lag-in-frames 25 -an -f null NUL
  20. "%~dp0ffmpeg.exe" -y -i %1 -c:v libvpx -pass 2 -b:v 5M -threads 7 -speed 2 -colorspace "bt709" -auto-alt-ref 1 -lag-in-frames 25 -f webm "%~dp1test_5.0_vp8.webm"
  21.  
  22. pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement