DCS-930L Camera: Difference between revisions
From Federal Burro of Information
Jump to navigationJump to search
No edit summary |
|||
(6 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
Stream video: http://localhost/video/mjpg.cgi?profileid=1 | Stream video: http://localhost/video/mjpg.cgi?profileid=1 | ||
/dms?nowprofileid=1 - need to try | |||
== system info == | == system info == | ||
Line 31: | Line 34: | ||
</pre> | </pre> | ||
== Links and | == working with config == | ||
the config file that you download from the vendon's firmware web interface is "obfuscated". get at the data like this: | |||
[[/deobfuscate]] | |||
== making time laspe from jpegs == | |||
use wget to grab frames: | |||
curl --user user:pass http://camera/image.jpg?cidx=1816339000 -o /path/webcam/`date "+%Y%m%d%H%M%S"`.jpeg 2>/dev/null | |||
Then stich them together: | |||
/home/david/ffmpeg-3.4.2/bin/ffmpeg -r 60 -i %05d.jpeg -codec:v mpeg4 test.mp4 | |||
== Links and resources == | |||
* https://wiki.zoneminder.com/D-Link | * https://wiki.zoneminder.com/D-Link | ||
* list of urls http://forums.dlink.com/index.php?topic=59172.0 | * list of urls http://forums.dlink.com/index.php?topic=59172.0 | ||
* firmwares http://support.dlink.ca/ProductInfo.aspx?m=DCS-930L | |||
* http://www.coresecurity.com/advisories/d-link-ip-cameras-multiple-vulnerabilities |
Latest revision as of 16:15, 31 March 2018
Stream video: http://localhost/video/mjpg.cgi?profileid=1
/dms?nowprofileid=1 - need to try
system info
BASIC INFORMATION Camera Name DCS-930L Time & Date 28 Jan 2016 10:24:30 A.M. Firmware Version 1.11 (2014-03-14) Agent Version 2.0.17-b60 MAC Address 28 10 7B 25 53 8A IP Address 192.168.1.97 Subnet Mask 255.255.255.0 Default Gateway 192.168.1.28 Primary DNS 192.168.1.98 Secondary DNS 0.0.0.0 DDNS Disable UPnP Port Forwarding Disable FTP Server Test No test conducted. E-mail Test No test conducted. WIRELESS STATUS Connection Mode Infrastructure Link Yes SSID gopher (MAC : 00 16 B6 CC 4A 51) Channel 6 Encryption WPA2-PSK:TKIP
working with config
the config file that you download from the vendon's firmware web interface is "obfuscated". get at the data like this:
making time laspe from jpegs
use wget to grab frames:
curl --user user:pass http://camera/image.jpg?cidx=1816339000 -o /path/webcam/`date "+%Y%m%d%H%M%S"`.jpeg 2>/dev/null
Then stich them together:
/home/david/ffmpeg-3.4.2/bin/ffmpeg -r 60 -i %05d.jpeg -codec:v mpeg4 test.mp4