Hi, is there any info on how to create a direct url for (eg) the following-
automatically log in and open a window of the montage using stills an not streaming?
I ask because I am accessing the server from my phone (mda vario2) and it takes time to log in etc.
One link in my favourites to open the monitors would be cool!
direct urls?
http://<yoururl>/index.php?view=montage&format=xhtml&group=0&user=<youruser>&password=<yourpassword>
Adjust the format to what you usualy use (html/xhtml) as well as the group you may have setup etc.
As far as still images, that is all you are able to recieve on a mobile phone. Streams currently are not possible.
Adjust the format to what you usualy use (html/xhtml) as well as the group you may have setup etc.
As far as still images, that is all you are able to recieve on a mobile phone. Streams currently are not possible.
Phones and streaming
Why doesn't it stream to phones, like safari on my iPhone? Whatever my Axis cameras push out on the live viewer works fine if I go directly to the camera, even over 3G I get very near real-time. (Which is wonderful for setting up camera angles) What's ZM streaming differently?
I haven't looked into it that much, but it looks like ZM determines how it streams images partially based on what browser you are using. You probably have cambozola enabled. I think what is happening is ZM treats safari/iphone as ie and tries to use cambozola which doesn't work. To get around this you can disable cambozola or change some code so ZM treats safari like mozilla instead of ie.
In zm_funcs.php change
to
There is probably a better way of doing thing, like making a isSafari function and using it in the canStreamNative(). I don't know, im not a PHP guy and haven't looked at ZM too close but it worked for me. There are other threads on how people have gotten zm to work on an iphone too.
In zm_funcs.php change
Code: Select all
function isNetscape()
{
getBrowser( $browser, $version );
return( $browser == "mozilla");
}
Code: Select all
function isNetscape()
{
getBrowser( $browser, $version );
return( $browser == "mozilla" || $browser =="safari" );
}