Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/sh
- #convert all wavs in a directory to mp3 then delete the wav
- for i in *.wav; do
- echo "${i}\n";
- lame --preset standard "${i}";
- done
- rm *.wav;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement