This worked great, but make sure you have “lame” and “flac”
sudo apt-get install flac
sudo apt-get install lame
Then in the folder with all the .flac files:
for f in *.flac; do flac -cd "$f" | lame -b 320 - "${f%.*}".mp3; done
This worked great, but make sure you have “lame” and “flac”
sudo apt-get install flac
sudo apt-get install lame
Then in the folder with all the .flac files:
for f in *.flac; do flac -cd "$f" | lame -b 320 - "${f%.*}".mp3; done