Does anyone know of any linux software to reduce the size of mp3 files while having a minimal effect on quality?
I just used pngcrush to do this to all the pngs in our asset library with good results, and would love to be able to do the same to our mp3s. Even if there is a 10% reduction in file size that would be a decent win for me.
Any suggestions? It needs to be something i can call from a shell script.
cheers, max
--resample 22.05
which is often fine for voice. eg:mkdir out ; for f in *.mp3 ; do lame --mp3input -b 64 --resample 22.50 "$f" "out/$f" ; done
– Deciare