view bin/yt2mp3.sh @ 71:3d111401010f

add a function to view the files in a diff
author Jeff Hammel <jhammel@mozilla.com>
date Wed, 26 May 2010 10:15:35 -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"