Never been to DZone Snippets before?

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

About this user

Alexandru Scvortov

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Flac to mp3

Converts all *.flac files in the current dir 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
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS