On Tue, 2005-07-12 at 16:27 +1200, Nick Rout wrote: > ffmpeg should also handle it, use the copy output codecs that don't > change anything, but use the cutpoints, something like (say it is 3 > hours long and you want three one hour segments) > > ffmpeg -v copy -a copy -t 1:00:00 -i inputfile.avi -o > outputfile.1.avi > ffmpeg -v copy -a copy -ss 1:00:00:00 -t 1:00:00 -i inputfile.avi -o\ > outputfile.2.avi >
well i just did this myself and noticed I had put everyone wrong on this. just for the record the incantation should have been (second example) ffmpeg -vocdec copy -acodec copy -ss 1:00:00 -t 1:00:00 -i inputfile.avi outputfile.2.avi IE -v should be -vcodec, -a ditto, -o not needed. sorry if any small furry animals suffered as a result. > and so on > > translation: > the second line means "take the input (-o) file and encode it from one > hour in (-ss) for an hour length (-t), using the copy output codecs > for > video (-v) and audio (-a), putting the result in the output file (-o) -- Nick Rout <[EMAIL PROTECTED]>
