Created
July 14, 2023 02:50
-
-
Save dubcl/a6f6ab23f36f0e533d2f4f7f6c32e4d1 to your computer and use it in GitHub Desktop.
mkv to mp4
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 i in $(ls *.mkv);do ffmpeg -i "$i" -c copy -c:a aac "${i%.mkv}.mp4" ;done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment