You can use the -ss option to specify a start timestamp, and the -t option to specify the encoding duration. The timestamps need to be in HH:MM:SS.xxx format or in seconds.
The following would create a 10 second clip starting at 30 seconds. ffmpeg -i input.mp3 -ss 00:00:30.0 -c copy -t 00:00:10.0 output.mp3 you might try ffmpeg -i input.mp3 -ss 00:00:00.0 -c copy -t 00:02:35.0 output.mp3 http://superuser.com/questions/138331/using-ffmpeg-to-cut-up-video _______________________________________________ ffmpeg-user mailing list [email protected] http://ffmpeg.org/mailman/listinfo/ffmpeg-user
