Hello,
Cela pourrai servir à d'autre
Voici un script simple, pour convertir des fichers FLAC en MP3 320kpbs
Cela pourrai servir à d'autre

Voici un script simple, pour convertir des fichers FLAC en MP3 320kpbs
Bash:
while read FILE ; do
[[ -e ${FILE%%.*}.mp3 ]] || ffmpeg -i "$FILE" -ab 320k -map_metadata 0 "${FILE%.*}.mp3"
[[ $? -eq 0 ]] && rm $FILE
done < <(find . -name "*.flac")