Advertisement
Guest User

PUPStandard_NoResize

a guest
May 20th, 2020
430
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.31 KB | None | 0 0
  1. setlocal EnableDelayedExpansion
  2. set outdir=C:\pup_resize
  3. if not exist %outdir% md %outdir%
  4. for /R %%f in (*.mp4) do (
  5. if not exist "%outdir%%%~pf" md "%outdir%%%~pf"
  6. ffmpeg -i "%%~df%%~pf%%~nf%%~xf"  -c:v libx264 -preset fast -crf 24 -profile:v baseline -pix_fmt yuv420p -b:a 128k "%outdir%%%~pf%%~nf%%~xf"
  7. )
  8. pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement