[LAU] converting mp4
    Julien Claassen 
    julien at c-lab.de
       
    Sun Apr  6 15:55:59 EDT 2008
    
    
  
Hi!
   Take mplayer and lame. I use it. Very commandline, easily scriptable.
   mplayer -ao pcm:file=output.wav input.mp3
lame [all your options] output.wav output.mp3
   Wit a bit of sed and awk you can have a nice script that even corrects 
filenames. Because I usually put it in a for-loop like:
for F in *.mp4; do
   mplayer -ao pcm:file="$F".wav "$F"
   lame [options] "$F".wav "$F".mp3;
done
   Hope that helps.
   Kindest regards
          Julien
--------
Music was my first love and it will be my last (John Miles)
======== FIND MY WEB-PROJECT AT: ========
http://ltsb.sourceforge.net
the Linux TextBased Studio guide
======= AND MY PERSONAL PAGES AT: =======
http://www.juliencoder.de
    
    
More information about the Linux-audio-user
mailing list