Quickly convert flac audio to mp3 audio with Linux

First off, you need to have these 3 packages installed: – FFMPEG (optional) – FLAC – LAME FFMPEG is by far, the simpelest method. If you use it, it will automaticly convert the tags as well. Be sure that your installed version supports flac/mp3. With FFMPEG SCRIPT: #!/bin/bash for f in *.flac; do ffmpeg -i …

Quickly convert flac audio to mp3 audio with Linux Read More »