Skip to content

Instantly share code, notes, and snippets.

@tonylambiris
Created June 15, 2018 20:43
Show Gist options
  • Select an option

  • Save tonylambiris/b6a6ffbeb0d0eba2d1ee382f5665870d to your computer and use it in GitHub Desktop.

Select an option

Save tonylambiris/b6a6ffbeb0d0eba2d1ee382f5665870d to your computer and use it in GitHub Desktop.
Covert mkv to mp4 using ffmpeg
#!/bin/bash
# copy video stream instead of re-encoding
ffmpeg -i input.mkv -acodec mp3 -strict -2 -vcodec copy output.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment