oggdec -o - file.ogg | lame - file.mp3Try using raw mode:
oggdec -R -o - file.ogg | lame -r - file.mp3Or, if the generated mp3 file is pure noise, swap the bytes with -x:
oggdec -R -o - file.ogg | lame -rx - file.mp3To convert a batch of multiple ogg files:
for x in *.ogg; do oggdec -R -o - "$x" | lame -rxh - "$x.mp3"; done
No hay comentarios.:
Publicar un comentario