• 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[HOW TO] Split an avi file using ffmpeg
#1
[HOW TO] Split an avi file using ffmpeg

Scenario: I have one .avi file which needs to be split in to two separate .avi files.

Downlod ffmpeg from their website (for Windows) no installation required. Run all of this from the command line.

Code:
ffmpeg -i "E:\in.avi" -acodec copy -vcodec copy -ss 00:00:00 -t 00:30:00 "E:\out.avi"

-ss is the start time and -t is how long in to the video you want to split it.

So the above command would make a new file called out.avi which is 30 minutes long.
  Reply


Forum Jump: