converting webm to mp3s ffmpeg

for FILE in *.webm; do
    echo -e "Processing file '\e[32m$FILE\e[0m'";
    ffmpeg -i "${FILE}" -vn -ab 128k -ar 44100 -y "${FILE%.webm}.mp3";
done;

nJoy 😉

Leave a Reply

Your email address will not be published. Required fields are marked *