source: flacrip/trunk/flac-transcode @ 1

Last change on this file since 1 was 1, checked in by peter, 12 years ago

initial import of current flacrip files into the trunk

File size: 194 bytes
Line 
1# for transcoding a set of *.flac files into *.mp3 files
2for flac_file in *.flac; do
3    mp3_file=`echo $flac_file | sed s/\\.flac/.mp3/`
4    flac -d "$flac_file" -o - | lame - "$mp3_file"
5done
Note: See TracBrowser for help on using the repository browser.