Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. for %%A in (*.mp4) do (
  2. "C:\Program Files (x86)\PortableApps\ffmpeg\bin\ffmpeg.exe" -i "%%A" -c:v vp9 -vf scale=930:-1 -sws_flags lanczos -cpu-used 4 -crf 30 -b:v 0 -g 9999 -lag-in-frames 25 -c:a libopus -b:a 96K -passlogfile "%%~NA" -y -an -pass 1 -threads 4 "%%~NA".webm
  3. "C:\Program Files (x86)\PortableApps\ffmpeg\bin\ffmpeg.exe" -i "%%A" -c:v vp9 -vf scale=930:-1 -sws_flags lanczos -cpu-used 4 -crf 30 -b:v 0 -g 9999 -lag-in-frames 25 -c:a libopus -b:a 96K -passlogfile "%%~NA" -y -pass 2 -threads 4 "%%~NA".webm
  4. )
  5. pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement