Search found 2554 matches

by Jay
Sun Feb 01, 2015 10:11 pm
Forum: Radio Toolbox
Topic: Love You Work!
Replies: 26
Views: 43372

Re: Love You Work!

Yea, I found the problem, will work on a fix.
by Jay
Sun Feb 01, 2015 6:05 pm
Forum: Radio Toolbox
Topic: Love You Work!
Replies: 26
Views: 43372

Re: Love You Work!

Is your notifier Method set to POST or GET?
by Jay
Fri Jan 30, 2015 1:07 pm
Forum: Radio Toolbox
Topic: Love You Work!
Replies: 26
Views: 43372

Re: Love You Work!

Hmm odd, they should be urlencoded.

Might be a bug in that function. Will check it out.
by Jay
Thu Jan 29, 2015 12:41 pm
Forum: Radio Toolbox
Topic: Love You Work!
Replies: 26
Views: 43372

Re: Love You Work!

ok, let me do some tests on my end and I will get back to you.
by Jay
Wed Jan 28, 2015 10:28 am
Forum: Radio Toolbox
Topic: Love You Work!
Replies: 26
Views: 43372

Re: Love You Work!

Interesting, do you have a log or something that shows the double posting?
by Jay
Wed Jan 28, 2015 10:26 am
Forum: Radio Toolbox
Topic: Help getting Notification to work when Stream is offline
Replies: 7
Views: 10982

Re: Help getting Notification to work when Stream is offline

Can you send me to full log to the email support at radiotoolbox.com.

I will take a look.

I have also been trying to think of ways to make this setup less painful. Do you use a free mail provider (ie, gmail, hotmail, yahoo etc) or your own mail server?
by Jay
Sun Jan 25, 2015 11:16 am
Forum: Radio Toolbox
Topic: Help getting Notification to work when Stream is offline
Replies: 7
Views: 10982

Re: Help getting Notification to work when Stream is offline

You need to make sure that your SMTP settings are vaiid and usually the best way to do this is to have them point to the SMTP server that your email account uses. Also check the log to see if any errors occur when the message should fire.

One final note, it isn't necessary to set your check ...
by Jay
Mon Jan 12, 2015 2:25 am
Forum: Radio Toolbox
Topic: Radio Toolbox for iOS / Android?
Replies: 1
Views: 4091

Re: Radio Toolbox for iOS / Android?

Yes, this is currently in the early phases and we will probably roll out with an iOS app first and then follow up with Android.

Some caveats that our users should be aware of, this app will not be able to work without Radio Toolbox running on your home or studio computer. The reason is that this ...
by Jay
Wed Jan 07, 2015 10:52 pm
Forum: Radio Toolbox
Topic: Radio Toolbox v2.1
Replies: 3
Views: 8468

Radio Toolbox v2.1

This isn't your father's Radio Toolbox. :lol: 8O
rtbfun.png
by Jay
Tue Dec 30, 2014 4:43 pm
Forum: Steamcast
Topic: Need a web player that shows current track
Replies: 1
Views: 20987

Re: Need a web player that shows current track

Well, you will need to employ a flash based solution if you want real time streaming of meta data. Otherwise you will need to do json polls to Steamcast to get that information.

Once we complete the player phase of development all this will be much easier. The target date of release on the new ...
by Jay
Tue Dec 09, 2014 1:55 am
Forum: Steamcast
Topic: Live and backup stream user count and YP listings.
Replies: 4
Views: 22235

Re: Live and backup stream user count and YP listings.

Well what will happen is you will have only one mount. live.ogg

In that you will send/configure a source that would be whatever your auto.ogg is and configure one for what it is now.

To the outside world it will look like one source, but internally and to you it will be two. This way listener ...
by Jay
Mon Dec 08, 2014 1:34 pm
Forum: Steamcast
Topic: Live and backup stream user count and YP listings.
Replies: 4
Views: 22235

Re: Live and backup stream user count and YP listings.

Yup, we consider the source going away to be a bad thing and a temporary condition with "SourceBackup".

What I think you are trying to accomplish is multiple sources to a single mount. This is a feature that is coming. The hack way that this is accomplished in Icecast isn't really intuitive or ...
by Jay
Sat Dec 06, 2014 5:47 pm
Forum: Steamcast
Topic: Any scripts to show current track/last play tracks?
Replies: 36
Views: 365096

Re: Any scripts to show current track/last play tracks?

That is correct additionally you will want:

Code: Select all

...
$live_data = $steamcast->stream_info(0);
$auto_data = $steamcast->stream_info(1);
...
by Jay
Fri Dec 05, 2014 5:22 pm
Forum: Steamcast
Topic: Any scripts to show current track/last play tracks?
Replies: 36
Views: 365096

Re: Any scripts to show current track/last play tracks?

Sure,

Because the script is just a regular PHP array structure you can place anything you want anywhere on your page.

<?php
...
$data = $steamcast->stream_info();
if ($data == NULL)
{
<div id="error">Down for maintenance.</div>
exit();
}
?>
<div id="current"><?php echo $data['meta_song ...
by Jay
Fri Dec 05, 2014 3:51 pm
Forum: Steamcast
Topic: Compatible embedded players?
Replies: 2
Views: 15428

Re: Compatible embedded players?

Steamcast is fully HTTP/1.1 compliant so it shouldn't be too difficult to find a player that will work with it.

In a future iteration there will be an API so that you can access Steamcast's own embedded player. So adding a player to your site will be easy.