view bin/yt2mp3.sh @ 20:03fc1f76db91

adding dotpath python helper
author k0s <k0scist@gmail.com>
date Mon, 22 Feb 2010 13:59:07 -0500
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"