Dec 18
Save
Share
ffmpeg command to clip "itachi's theme.mp3" down to 1:19
Alright, here’s the deal. If you wanna trim “itachi’s theme.mp3” to 1 minute and 19 seconds, you can use this ffmpeg command:
ffmpeg -i "itachi's theme.mp3" -ss 0 -t 79 -c copy "trimmed_itachi_theme.mp3"
This command starts at the beginning of the file (-ss 0
), grabs 79 seconds of it (-t 79
), and keeps the same codec to avoid any quality loss (-c copy
). Super simple, right? Just make sure you’ve got ffmpeg installed and you’re good to go! Now go make some dope audio clips!