How to reduce the size of mp3 files

Do the install of lame program

sudo apt-get install lame -y

Try it now

lame --mp3input -b 32 input.mp3 output.mp3

The size of ~5M will be decreased to ~900K

Its pretty good if you don't need a good qulity of your media

For bulk mp3 converts login your media folder and run:

for i in `ls |grep -i mp3`; do lame --mp3input -b 32 "$i" ./output/$i;
Read the rest