Skip to content

Instantly share code, notes, and snippets.

@janpaul
Last active June 20, 2020 12:21
Show Gist options
  • Save janpaul/b310e77bcedf14d400f4102086b4f30d to your computer and use it in GitHub Desktop.
Save janpaul/b310e77bcedf14d400f4102086b4f30d to your computer and use it in GitHub Desktop.
convert `mkv` to `mp4`
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