sample.mp3 長度 30 分鐘
取前10分鐘, 輸出為 first10.mp3
ffmpeg -t 00:10:00 -i sample.mp3 -codec copy first10.mp3
取中間10分鐘, 輸出為 middle10.mp3
ffmpeg -ss 00:10:00 -t 00:10:00 -i sample.mp3 -codec copy middle10.mp3
取最後10分鐘, 輸出為 last10.mp3
ffmpeg -ss 00:20:00 -i sample.mp3 -codec copy last10.mp3
將前後十分鐘合併, 輸出為 merge.mp3
ffmpeg -i "concat:first10.mp3|last10.mp3" -codec copy merge.mp3
Leave a comment