I am trying to write a php script to test if an mms:// stream exists or not. I have not been able to do it using php functions such as socket_connect/fopen/fsockopen/etc. I have been searching the web for hours now and found similar questions in other forums but no one has actually given an answer (or even whether this is possible).
This is a possible code that I've used with no luck:
PHP Code:
<?php
$socket = socket_create(AF_INET, SOCK_RAW, 1);
if(!$connect = socket_connect($socket, "mms://some.mms/stream", 1755) )
{
echo 'Offline';
}
else
{
echo 'Online';
}
?>
I would recommend looking at implementing MMS in PHP. This should give you guidance to check the existance of a file (using the cURL library).
EDIT
Also, it appears the Microsoft Media Server (MMS) protocol isn't very well-known, and people have had problems trying to do what you are. Only recommendation (and I guess shot in the dark) would be use fsockopen and check for a response and go by that, otherwise it's a shot in the dark. As the linked Wikipedia page suggests, there are some who have tried reverse engineering the protocol, those may be your best bet.