WibbleWobbleWah : encoderdriver

home :: about :: gallery :: linux :: links :: other :: recent changes :: contact
#!/bin/bash
# assuming just .wav files in dir
# make list of filemnames and encode
# mp3's remove the wav's when finished
#
# Ian M. Hayhurst 2nd March 2004
#

ls -1 |cut -d . -f1 >>list-file
while read file
do
encode $file.wav $file.mp3
rm $file.wav
done <list-file
Powered by 1.1.6.1
Page was generated in 0.0356 seconds