Difference between revisions of "ffmpeg file trimming"
From thelinuxwiki
(Pushed from thelinuxwiki.com.) |
m (moved Ffmpeg cheat sheet to ffmpeg file trimming) |
Revision as of 15:26, 27 June 2013
trim an mp3 file
Example time time before 10 seconds and after 10+40=50 seconds, keeping the time in between:
ffmpeg -i input_file.mp3 -acodec copy -ss 00:00:10 -t 00:00:40 output_filename.mp3