View Single Post
  #6   (View Single Post)  
Old 12th November 2011
Oko's Avatar
Oko Oko is offline
Rc.conf Instructor
 
Join Date: May 2008
Location: Kosovo, Serbia
Posts: 1,102
Default

Quote:
Originally Posted by Daffy View Post

So I decided to write a program in C that takes all of my .wav files in my dir and make them mp3 with tags.
Code:
#!/bin/sh
for i in *.wav
    do
    lame $i `basename $i .wav`.mp3;
    done
For the record I love C and work daily with it but I would never use it for what you wanted to use
Reply With Quote