Page 1 of 3

Availability of 30-min broadcasts?

Posted: Wed Jun 08, 2011 6:14 am
by featheredprop
Hey Steve,

Any idea why the 30-min broadcasts are not regularly posted? It is not unusual to have several missing each week.

...not that I'm complaining ... well ... yes ... I guess I am complaining. :)

peace,

dane

Re: Availability of 30-min broadcasts?

Posted: Wed Jun 08, 2011 7:00 am
by jarrod
I've been wondering the exact same thing!

Re: Availability of 30-min broadcasts?

Posted: Wed Jun 08, 2011 8:45 am
by steve
I have to admit, I don't know how any of them are posted. I don't know who does it. There are so many volunteers doing different aspects of this ministry, that I don't know who does what. I also don't know anything about how to post them. I know tat KKMC posts the afternoon show after it has run, but I have never known how the morning show gets posted. I know nothing about the internet and how it works, so I don't even know what questions to ask of whom about this.

Re: Availability of 30-min broadcasts?

Posted: Wed Jun 08, 2011 9:59 am
by featheredprop
With all of those "I don't knows" one would think that I asked you a Bible question! :)

Looks like we are all on The Road to Find Out Where the Records Are ...

peace,

dane

Re: Availability of 30-min broadcasts?

Posted: Wed Jun 08, 2011 10:04 am
by darinhouston
jarrod wrote:I've been wondering the exact same thing!
Jarrod, I have a script recording them from a cron job but it's on a bandwidth limited personal server -- I could have the script scp them to Theos each week as an alternative site if you want to set me up with a shell. The eggbeater podcast script is pretty nice -- it creates the rss on the fly based on the contents of the directory when the request is made, so routine copying to the folder is all that's required to update the feed.

Re: Availability of 30-min broadcasts?

Posted: Wed Jun 08, 2011 2:06 pm
by jarrod
Darrin,

What language is the script written in? I would be willing to host the entire recording process if it will run on *nix.

I say lets do that... I like having the morning show after i finish the afternoon show and I'm still in the truck.

J

Re: Availability of 30-min broadcasts?

Posted: Thu Jun 09, 2011 9:59 pm
by darinhouston
Pretty simple, really -- run bash script from cron job. you'll need a few binaries below (widely available) -- and replace the paths of course...

#!/bin/bash

rm -rf /******/sgsecular/incomplete/*.mp3

## Start recording stream
/opt/local/bin/streamripper ksco.got.net:9000/ -l 3180 -dq /******/sgsecular >/dev/null

## Rename and move file
mv /******/sgsecular/KSCO\ AM\ 1080\ Santa\ Cruz\ CA\ USA\ \(831\)\ 475-1080/incomplete/\ -\ .mp3 /******/sgsecular/road_to_findout_$(date +%Y-%m-%d).mp3

## Add new tag
/opt/local/bin/id3tag -a "Steve Gregg" -s"$(date +%Y-%m-%d).mp3" -A"Road To Findout" /******/sgsecular/road_to_findout_$(date +%Y-%m-%d).mp3

Re: Availability of 30-min broadcasts?

Posted: Fri Jun 10, 2011 5:41 am
by featheredprop
You make it all seem so simple, Darrin ...

dane

Re: Availability of 30-min broadcasts?

Posted: Fri Jun 10, 2011 10:32 am
by steve
Now, does anyone have the gift of interpretation?

Re: Availability of 30-min broadcasts?

Posted: Fri Jun 10, 2011 2:01 pm
by darinhouston
steve wrote:Now, does anyone have the gift of interpretation?
Jarrod does ;)