• March 28, 2024, 01:12:22 PM
  • Welcome, Guest
Please login or register.

Login with username, password and session length
Advanced search  

News:

This Forum Beta is ONLY for registered owners of D-Link products in the USA for which we have created boards at this time.

Author Topic: DCS-2121 - Direct .Mjpg URL?  (Read 29214 times)

Merko

  • Level 1 Member
  • *
  • Posts: 2
DCS-2121 - Direct .Mjpg URL?
« 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.
Logged

karikstad

  • Level 1 Member
  • *
  • Posts: 1
Re: DCS-2121 - Direct .Mjpg URL?
« Reply #1 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

Logged

Merko

  • Level 1 Member
  • *
  • Posts: 2
Re: DCS-2121 - Direct .Mjpg URL?
« Reply #2 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.
Logged

hakelm

  • Level 1 Member
  • *
  • Posts: 2
Re: DCS-2121 - Direct .Mjpg URL?
« Reply #3 on: January 19, 2011, 12:33:01 PM »

Why isn't this in the manual?!!!
But thanks a lot for this advice
Håkan
Logged

sergio

  • Level 1 Member
  • *
  • Posts: 1
Re: DCS-2121 - Direct .Mjpg URL?
« Reply #4 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
Logged

akag4

  • Level 1 Member
  • *
  • Posts: 3
Re: DCS-2121 - Direct .Mjpg URL?
« Reply #5 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 !
Logged

nettlebay

  • Level 1 Member
  • *
  • Posts: 1
Re: DCS-2121 - Direct .Mjpg URL?
« Reply #6 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

Logged

amandasmith

  • Level 2 Member
  • **
  • Posts: 25
Re: DCS-2121 - Direct .Mjpg URL?
« Reply #7 on: December 08, 2011, 03:07:57 AM »

have you tried:
http://192.168.1.1/MJPEG.CGI
Logged

wolde

  • Level 1 Member
  • *
  • Posts: 3
Re: DCS-2121 - Direct .Mjpg URL?
« Reply #8 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>
Logged