j4neiros
My digital hodgepodge
Friday, August 5, 2011
Convert WAV files to MP3 in Ubuntu
#!/bin/bash
# name of this script: wav2mp3.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
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment