Convert .flac files to .mp3


/ Published in: Bash
Save to your folder(s)

must install flac and lame
apt-get install flac
apt-get install lame


Copy this code and paste it in your HTML
  1. for f in *.flac;do flac -cd $f |lame -b 128 - $f.mp3;done

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.