Created
June 28, 2017 15:04
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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