Advertisement
pcwizz

convert wav to mp3 with lame

May 11th, 2014
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.15 KB | None | 0 0
  1. #!/bin/sh
  2. #convert all wavs in a directory to mp3 then delete the wav
  3. for i in *.wav; do
  4.     echo "${i}\n";
  5.     lame --preset standard "${i}";
  6. done
  7. rm *.wav;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement