0

I'm looking for a command to cut out exact frames from a video.

I know that I can do this by slicing the video in two and then concat, but I'm looking for a sigle command to achive the same result, something like:

ffmpeg -i video.mov -cutframe 1239 video_cut.mov

or something like

ffmpeg -ss 2348 -i video.mov -tt 2349 video_cut.mov
Virgosh
  • 1
  • 1

1 Answers1

0

Easiest way is

ffmpeg -i video.mov -vf select='not(eq(n\,1239))' -c:a copy video_cut.mov
Gyan
  • 85,394
  • 9
  • 169
  • 201