source:
flacrip/trunk/flac-transcode
@
14
Last change on this file since 14 was 1, checked in by peter, 13 years ago | |
---|---|
File size: 194 bytes |
Rev | Line | |
---|---|---|
[1] | 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.