Skip to main content
Cut a segment of a video between two timestamps.

Code

How the FFmpeg command works

  • -i {{in_1}} — input video URL
  • -ss 00:00:10 — start at 10 seconds
  • -to 00:00:30 — end at 30 seconds (absolute timestamp, not duration)
  • {{out_1}} — output file

Response