.wav to .mp3
Jump to navigation
Jump to search
wav2mp3
#!/bin/sh # # wav to mp3 for i in *.wav; do if [ -e "$i" ]; then file=`basename "$i" .wav` lame -h -b 192 "$i" "$file.mp3" fi done
See also
External Links
lame Project