I've got a bunch of spoken word mp3 files, which all have the same intro talking and music, and then the real content begins. So it goes roughly like this:
00:00 Standard intro spoken word
00:20 Standard intro music
00:35 The content
The timings are not always the same (can vary by 5 secs). So I'd to cut the first 25 seconds and then fade in the next five seconds. And then output the file in the same mp3 format. Is this possible with ffmpeg?
ffplay
thestart_time
must be same as-ss
. E.G.ffplay "03 Lorelei.m4a" -ss 25 -af "afade=type=in:start_time=25:duration=5"
– Untwine