Flac to mp3
1 2 #!/bin/bash 3 4 for file in *.flac 5 do 6 echo Converting $file 7 flac123 -q --wav=- "$file" | lame - "$file".mp3 8 done
DZone Snippets > scvalex > convert
13491 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
1 2 #!/bin/bash 3 4 for file in *.flac 5 do 6 echo Converting $file 7 flac123 -q --wav=- "$file" | lame - "$file".mp3 8 done