ffmpeg file trimming

From thelinuxwiki
Revision as of 19:01, 25 February 2013 by Nighthawk (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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