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 [EMAIL PROTECTED]
# 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 ---------------------

Attachment: signature.asc
Description: Digital signature

Reply via email to