Mercurial > hg > config
view bin/yt2mp3.sh @ 38:10fc72a4e6ca
upgrade hotkeys to use the new mozilla pastebin.py (can probably throw away HOME/bin/pastebin.sh)
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Thu, 18 Mar 2010 17:26:44 -0700 |
parents | f3ab51c79813 |
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"