Last active
January 16, 2018 13:23
-
-
Save naqushab/edb9d915f75d32cdc9e7a693a24e643e to your computer and use it in GitHub Desktop.
convert all mkv to mp4 using ffmpeg
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
dir/b/s *.mkv >mkvlist.txt | |
for /F "delims=;" %%F in (mkvlist.txt) do ffmpeg.exe -i "%%F" -vcodec copy -acodec copy "%%~dF%%~pF%%~nF.mp4" | |
del mkvlist.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment