Created
June 12, 2022 22:43
-
-
Save jeffehobbs/151cc5ae581a0fe470db58ec9fddaa23 to your computer and use it in GitHub Desktop.
convert mkvs to mp4s via container swap
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 *.mkv; do | |
| ffmpeg -i "$i" -codec copy "${i%.*}.mp4" | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment