Created
August 2, 2018 14:07
-
-
Save hadl/892a6ea257fa0c37fd517b150b8fb8dd to your computer and use it in GitHub Desktop.
Split mp3 into x seconds parts with ffmpeg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ffmpeg -i file.mp3 -f segment -segment_time 7200 -c copy out%03d.mp3 | |
# -segment_time in seconds |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment