Last active
April 30, 2019 21:56
-
-
Save mertenvg/f219c5cd78ee80a9d486 to your computer and use it in GitHub Desktop.
Convert *.mkv to *.mp4 with 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
ls *.mkv | sed -E -e 's/^(.+)[.][^.]+$/ffmpeg -i "&" -vcodec copy -acodec aac "\1.mp4"/g' | sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment