Created
August 28, 2018 01:06
-
-
Save richardsonlima/43dc68a25ba870f2843d105685f239d1 to your computer and use it in GitHub Desktop.
Convert 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 f in *.mkv;do ffmpeg -i "$f" -c:v copy -c:a aac -b:a 256k "${f%mkv}mp4";done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment