This is going to be a fairly short and simple post, wherein we’re going to simply drop into Bash and reencode some files. Let’s do it: find . -type f -iname “*.mp3″ | while read file do mv “$file” “${file}.old” && \ lame –mp3input -q 0 -b 320 –resample 44.1 “${file}.old” “$file” && \ id3cp [...]
