D-Link Forums

D-Link IP Cameras for Home => DCS series Network Cameras => Topic started by: Merko on December 09, 2010, 06:14:42 AM

Title: DCS-2121 - Direct .Mjpg URL?
Post by: Merko on December 09, 2010, 06:14:42 AM
Hello.
I've just got my DCS-2121 up and working.
But i can't figureout how to access the direct URL for the camera. Is this even possible?

And is there a URL for still images aswell?
I got an iPad and an iPhone, but i can't access the camera because it use Java.

I had another DCS-900 where i could access IMAGE.jpg and Video.cgi. Is there anything like those for the DCS-2121?

Could really need this!

thanks.
Title: Re: DCS-2121 - Direct .Mjpg URL?
Post by: karikstad on December 19, 2010, 01:14:29 AM
Just got mine up and running with iSpy v1.4.5.0, took a bit of googeling, but finaly found out the following:
mjpeg
http://<camera ip>/video/mjpg.cgi
jpeg
http://<camera ip>/image/jpeg.cgi
http://<camera ip>/image/jpeg.cgi?profileid=1

Title: Re: DCS-2121 - Direct .Mjpg URL?
Post by: Merko on December 31, 2010, 05:11:10 PM
Just got mine up and running with iSpy v1.4.5.0, took a bit of googeling, but finaly found out the following:
mjpeg
http://<camera ip>/video/mjpg.cgi
jpeg
http://<camera ip>/image/jpeg.cgi
http://<camera ip>/image/jpeg.cgi?profileid=1

Thanks! :-)
Appreciated.
Title: Re: DCS-2121 - Direct .Mjpg URL?
Post by: hakelm on January 19, 2011, 12:33:01 PM
Why isn't this in the manual?!!!
But thanks a lot for this advice
Håkan
Title: Re: DCS-2121 - Direct .Mjpg URL?
Post by: sergio on March 18, 2011, 03:21:05 AM
hello
Thank you for the information would you have the same info for
the DCS2100+
as
mjpeg
http://<camera ip>/video/mjpg.cgi
jpeg
http://<camera ip>/image/jpeg.cgi
http://<camera ip>/image/jpeg.cgi?profileid=1
DOES NOT WORK ON THIS CAMERA
thanks a lot
Title: Re: DCS-2121 - Direct .Mjpg URL?
Post by: akag4 on August 09, 2011, 12:29:45 PM
Just got mine up and running with iSpy v1.4.5.0, took a bit of googeling, but finaly found out the following:
mjpeg
http://<camera ip>/video/mjpg.cgi
jpeg
http://<camera ip>/image/jpeg.cgi
http://<camera ip>/image/jpeg.cgi?profileid=1



Thanks, working !
Title: Re: DCS-2121 - Direct .Mjpg URL?
Post by: nettlebay on October 28, 2011, 07:44:17 AM
 :) Hello,
http://visitor:xxxxx@xxx.dyndns-web.com:80/image/jpeg.cgi
or
http://visitor:xxxxx@xxx.dyndns-web.com:80/video/mjpg.cgi

It works great for me.

My problem is only the blue dominant colour at midday. I am in Leeward Islands.

You can see my DCS-2121 in action here: http://st-martin-meteo-weather.blogspot.com/#wbcam

(http://visitor:pointedubluff@nbbc.dyndns-web.com:80/image/jpeg.cgi)
Title: Re: DCS-2121 - Direct .Mjpg URL?
Post by: amandasmith on December 08, 2011, 03:07:57 AM
have you tried:
http://192.168.1.1/MJPEG.CGI
Title: Re: DCS-2121 - Direct .Mjpg URL?
Post by: wolde on January 17, 2019, 12:52:37 AM
Hello,

i have this Link: http://192.168.0.20/image/jpeg.cgi?profileid=1

now I want to download the image with an html Code, but it didn't work. Do you know a solution?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<script type="text/javascript">



function load()
{
var link = document.createElement('a');
link.href = 'http://192.168.0.20/image/jpeg.cgi?profileid=1';
link.download = 'DownloadImg.jpg';
document.body.appendChild(link);
link.click();
document.body.removeChild(link);

}



</script>
</head>
<body onload="load()">
</body>
</html>