From 5869505d64c04c536bdcd71a197ade918c36bf1c Mon Sep 17 00:00:00 2001 From: Patrick Simianer Date: Sun, 10 Aug 2014 11:19:38 +0100 Subject: init --- yt2mp3 | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 yt2mp3 (limited to 'yt2mp3') diff --git a/yt2mp3 b/yt2mp3 new file mode 100755 index 0000000..4982bcf --- /dev/null +++ b/yt2mp3 @@ -0,0 +1,21 @@ +#!/bin/sh + + +usage() +{ + echo "$0 " + exit 1 +} + +if [ -z $1 ] || [ -z $2 ]; then usage; fi + +TMP_FN=/tmp/youtube-dl-$RANDOM +while [ -a $TMP_FN ]; do + TMP_FN=/tmp/youtube-dl-$RANDOM +done +echo $TMP_FN + +youtube-dl --output=$TMP_FN --format=18 "$1" +ffmpeg -i $TMP_FN -acodec libmp3lame -ac 2 -ab 128k -vn -y "$2" +rm $TMP_FN + -- cgit v1.2.3