English Deutsch Español Русский
RadioBOSS
RadioBOSS makes automating your broadcast to the world, your business or shop professional, simple, affordable, reliable.
Read MoreDownloadBuy Now

Author Topic: Live365 broadcast  (Read 8077 times)

0 Members and 3 Guests are viewing this topic.

dashford

  • Posts: 17
    • View Profile
Sending Custom Album Cover Art to Live365
« Reply #30 on: June 22, 2011, 03:17:52 PM »
II. Sending song title
In the Settings window, click "Log files (Reports)", enable HTTP Get request. In the URL put the following string:
Quote
http://tools.live365.com/cgi-bin/add_song.cgi?version=2&pass=MYPASSWORD&handle=MYLOGIN&title=%title&artist=%artist&album=%album
This is great, but I'd like to take it a step further.  There is a coverURL parameter for add_song.cgi that allows you to send the URL of a graphics file for displaying custom album cover art on a particular song (e.g., a station logo if an ID is played).  Ultimately I'd like to use the %comment tag field to provide the URL, but for now I'm just providing the URL directly.

However, I can't get the parameter to work when sent from RadioBOSS.  I know the URL has to be properly escaped, so a value like this:

coverURL=http://www.domain.com/logo.jpg

has to look like this:

coverURL=http%3A%2F%2Fwww%2Edomain%2Ecom%2Flogo%2Ejpg

...but it still doesn't work in RadioBOSS.   I know the format of the whole http: link is correct because the artwork comes through when I send it directly, but it doesn't work when sent through RadioBOSS.  Any ideas?  Perhaps a truncation issue?  Thanks.
« Last Edit: June 22, 2011, 05:53:02 PM by dashford »

djsoft

  • Administrator
  • Posts: 1622
    • View Profile
    • http://www.djsoft.net
Re: Live365 broadcast
« Reply #31 on: June 23, 2011, 01:24:16 PM »
Can you provide a full string you use for HTTP request?
Dmitry, djsoft.net support / icq 353966341 / email support@djsoft.net / http://www.djsoft.net

dashford

  • Posts: 17
    • View Profile
Re: Live365 broadcast
« Reply #32 on: June 23, 2011, 08:25:58 PM »
Can you provide a full string you use for HTTP request?

I will privately email you the actual string, which includes our station's username and password.

Generically, though, it just looks like this:

Quote
http://tools.live365.com/cgi-bin/add_song.cgi?version=2&pass=MYPASSWORD&handle=MYLOGIN&title=<title>&artist=<artist>&album=<album>&coverURL=<image URL>
« Last Edit: June 26, 2011, 01:57:52 PM by dashford »

djsoft

  • Administrator
  • Posts: 1622
    • View Profile
    • http://www.djsoft.net
Re: Live365 broadcast
« Reply #33 on: June 27, 2011, 08:42:42 AM »
Sorry for a delay.
RadioBOSS doesn't "know" the cover URL, so I suppose, you have that URL hardcoded in the request string? Maybe, the string is not properly encoded. I used the online service (http://www.albionresearch.com/misc/urlencode.php) to encode it and got the result: "http%3A%2F%2Fwww.domain.com%2Flogo.jpg" which is differs from yours a little.
I'll also check if RadioBOSS does some transformations to the URL string.
Dmitry, djsoft.net support / icq 353966341 / email support@djsoft.net / http://www.djsoft.net

dashford

  • Posts: 17
    • View Profile
Re: Live365 broadcast
« Reply #34 on: June 27, 2011, 02:43:36 PM »
Sorry for a delay.
RadioBOSS doesn't "know" the cover URL, so I suppose, you have that URL hardcoded in the request string?
Well, originally we were trying to pass the URL from the Comment tag field, like this:
Quote
http://tools.live365.com/cgi-bin/add_song.cgi?version=2&pass=MYPASSWORD&handle=MYLOGIN&title=%title&artist=%artist&album=%album&coverURL=%comment
...but that wasn't working.  So now we're trying to hardcode the URL in the request string to at least get *that* part of the process working.  But that's where we're getting stuck.


Quote from: djsoft
Maybe, the string is not properly encoded. I used the online service (http://www.albionresearch.com/misc/urlencode.php) to encode it and got the result: "http%3A%2F%2Fwww.domain.com%2Flogo.jpg" which is differs from yours a little.
Thanks -- I just tried that format in RadioBOSS and I'm afraid that doesn't work either.


Quote from: djsoft
I'll also check if RadioBOSS does some transformations to the URL string.
Yes, thank you -- we're kind of wondering if that is what is going on.

djsoft

  • Administrator
  • Posts: 1622
    • View Profile
    • http://www.djsoft.net
Re: Live365 broadcast
« Reply #35 on: June 27, 2011, 03:11:51 PM »
Hmm... reading from comment should work (good idea BTW). RadioBOSS prepares all the strings before making a request. It should work, and I don't know (yet) why it doesn't.
You may send (privately to support@djsoft.net) an URL which works, so I'll be able to check what could be wrong...
Dmitry, djsoft.net support / icq 353966341 / email support@djsoft.net / http://www.djsoft.net

dashford

  • Posts: 17
    • View Profile
Re: Live365 broadcast
« Reply #36 on: July 13, 2011, 02:52:16 PM »
Hmm... reading from comment should work (good idea BTW). RadioBOSS prepares all the strings before making a request. It should work, and I don't know (yet) why it doesn't.
You may send (privately to support@djsoft.net) an URL which works, so I'll be able to check what could be wrong...

Hello Dmitry -

You had indicated to me in an email that RadioBOSS doesn't use the "%comment" field correctly in the URL request to Live365.  Was that issue fixed in the 4.5.4.833 release?

I ask because I tried passing the %comment field to the Live365 URL request and it still doesn't seem to work in the new release.

Thanks.

djsoft

  • Administrator
  • Posts: 1622
    • View Profile
    • http://www.djsoft.net
Re: Live365 broadcast
« Reply #37 on: July 14, 2011, 09:30:56 AM »
I just checked it, and the %comment works fine (tested it on local Apache server).
The URL in RadioBOSS:
http://djs/1.php?cm=%comment

"Comment" in track's tags:
--www.djsanchez.ru--

Record in server access logs:
127.0.0.1 - - [14/Jul/2011:18:25:33 +0400] "GET /1.php?cm=%2D%2Dwww.djsanchez.ru%2D%2D HTTP/1.1"

As you can see, the contents of comment field are sent correctly... I think you should check your URL, maybe something's wrong there (mistype?).
« Last Edit: July 14, 2011, 09:32:58 AM by djsoft »
Dmitry, djsoft.net support / icq 353966341 / email support@djsoft.net / http://www.djsoft.net

dashford

  • Posts: 17
    • View Profile
Re: Live365 broadcast
« Reply #38 on: July 14, 2011, 12:42:17 PM »
OK, thank you -- our URLs were typed correctly.  We'll look into this further on our end.

nyankee

  • Posts: 116
    • View Profile
Re: Live365 broadcast
« Reply #39 on: January 05, 2012, 12:15:18 PM »
Is anyone having issues with album being transferred to live 365? I set up the http and stream is good, but some album names transfer a lot don't, only artist and song so i get delisted alot. i use mp3, i am about to use mp3pro to see if it fixes something.

djsoft

  • Administrator
  • Posts: 1622
    • View Profile
    • http://www.djsoft.net
Re: Live365 broadcast
« Reply #40 on: January 05, 2012, 06:11:22 PM »
Are you sure you have the "album" filled in the tag info?
MP3 and MP3Pro is not an issue here, it's just a codec, the metadata is sent regardless of this...
Dmitry, djsoft.net support / icq 353966341 / email support@djsoft.net / http://www.djsoft.net

nyankee

  • Posts: 116
    • View Profile
Re: Live365 broadcast
« Reply #41 on: January 05, 2012, 07:05:10 PM »
Yes i have all of my songs with full info. Some albums show as *blank* on live 365

djsoft

  • Administrator
  • Posts: 1622
    • View Profile
    • http://www.djsoft.net
Re: Live365 broadcast
« Reply #42 on: January 06, 2012, 04:37:04 AM »
I think you should contack the Live365 support about this, so they'll check the logs. Probably, they're displaying only allowed genres, and when you send genre out of this list - it is not displayed.
Dmitry, djsoft.net support / icq 353966341 / email support@djsoft.net / http://www.djsoft.net

WRCM

  • Posts: 16
    • View Profile
Re: Live365 broadcast
« Reply #43 on: March 23, 2012, 01:17:38 PM »
I am having the same problem with some of our albums not being known,which inturn makes Live365 not list our station.  I have contacted Live365 for support and was wondering if there was any update on your end for the problem?

djsoft

  • Administrator
  • Posts: 1622
    • View Profile
    • http://www.djsoft.net
Re: Live365 broadcast
« Reply #44 on: March 25, 2012, 02:55:35 AM »
I am having the same problem with some of our albums not being known,which inturn makes Live365 not list our station.  I have contacted Live365 for support and was wondering if there was any update on your end for the problem?
How are you transferring album info to the Live365 server? And if their support responded, let me know what they said about it.
Dmitry, djsoft.net support / icq 353966341 / email support@djsoft.net / http://www.djsoft.net

 

With Quick-Reply you can write a post when viewing a topic without loading a new page. You can still use bulletin board code and smileys as you would in a normal post.

Name: Email:
Verification: