Skip to content

Instantly share code, notes, and snippets.

@deviousway
Last active November 8, 2017 11:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deviousway/8d13af8f56b17a68d1f91f467a64e89b to your computer and use it in GitHub Desktop.
Save deviousway/8d13af8f56b17a68d1f91f467a64e89b to your computer and use it in GitHub Desktop.
ffmpeg mkv to mp4
for i in *mkv; do ffmpeg -i $i -vcodec copy -acodec copy $i.mp4; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment