Skip to content

Instantly share code, notes, and snippets.

@rkcb
Last active December 18, 2018 12:07
Show Gist options
  • Select an option

  • Save rkcb/019380dcfc51b82eb8eff85e1314c974 to your computer and use it in GitHub Desktop.

Select an option

Save rkcb/019380dcfc51b82eb8eff85e1314c974 to your computer and use it in GitHub Desktop.
FFMpeg command line

Ffmpeg

  • split a video to two files (the first part contains 5min and the second the rest) of the same type:

ffmpeg -i bigvideo.mp4 -t 00:05:00 -c copy bigvideo_part1.mp4 -ss 00:05:00 -c copy bigvideo_part2.mp4

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