Created
November 10, 2024 11:08
-
-
Save ephrin/1e7932c2929161370d282982d14a750d to your computer and use it in GitHub Desktop.
Convert every mkv in the directory found to mp4 via ffmpeg. Linux. Video. mkv to mp4.
This file contains 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" -c:v copy -c:a copy "${i%.mkv}.mp4"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment