Go Back   Winamp Forums > SHOUTcast > SHOUTcast Discussions

Reply
Thread Tools Search this Thread Display Modes
Old 9th March 2002, 00:02   #1
VacTacks11
Junior Member
 
Join Date: Mar 2002
Posts: 11
Create a SHOUTcast website

Hey, I'm a newbie here.

I'd like to know how I can create a web-site (say on Geocities) that'll allow the user to click there and see what song is playing. Thanks for the help guys.
VacTacks11
VacTacks11 is offline   Reply With Quote
Old 9th March 2002, 07:19   #2
Sound Selecta
Senior Member
 
Join Date: May 2001
Posts: 183
http://www2.kenyon.edu/People/varmaa/mticker/
Sound Selecta is offline   Reply With Quote
Old 9th March 2002, 16:44   #3
VacTacks11
Junior Member
 
Join Date: Mar 2002
Posts: 11
Quote:
Originally posted by Sound Selecta
http://www2.kenyon.edu/People/varmaa/mticker/
Thanks Sound. Appreciate it.
VacTacks11 is offline   Reply With Quote
Old 9th March 2002, 20:07   #4
creep303
Junior Member
 
creep303's Avatar
 
Join Date: Feb 2002
Location: Ottawa Ontario
Posts: 18
wow!

that kick the one iwas using's ass!
creep303 is offline   Reply With Quote
Old 11th March 2002, 18:50   #5
teknojoe2k2
Junior Member
 
teknojoe2k2's Avatar
 
Join Date: Feb 2002
Posts: 23
edting the musicticker

hiya,

i downloaded the musicticker and got it working. v. good. i am wondering how you can configure it to have a background picture in the .htm file that it uses as all my other pages on my site have that background. I cannot find any way of doing it so any help would be much appreciated.
teknojoe2k2 is offline   Reply With Quote
Old 12th March 2002, 00:52   #6
Sound Selecta
Senior Member
 
Join Date: May 2001
Posts: 183
If you have access to SSI then you call the ticker page into any html document on your site.
Sound Selecta is offline   Reply With Quote
Old 12th March 2002, 21:13   #7
teknojoe2k2
Junior Member
 
teknojoe2k2's Avatar
 
Join Date: Feb 2002
Posts: 23
RE: SSI

Hi,

I dont really know wot SSI is 2 b honest. I am using Frontpage 2000 on XP Home, is there a way 2 do it in frontpage?
teknojoe2k2 is offline   Reply With Quote
Old 13th March 2002, 14:42   #8
PBChannel
Junior Member
 
Join Date: Mar 2002
Posts: 5
I'm using another piece of software (OTSJuke) to run my music, but would like to let people know what song is playing on my main page. OTSJuke uses the same dll that winamp uses for output. Is there a way to still show which song is playing?

Thanks
PBChannel is offline   Reply With Quote
Old 13th March 2002, 15:54   #9
li1997
Member
 
Join Date: Nov 2000
Location: Narragansett, RI, USA
Posts: 78
Send a message via AIM to li1997
FYI

I just wanted to let you guys know..

In the next version of Shoutcast (later then 1.8.3) there is no longer support for the old MusicTicker. The extended features have been removed and have been handled in XML and via w3c log files.

If you want the same funtionality as the old MusicTicker, and something you won't have to change on the next release of Shoutcast check this out.

http://www.kription.com/scxml/recent.html

Very simple to setup, requires PHP (--with-xml) and about 4 lines of editing (to point to your SC server).

Most decent ISP's these days are putting PHP into their web hosting packages (as it is completely free), if yours doesn't.. bug them.. it is silly if they don't.

-kription
li1997 is offline   Reply With Quote
Old 13th March 2002, 17:47   #10
PBChannel
Junior Member
 
Join Date: Mar 2002
Posts: 5
I tried the scripts on the link, but it's showing the same song twice, and only 10 in the list (see attached image).

I havent changed any variables except the required server variables.
Attached Images
File Type: jpg shoutcastpage.jpg (56.5 KB, 360 views)
PBChannel is offline   Reply With Quote
Old 13th March 2002, 20:04   #11
angst
Major Dude
 
angst's Avatar
 
Join Date: Dec 2000
Location: Toronto, Canada!
Posts: 545
Send a message via ICQ to angst
try this: www.industrialradio.net/showsong.htm

SiX - what's reality compared to me...
www.remixwars.com - free mp3's for download!
free shoutcast scripts: http://dev.irn.ca
angst is offline   Reply With Quote
Old 13th March 2002, 21:18   #12
Sound Selecta
Senior Member
 
Join Date: May 2001
Posts: 183
Quote:
Originally posted by PBChannel
I tried the scripts on the link, but it's showing the same song twice, and only 10 in the list (see attached image).

I havent changed any variables except the required server variables.
look for the following line
code:
//define the number of songs to display
$con_song_print=array_slice($con_song, 0, 10);



and change to
code:
//define the number of songs to display
$con_song_print=array_slice($con_song, 1, 10);




Later
Arek
http://www.futureassassin.com
Sound Selecta is offline   Reply With Quote
Old 13th March 2002, 22:48   #13
PBChannel
Junior Member
 
Join Date: Mar 2002
Posts: 5
Works great for the current track, but all the rest are still doubled up...
PBChannel is offline   Reply With Quote
Old 13th March 2002, 22:55   #14
Tom
Moderator
 
Join Date: Apr 2000
Posts: 4,485
The problem is not the script, but rather your server listing each track twice. Go to http://IP:PORT/played.html to verify this. The only time I managed to get a double listing like this was when I had the minibrowser open when I was broadcasting but I'm sure other things will trigger this as well. Try the basics (Winamp + DSP -> DNAS) and slowly add to it if you have other stuff running (plugins, etc) and see if that helps you track down the culprit.

Tom
Tom is offline   Reply With Quote
Old 13th March 2002, 23:18   #15
PBChannel
Junior Member
 
Join Date: Mar 2002
Posts: 5
Quote:
Originally posted by Tom
The problem is not the script, but rather your server listing each track twice. Go to http://IP:PORT/played.html to verify this. The only time I managed to get a double listing like this was when I had the minibrowser open when I was broadcasting but I'm sure other things will trigger this as well. Try the basics (Winamp + DSP -> DNAS) and slowly add to it if you have other stuff running (plugins, etc) and see if that helps you track down the culprit.

Tom
Yeah...it's showing a double listing there too.

I'm using OTSJuke (a popular piece of dj/automation software) which outputs to the shoutcast dll to broadcast over the net, so I am guessing that it has to be something between OTSJuke and the dll file.
PBChannel is offline   Reply With Quote
Old 14th March 2002, 01:16   #16
VacTacks11
Junior Member
 
Join Date: Mar 2002
Posts: 11
Re: FYI

Quote:
Originally posted by li1997
I just wanted to let you guys know..

In the next version of Shoutcast (later then 1.8.3) there is no longer support for the old MusicTicker. The extended features have been removed and have been handled in XML and via w3c log files.

If you want the same funtionality as the old MusicTicker, and something you won't have to change on the next release of Shoutcast check this out.

http://www.kription.com/scxml/recent.html

Very simple to setup, requires PHP (--with-xml) and about 4 lines of editing (to point to your SC server).

Most decent ISP's these days are putting PHP into their web hosting packages (as it is completely free), if yours doesn't.. bug them.. it is silly if they don't.

-kription
Alright. Now what? How do I implement this so that people can view it on my webpage??
VacTacks11 is offline   Reply With Quote
Old 14th March 2002, 03:09   #17
Sound Selecta
Senior Member
 
Join Date: May 2001
Posts: 183
Re: Re: FYI

Quote:
Originally posted by VacTacks11

Alright. Now what? How do I implement this so that people can view it on my webpage??
Did you actually read the phps files and look for the config sections? Once you put in your info where its requirted just save both of the files with the .php extension and upload them to your server.
Sound Selecta is offline   Reply With Quote
Old 14th March 2002, 04:44   #18
Jay
Moderator Alumni
 
Jay's Avatar
 
Join Date: May 2000
Location: Next Door
Posts: 8,888
if you're up for it I have written an application called Radio ToolBox that calls out to a php script

You can see it in action here http://www.radiotoolbox.com/radiotoolbox/example2.php

It doesn't rely so heavily on the server to put information on a webpage but rather caches it. The data can also be used on any php script on your website just by simply including the includes.php cache file.

Here is another script using the exact same data as the one above http://www.radiotoolbox.com/radiotoolbox/

I am not sure how helpful this is to you, I have been running for 2 weeks without problems so I am fairly certain this version is stable.

You can download it from http://www.radiotoolbox.com/
Jay is offline   Reply With Quote
Old 15th March 2002, 20:26   #19
ffchocobo
Junior Member
 
Join Date: Mar 2002
Posts: 4
when im using that script from

http://www.kription.com/scxml/recent.html

i get a error that says:


Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of fsockopen(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in /sites/square-online.com/ssp/chocoradio/scxml-obj.php on line 65

but the script still works for a strange reason.. i was wondering whats the problem and if anyone could help me.. thanks
ffchocobo is offline   Reply With Quote
Old 21st March 2002, 22:46   #20
li1997
Member
 
Join Date: Nov 2000
Location: Narragansett, RI, USA
Posts: 78
Send a message via AIM to li1997
Quote:
Originally posted by ffchocobo
when im using that script from

http://www.kription.com/scxml/recent.html

i get a error that says:


Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of fsockopen(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in /sites/square-online.com/ssp/chocoradio/scxml-obj.php on line 65

but the script still works for a strange reason.. i was wondering whats the problem and if anyone could help me.. thanks

Just a guess...

Your webserver is Win32?

Find out if you are using PHP 4.1.2 (or higher).

-kription
li1997 is offline   Reply With Quote
Old 23rd March 2002, 06:36   #21
Radio-1 VSEGDA
Junior Member
 
Join Date: Mar 2002
Location: St.Petersburg, Russia
Posts: 1
musicticker

Quote:
Originally posted by Sound Selecta
http://www2.kenyon.edu/People/varmaa/mticker/

With many thanks for musicticker! This works splendid!
http://radio1.yo.lv/
Radio-1 VSEGDA is offline   Reply With Quote
Reply
Go Back   Winamp Forums > SHOUTcast > SHOUTcast Discussions

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump