I have a web-camera(D-LINK DCS-2130) and a web-site. Camera haven't "guest" option(or I haven't found where is it?), that so I need to authorize my site to show image from cam. What is a correct way to display an image?
I have 2 ideas:
- Create getImage.php, which will send login+pass(cURL) to the camera and
get the image. In my site's code I'll use
src="getImage.php" - Create same getImage.php, which will send login+pass(cURL), get the image, store it localy into
/myCameraSnapshots/Image.jpgwait()1 second, then get new image and overwrite it localy.
The first way will do many requests to the camera (1 viewer — 1 request), second will get load my server's CPU, but will not disturb camera's authorization.
I hope You can say "You're an idiot! There's a easy way to get image from protected folder! Just do..." ;)
wait()function and just get image, store it, wait 1 sec, get image, store it, etc. Yes, I can set max_execution_time for my scripts to one hour for example, set crontab to restart this script every hour. This way I'll have 1 php process on my server. – George Sazanovich Feb 5 '12 at 19:54