Added initial project files

This commit is contained in:
2014-02-09 06:32:07 -06:00
commit eb119f6ddf
18 changed files with 942 additions and 0 deletions

34
sh/bsdnow.sh Executable file
View File

@@ -0,0 +1,34 @@
# BSD Now downloader
HDvideo="http://www.podtrac.com/pts/redirect.mp4/201402.jb-dl.cdn.scaleengine.net/bsdnow/2014/bsd-0023.mp4"
MP3audio="http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/bsd-0023-mp3.mp3"
OGGaudio="http://www.podtrac.com/pts/redirect.ogg/traffic.libsyn.com/jbmirror/bsd-0023-ogg.ogg"
destDIR="/home/$USER/syncs/bsdnow/"
function chkDIR(){
if [ ! -d ${destDIR} ];then
mkdir ${destDIR}
elif [ -d ${destDIR} ];then
main
fi
}
function main(){
rm -v -R ${destDIR}*.mp3
rm -v -R ${destDIR}*.ogg
rm -v -R ${destDIR}*.mp4
wget ${HDvideo} -P ${destDIR}
wget ${MP3audio} -P ${destDIR}
wget ${OGGaudio} -P ${destDIR}
}
chkDIR

35
sh/coderradio.sh Executable file
View File

@@ -0,0 +1,35 @@
# coderradio downloader
#HDvideo=""
MOBILEvideo="http://www.podtrac.com/pts/redirect.mp4/201402.jb-dl.cdn.scaleengine.net/coderradio/2014/cr-0087-432p.mp4"
MP3audio="http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/cr-0087-mp3.mp3"
OGGaudio="http://www.podtrac.com/pts/redirect.ogg/traffic.libsyn.com/jbmirror/cr-0087-ogg.ogg"
destDIR="/home/$USER/syncs/coderradio/"
function chkDIR(){
if [ ! -d ${destDIR} ];then
mkdir ${destDIR}
elif [ -d ${destDIR} ];then
main
fi
}
function main(){
rm -v -R ${destDIR}*.mp3
rm -v -R ${destDIR}*.ogg
rm -v -R ${destDIR}*.mp4
wget ${MOBILEvideo} -P ${destDIR}
wget ${MP3audio} -P ${destDIR}
wget ${OGGaudio} -P ${destDIR}
}
chkDIR

31
sh/fauxshow.sh Executable file
View File

@@ -0,0 +1,31 @@
# faux show downloader
HDvideo="http://www.podtrac.com/pts/redirect.mp4/201401.jb-dl.cdn.scaleengine.net/fauxshow/2014/fauxshow-ep161.mp4"
MP3audio="http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jupiterbroadcasting/fauxshow-ep161-mp3.mp3"
destDIR="/home/$USER/syncs/fauxshow/"
function chkDIR(){
if [ ! -d ${destDIR} ];then
mkdir ${destDIR}
elif [ -d ${destDIR} ];then
main
fi
}
function main(){
rm -v -R ${destDIR}*.mp3
rm -v -R ${destDIR}*.mp4
wget ${HDvideo} -P ${destDIR}
wget ${MP3audio} -P ${destDIR}
}
chkDIR

34
sh/las.sh Executable file
View File

@@ -0,0 +1,34 @@
# LAs downloader
HDvideo="http://www.podtrac.com/pts/redirect.mp4/201402.jb-dl.cdn.scaleengine.net/las/2014/linuxactionshowep298.mp4"
MP3audio="http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep298-mp3.mp3"
OGGaudio="http://www.podtrac.com/pts/redirect.ogg/traffic.libsyn.com/jbmirror/linuxactionshowep298-ogg.ogg"
destDIR="/home/$USER/syncs/linuxactionshow/"
function chkDIR(){
if [ ! -d ${destDIR} ];then
mkdir ${destDIR}
elif [ -d ${destDIR} ];then
main
fi
}
function main(){
rm -v -R ${destDIR}*.mp3
rm -v -R ${destDIR}*.ogg
rm -v -R ${destDIR}*.mp4
wget ${HDvideo} -P ${destDIR}
wget ${MP3audio} -P ${destDIR}
wget ${OGGaudio} -P ${destDIR}
}
chkDIR

32
sh/linuxunplugged.sh Executable file
View File

@@ -0,0 +1,32 @@
# linux unplugged downloader
HDvideo="http://www.podtrac.com/pts/redirect.mp4/201402.jb-dl.cdn.scaleengine.net/linuxun/2014/lup-0026.mp4"
MP3audio="http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/lup-0026-mp3.mp3"
OGGaudio="http://www.podtrac.com/pts/redirect.ogg/traffic.libsyn.com/jnite/lup-0026-ogg.ogg"
destDIR="/home/$USER/syncs/linuxunplugged/"
function chkDIR(){
if [ ! -d ${destDIR} ];then
mkdir ${destDIR}
elif [ -d ${destDIR} ];then
main
fi
}
function main(){
rm -v -R ${destDIR}*.mp3; rm -v -R ${destDIR}*.ogg; rm -v -R ${destDIR}*.mp4
wget ${HDvideo} -P ${destDIR}
wget ${MP3audio} -P ${destDIR}
wget ${OGGaudio} -P ${destDIR}
}
chkDIR

37
sh/scibyte.sh Executable file
View File

@@ -0,0 +1,37 @@
# scibyte downloader
#HDvideo=""
MOBILEvideo="http://www.podtrac.com/pts/redirect.mp4/201402.jb-dl.cdn.scaleengine.net/scibyte/2014/scibyte-0118-432p.mp4"
MP3audio="http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jupiterbroadcasting/scibyte-0118-mp3.mp3"
OGGaudio="http://www.podtrac.com/pts/redirect.ogg/traffic.libsyn.com/jupiterbroadcasting/scibyte-0118-ogg.ogg"
destDIR="/home/$USER/syncs/scibyte/"
function chkDIR(){
if [ ! -d ${destDIR} ];then
mkdir ${destDIR}
elif [ -d ${destDIR} ];then
main
fi
}
function main(){
rm -v ${destDIR}*.mp3
rm -v ${destDIR}*.ogg
rm -v ${destDIR}*.mp4
#wget ${HDvideo} -P ${destDIR}
wget ${MOBILEvideo} -P ${destDIR}
wget ${MP3audio} -P ${destDIR}
wget ${OGGaudio} -P ${destDIR}
}
chkDIR

34
sh/techsnap.sh Executable file
View File

@@ -0,0 +1,34 @@
# techsnap downloader
HDvideo="http://www.podtrac.com/pts/redirect.mp4/201402.jb-dl.cdn.scaleengine.net/techsnap/2014/techsnap-0148.mp4"
MP3audio="http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/techsnap-0148-mp3.mp3"
OGGaudio="http://www.podtrac.com/pts/redirect.ogg/traffic.libsyn.com/jnite/techsnap-0148-ogg.ogg"
destDIR="/home/$USER/syncs/techsnap/"
function chkDIR(){
if [ ! -d ${destDIR} ];then
mkdir ${destDIR}
elif [ -d ${destDIR} ];then
main
fi
}
function main(){
rm -v ${destDIR}*.mp3
rm -v ${destDIR}*.ogg
rm -v ${destDIR}*.mp4
wget ${HDvideo} -P ${destDIR}
wget ${MP3audio} -P ${destDIR}
wget ${OGGaudio} -P ${destDIR}
}
chkDIR

45
sh/techsnaptest.sh Executable file
View File

@@ -0,0 +1,45 @@
function chkDIR(){
if [ ! -d "/home/mollusk/syncs/techsnap" ]
then mkdir /home/mollusk/syncs/techsnap
mv cache/* /home/mollusk/syncs/techsnap
elif [ -d "/home/mollusk/syncs/techsnap" ]
then mv cache/* /home/mollusk/syncs/techsnap
fi
}
function TechSnap1(){
#Directories
local ODIR="/home/mollusk/syncs/techsnap1/"
podcatcher="/home/mollusk/podcatcher/bin/podcatcher"
#Feeds
local MP3feed="http://feeds.feedburner.com/techsnapmp3"
local OGGfeed="http://feeds.feedburner.com/techsnapogg"
local HDfeed="http://feeds.feedburner.com/techsnaphd"
local MOBILEfeed="http://feeds.feedburner.com/techsnapmobile"
#Podcatacher
local OPTS="-v -e -s 1000 -p"
#mkdir ${ODIR}
rm -R ${ODIR}*
#MP3 Feed
${podcatcher} ${OPTS} ${MP3feed} #-D ${ODIR}
#OGG Feed
#${podcatcher} ${OPTS} ${OGGfeed} -D ${ODIR}
#HD Video Feed
#${podcatcher} ${OPTS} ${HDfeed} -D ${ODIR}
#Mobile Video Feed
#${podcatcher} ${OPTS} ${MOBILEfeed} -D ${ODIR}
chkDIR
}
TechSnap1

37
sh/unfilter.sh Executable file
View File

@@ -0,0 +1,37 @@
# Unfilter downloader
#HDvideo="http://www.podtrac.com/pts/redirect.mp4/201310.jb-dl.cdn.scaleengine.net/las/2013/linuxactionshowep284.mp4"
MOBILEvideo="http://www.podtrac.com/pts/redirect.mp4/201402.jb-dl.cdn.scaleengine.net/unfilter/2014/unfilter-0084-432p.mp4"
MP3audio="http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/unfilter-0084-mp3.mp3"
OGGaudio="http://www.podtrac.com/pts/redirect.ogg/traffic.libsyn.com/jbmirror/unfilter-0084-ogg.ogg"
destDIR="/home/$USER/syncs/unfilter/"
function chkDIR(){
if [ ! -d ${destDIR} ];then
mkdir ${destDIR}
elif [ -d ${destDIR} ];then
main
fi
}
function main(){
rm -v -R ${destDIR}*.mp3
rm -v -R ${destDIR}*.ogg
rm -v -R ${destDIR}*.mp4
#wget ${HDvideo} -P ${destDIR}
wget ${MOBILEvideo} -P ${destDIR}
wget ${MP3audio} -P ${destDIR}
wget ${OGGaudio} -P ${destDIR}
}
chkDIR