Created
October 4, 2016 15:45
-
-
Save patdavid/b28fbab148b3f4728ae4e898260cbdea to your computer and use it in GitHub Desktop.
recursively find directories and apply mp3gain to all the .mp3 files inside
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
find ./ -type d -exec bash -c 'cd "$1"; mp3gain -a -k -m 3 *.mp3' -- {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment