Skip to content

Instantly share code, notes, and snippets.

@dinnouti
Created June 6, 2020 14:40
Show Gist options
  • Save dinnouti/043cdb1ed1b192a60f0cbb9f5dbff2b3 to your computer and use it in GitHub Desktop.
Save dinnouti/043cdb1ed1b192a60f0cbb9f5dbff2b3 to your computer and use it in GitHub Desktop.
Concatenating mp3 and sampling with lame
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