Mercurial > hg > config
view bin/yt2mp3.sh @ 0:f3ab51c79813
adding configuration from https://svn.openplans.org/svn/config_jhammel/
author | k0s <k0scist@gmail.com> |
---|---|
date | Thu, 15 Oct 2009 11:41:26 -0400 |
parents | |
children | db859ed2585c |
line wrap: on
line source
#!/bin/bash YOUTUBEDL=/home/jhammel/music/youtube-dl URL=$1 TITLE=$($YOUTUBEDL --get-title $URL) $YOUTUBEDL -b -i -r 50k $URL -o "%(title)s.%(ext)s" EXT=mp4 rm -f audiodump.wav mplayer -vc null -vo null -ao pcm "$TITLE.$EXT" lame -q 2 audiodump.wav "$TITLE.mp3" rm "$TITLE.$EXT"