Created
June 6, 2020 14:40
-
-
Save dinnouti/043cdb1ed1b192a60f0cbb9f5dbff2b3 to your computer and use it in GitHub Desktop.
Concatenating mp3 and sampling with lame
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
find . -iname '*.mp3' -print0 | sort -zn | xargs -0 -I '{}' lame --decode '{}' | lame --tt "Title" --ta "Artist" --tl "Title" -b 32 - concat2.mp3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment