Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

jazler radio automation

Status
Not open for further replies.

rsnmedia

IS-IT--Management
Jul 19, 2011
1
CA
Good morning developers,

A little backround about myself, I have never had any thorough development training. I basicly tought my self 8 years ago, and i've gone up from there.

I am an owner of a radio station, and I use a bit of software called "Jazler RadioStar" and I love it, expecially for this feature.

XML uploads. currently on air / last XX tracks / next 2 or three.

I use simplexml to grab the currently playing info and it works great but I can't seem to figure out the recently played xml.

it confuses me, and i can't get it to work, here is an example of the code, hopefully someone could steer me in the correct direction.

Thanks everyone.

p.s. the next is directly related to recent, we can figure out 2 in one.

Russ.

<?xml version="1.0" encoding="utf-8"?>
<Event status="happened">
<Song title="Get Back Up">
<Artist name="T.I. Ft. Chris Brown" ID="335808">
</Artist>
<Info StartTime="16:06:46" JazlerID="128" PlayListerID="" />
</Song>
<Song title="Rainbow">
<Artist name="Jessie J" ID="335752">
</Artist>
<Info StartTime="16:11:17" JazlerID="70" PlayListerID="" />
</Song>
<Song title="We Run The Night">
<Artist name="Havana Brown" ID="335830">
</Artist>
<Info StartTime="16:15:15" JazlerID="151" PlayListerID="" />
</Song>
<Song title="Red Nation">
<Artist name="Game Ft Lil Wayne" ID="335865">
</Artist>
<Info StartTime="16:18:50" JazlerID="188" PlayListerID="" />
</Song>
<Song title="You Know Me">
<Artist name="WC ft. Ice Cube" ID="335748">
</Artist>
<Info StartTime="16:23:27" JazlerID="66" PlayListerID="" />
</Song>
<Song title="Drop">
<Artist name="Trai'D ft. T-Pain &amp; Twista" ID="335746">
</Artist>
<Info StartTime="16:27:55" JazlerID="64" PlayListerID="" />
</Song>
<Song title="Let's Go Higher">
<Artist name="Jordan Knight ft. Colby O'Donis" ID="335860">
</Artist>
<Info StartTime="16:32:04" JazlerID="183" PlayListerID="" />
</Song>
<Song title="Don't Wanna Go Home">
<Artist name="Jason Derulo" ID="335690">
</Artist>
<Info StartTime="16:36:14" JazlerID="6" PlayListerID="" />
</Song>
<Song title="I'm Dancin">
<Artist name="T-Pain Ft. Flo Rida" ID="335801">
</Artist>
<Info StartTime="16:40:29" JazlerID="123" PlayListerID="" />
</Song>
<Song title="Come Home With Me (Remix)">
<Artist name="iamSU! ft. BC" ID="335740">
</Artist>
<Info StartTime="16:43:52" JazlerID="58" PlayListerID="" />
</Song>
</Event>
 


Hi,

Know absolutely nothing about this.
[tt]
<Event status="happened">

</Event>
[/tt]
aren't these all somgs that HAPPENED in the past, at the times indicated?

Or am I missing something?

I Googled and found
[tt]
<Event status="happening">

</Event>
[/tt]
as in
[tt]
<Event status="happening" startTime="12:22:11" eventType="song">
<Announcement Display="" />
<Song title="Tik-Tok">
<Artist name="Kesha" />
<Jazler ID="1" />
<PlayLister ID="" />
<Media runTime="00:03:18" />
<Expire Time="12:25:29" />
</Song>
</Event>
[/tt]
where the current eventType stated at starttime.

however, I was not able to find any Event status that was neither happened nor happening.



Skip,

[glasses]Just traded in my old subtlety...
for a NUANCE![tongue]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top