realaudio to mp3/wav conversion utility in FreeBSD ?
Simon Barner
barner at in.tum.de
Fri May 7 14:55:59 PDT 2004
Oops, the script was stripped off by the mailing list software. I'll
post it inline now.
--------------------- cut here ---------------------
#!/bin/sh
# extraido de http://bulmalug.net/impresion.phtml?nIdNoticia=1744
# y modificado por mapelo manu_perez_lopez at hotmail.com
# necesita mplayer y lame
# Convertimos wma a mp3
for f in *.wma
do
mplayer "$f" -ao pcm
mv audiodump.wav "$f.wav"
#lame $f.wav
# modificado por mapelo para hacer variable vibrate y de mayor calidad
lame --vbr-new -V 3 -b 128 "$f.wav"
rm "$f.wav"
done
--------------------- cut here ---------------------
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 187 bytes
Desc: Digital signature
Url : http://lists.freebsd.org/pipermail/freebsd-questions/attachments/20040507/c652aca7/attachment.bin
More information about the freebsd-questions
mailing list