Skip to content

Instantly share code, notes, and snippets.

@johnjohndoe
Last active January 15, 2021 10:40
Show Gist options
  • Save johnjohndoe/cc83952b9106602908c42a94c87bab89 to your computer and use it in GitHub Desktop.
Save johnjohndoe/cc83952b9106602908c42a94c87bab89 to your computer and use it in GitHub Desktop.
Cut a slice from a video with FFmpeg

Cut a slice from a video

  • Keep all video and audio tracks
  • Add title, comment
ffmpeg -strict -2 -i input.mp4 -ss 00:33:22 -t 00:06:26 -metadata title="My Title" -metadata comment="A few words about this video." -c copy -map 0:v -map 0:a output.mp4
  • from ss position to -to position
ffmpeg -i input.mp4 -ss 00:00:13 -to 00:00:20 output.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment