Skip to content

Instantly share code, notes, and snippets.

@naqushab
Last active January 16, 2018 13:23
Show Gist options
  • Save naqushab/edb9d915f75d32cdc9e7a693a24e643e to your computer and use it in GitHub Desktop.
Save naqushab/edb9d915f75d32cdc9e7a693a24e643e to your computer and use it in GitHub Desktop.
convert all mkv to mp4 using ffmpeg
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