Technology Software

How to Cut Up a Movie With FFmpeg

    • 1). Open your Linux Terminal and navigate to your video directory. This process will differ depending on your Linux distribution, so consult the documentation if you are unsure.

    • 2). Type the following command with the example input file "input.avi," the example output file "output1.avi," the example start time of one hour, five minutes and 10 seconds "01:05:10" and the duration of five minutes "00:05:00:"

      ffmpeg -sameq -ss 01:05:10 -t 00:05:00 -i input.avi output1.avi

    • 3). Press "Enter." Repeat for any other edited segments.



Leave a reply