-
-
Save echohack/41b548c265e1bd002316 to your computer and use it in GitHub Desktop.
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
# Convert all flac files in all subdirs to mp3 with ffmpeg | |
find . -type f -name "*.flac" -print0 | while read -d $'\0' a; do | |
< /dev/null ffmpeg -i "$a" -qscale:a 0 "${a[@]/%flac/mp3}" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment