Skip to content

Instantly share code, notes, and snippets.

@Kishanjvaghela
Created June 14, 2020 12:45
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 Kishanjvaghela/c2f364567e492596fd6779e6be117c33 to your computer and use it in GitHub Desktop.
Save Kishanjvaghela/c2f364567e492596fd6779e6be117c33 to your computer and use it in GitHub Desktop.
FFMPEG DOCS

Convert

mkv -> mp4

ffmpeg -i filename.mkv -vcodec copy -acodec copy 1.mp4

Splitter

ffmpeg -i 'input.mp4' -map 0 -codec copy -f segment -segment_time 10:00 'output%03d.mp4'

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