Advertisement
Guest User

Untitled

a guest
Jul 10th, 2012
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. SETLOCAL ENABLEDELAYEDEXPANSION
  2. SETLOCAL ENABLEEXTENSIONS
  3. for /F "delims=;" %%A IN ('dir /b *.mkv') DO (
  4. ffmpeg -i "%%A" -vcodec copy -acodec copy -y "%%~nA.mp4"
  5. MP4Box -inter 0.5 "%%~nA.mp4"
  6. )
  7. pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement