Last active
June 20, 2020 12:21
-
-
Save janpaul/b310e77bcedf14d400f4102086b4f30d 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
find . -name '*.mkv' -print -exec ffmpeg -i "{}" -codec copy "{}.mp4" \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment