Created
July 27, 2019 10:07
-
-
Save danwald/f8390fe5a691b28290f9d3ecef6203bb to your computer and use it in GitHub Desktop.
flac to mp3
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
#!/bin/bash | |
for a in *.flac; do | |
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