source:
flacrip/trunk/flac-transcode
Last change on this file was 1, checked in by peter, 13 years ago | |
---|---|
File size: 194 bytes |
Line | |
---|---|
1 | # for transcoding a set of *.flac files into *.mp3 files |
2 | for flac_file in *.flac; do |
3 | mp3_file=`echo $flac_file | sed s/\\.flac/.mp3/` |
4 | flac -d "$flac_file" -o - | lame - "$mp3_file" |
5 | done |
Note: See TracBrowser
for help on using the repository browser.