Created
April 2, 2018 05:32
-
-
Save photonxp/fae3d9b94a81051a46944584e61aff9e to your computer and use it in GitHub Desktop.
Usage of cutmp3 on Ubuntu Linux
This file contains hidden or 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
# http://manpages.ubuntu.com/manpages/trusty/man1/cutmp3.1.html | |
cutmp3 -i source_file.mp3 -a 0:37 -b 1:25 | |
cutmp3 -i file.mp3 -a 0:37 -b 1:25 -o file_ -q | |
# cut from the start | |
cutmp3 -i file.mp3 -a 0:00 -b 1:25 -o file_ -q | |
# cut to the end | |
cutmp3 -i file.mp3 -a 0:37 -b 999:00 -o file_ -q |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment