ubuntu:sound:convert_flac_to_mp3
This is an old revision of the document!
Table of Contents
Ubuntu - Sound - Convert FLAC to MP3
for f in *.flac; do flac -cd "$f" | lame -b 320 - "${f%.*}".mp3; done
or
for a in ./*.flac; do ffmpeg -i "$a" -qscale:a 0 "${a[@]/%flac/mp3}"; done
Convert files in all sub-directories
find . -type f -name "*.flac" -print0 | while IFS= read -r -d '' file; do echo "$file"; flac -cd "$file" | lame -b 320 - "${file%.*}".mp3; done
Convert files in all sub-directories to a different bitrate
find . -type f -name "*.mp3" -print0 | while IFS= read -r -d '' file; do echo "$file"; lame -b 192 "$file" "${file%.*}".192.mp3; done
NOTE: The bitrate is set to 192 kbps.
Convert files in all sub-directories to a different bitrate, but only if they have bitrates above a specific value
find . -type f -name "*.mp3" -print0 | while IFS= read -r -d '' file; do echo "$file"; [[ $(file "$file" | sed 's/.*, \(.*\)kbps.*/\1/' | tr -d " ") -gt 192 ]] && lame -b 192 "$file" "${file%.*}".192.mp3 && mv "${file%.*}".192.mp3 "$file"; done
NOTE: The bitrate is set to 192 kbps for any file that has a bitrate above 192 kbps.
ubuntu/sound/convert_flac_to_mp3.1654883826.txt.gz · Last modified: 2022/06/10 17:57 by peter