Search found 2554 matches

by Jay
Fri Dec 05, 2014 1:27 am
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?

Looking good! I have a feeling you're going to like some of the features I'm cooking up for the next minor release. :)
by Jay
Fri Dec 05, 2014 12:21 am
Forum: Steamcast
Topic: MPD as source works
Replies: 18
Views: 110889

Re: MPD as source works

Hmm ok, we shall check it out and see if we can resolve those compatibility issues in Steamcast.

Thanks for the report and your support!
by Jay
Thu Dec 04, 2014 4:20 am
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?

Ah, yea I see what you are saying now. I don't think that is Steamcast. Looks like how tags are being sent from the source. If it is somehow Steamcast let me know.
by Jay
Thu Dec 04, 2014 4:08 am
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?

Since you are using Ogg you can access the meta elements directly and display them however you like.

Use custom_tags

ex


while (list($key, $val) = each($data['played']))
{
echo '<br> at '.date('r', $val['entry_time']).' we played '.$val['custom_tags']['title'].' by '.$val['custom_tags ...
by Jay
Thu Dec 04, 2014 3:56 am
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?

When I go there, the page is blank.
by Jay
Thu Dec 04, 2014 1:46 am
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?

I fixed the example as well. That shouldn't have been in there in the first place.
by Jay
Thu Dec 04, 2014 1:43 am
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?

I also found one other problem

Change

$data = $steamcast->stream_info(1);

to

$data = $steamcast->stream_info();


Since you are referencing the exact stream name in the url you don't need to specify the index. If you did, you would want to use 0 anyways since all indexes are 0 based. So the ...
by Jay
Thu Dec 04, 2014 1:37 am
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?

In your case you will want to use the following connection url

$steamcast = new SteamcastStream('http://ice.futureassassin.com:8000/live.ogg', admin', 'MyPass');

The change is noted in bold.
by Jay
Thu Dec 04, 2014 1:19 am
Forum: Steamcast
Topic: MPD as source works
Replies: 18
Views: 110889

Re: MPD as source works

Checked out your site.

You might want to change the listen link to: http://ice.futureassassin.com:8000/sbin ... 2Flive.ogg

We do no magic ext stuff in Steamcast at this time.
by Jay
Thu Dec 04, 2014 1:14 am
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?

yup just copy this code into any file say

steamcaststream.php

then in your php scripts just

<?php
require_once('steamcaststream.php');
$steamcast = new SteamcastStream('http://ice.futureassassin.com:8000/live', 'admin', 'MyPass');
...

then follow the example and docs after that. All data is ...
by Jay
Wed Dec 03, 2014 11:57 pm
Forum: Steamcast
Topic: MPD as source works
Replies: 18
Views: 110889

Re: MPD as source works

If you could provide a link to your steamcast server I can check out what the issue is with the url.

Make sure you provide "http://" or "https://" to the beginning of the url is all I can think of off the top of my head.
by Jay
Wed Dec 03, 2014 11:49 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?

Just whipped this up.

http://www.radiotoolbox.com/steamcast/s ... tream.phps

If you enjoy it and it works for you, feel free to donate to our project at Paypal jay at radiotoolbox.com

Thanks for using Steamcast. Full documentation is provided in the source.
by Jay
Mon Dec 01, 2014 10:24 pm
Forum: Radio Toolbox
Topic: Can't get data logging started
Replies: 1
Views: 4276

Re: Can't get data logging started

When you log in click the link that says "Show me my new Radio Toolbox account!"

That will take you to your version 2 stats.
by Jay
Mon Dec 01, 2014 9:37 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?

There are definitely scripts out there. Stat sheet follows 0.9.75 spec, so anything made for that version should work If you want something custom, contact me in pm and give me specifics of what you need and we can either make it available for the community at no charge or do something for you at a ...
by Jay
Sun Oct 26, 2014 9:48 am
Forum: Steamcast
Topic: Steamcast Preview Release 1.0.0 decennium
Replies: 0
Views: 67102

Steamcast Preview Release 1.0.0 decennium

We are pleased to announce the preview release of Steamcast 1.0.0 decennium.

Steamcast 1.0.0 decennium marks the very first stable release of Steamcast in it's history. This release covers all features in all previous releases of Steamcast except for OnDemand which we anticipate will be available ...