Skip to content

Instantly share code, notes, and snippets.

@dleslie
Created December 12, 2011 00:25
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dleslie/1463744 to your computer and use it in GitHub Desktop.
Save dleslie/1463744 to your computer and use it in GitHub Desktop.
wget converter from flac to mp3
#!/bin/bash
for link in `cat list.txt`; do
fname=`echo $link | awk -F"/" '{print $5}'`
wget -c --limit-rate=500k $link -qO - | flac -cd - | lame -h - "$fname.mp3"
sleep 120
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment