Connvert audio ogg files to mp3
Posted on January 7th, 2009 by linux
The simplest way how to convert a ogg to mp3 files is to us oggdec command:
for file in *.ogg;do oggdec -o - "$file"|lame -h -V 4 --vbr-new - "$(basename "$file" .ogg).mp3";done
Filed under: Fun and Linux