diff 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 diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/bin/yt2mp3.sh	Thu Oct 15 11:41:26 2009 -0400
@@ -0,0 +1,12 @@
+#!/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"
\ No newline at end of file