Basically, just a simple script that can check to see if a shoutcast radio is online or not, and output a code based on it.
I tried to do this with file_get_contents and eregi, but it didn't seem to work, or was waaaaay to slow.
Cheers.
:)
|
feedback
|
|
Use fsockopen and check for the error.
You have to try and determine the | |||
|
feedback
|
|
Sorki's answer is fine if you just want to determine that the server is running, but as Gumbo pointed out, there are different levels of "online". For example, the server may be disabled so that it does not accept stream connections. The server could be accepting the stream connections, but the source may be disconnected. For this, you need to check the status in /7.html. Hit this with "Mozilla" in the user-agent string somewhere. You will get something back like this:
The data field are:
Easy to parse... just do an explode() on it. | |||
|
feedback
|
|
If it's your radio (you know password and username), you can use a CURL. Try get a $xml->STREAMSTATUS value from that piece of code:
enjoy | ||||
|
feedback
|
eregi. php.net/eregi – random Oct 3 '09 at 14:53