Skip to content

Instantly share code, notes, and snippets.

@vparihar01
Created April 19, 2017 19:31
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 vparihar01/dbeeb027537559051f92a2f27312701c to your computer and use it in GitHub Desktop.
Save vparihar01/dbeeb027537559051f92a2f27312701c to your computer and use it in GitHub Desktop.
simply convert video files (i.e.: MKV to MP4)?
ffmpeg -i LostInTranslation.mkv -vcodec copy -acodec copy LostInTranslation.mp4
@vparihar01
Copy link
Author

ffmpeg -i input.mkv -c copy -map 0 output.mp4
copy all streams.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment