Skip to content

Instantly share code, notes, and snippets.

@saitodisse
Created June 28, 2017 15:04
Show Gist options
  • Save saitodisse/c54ab097a72075d2e12484e9937b3677 to your computer and use it in GitHub Desktop.
Save saitodisse/c54ab097a72075d2e12484e9937b3677 to your computer and use it in GitHub Desktop.
Windows BAT: Convert mkv videos to mp4 using ffmpeg - deletes after the conversion
for /f "usebackq delims=|" %%f in (`dir /b *.mkv`) do ffmpeg.exe -nostdin -i "%%f" -c:v copy -c:a aac -strict experimental -b:a 128k -ac 2 -scodec copy "%%f.mp4" && ^
del "%%f"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment