Here is some output from ethereal. You can load this file in ethereal
http://johabba.net/hnc210
I tried the tgi url you suggested using port 4321 and port 80. However there is no image. Maybe you can find something in the cap file.
Thanks again for helping.
Figure out Source ?
- tech_fixer
- Posts: 132
- Joined: Tue Jul 29, 2003 3:07 pm
Can you post a screenshot after clicking on the "Snapshot & Mail" button? If it has a still image on it, can you also post the page html source?
About the stream, what you get on port 4321 seems to be soime kind of propietary MJPEG. It basically follows the same pattern of an MJPEG, but there are no HTTP headers, as I suspected. Images are separated only by the following strings:
Follwed by the following line, after which theres a lot of data, then the strings above, and so on.
Regards,
Jose.
About the stream, what you get on port 4321 seems to be soime kind of propietary MJPEG. It basically follows the same pattern of an MJPEG, but there are no HTTP headers, as I suspected. Images are separated only by the following strings:
Code: Select all
0110
....
0110
Code: Select all
..........JFIF.............C......
Jose.
- tech_fixer
- Posts: 132
- Joined: Tue Jul 29, 2003 3:07 pm
-
- Posts: 1
- Joined: Mon May 08, 2006 8:18 am
Weirdest Camera I have ever seen it is built for Digitus, Edimax and some other vendors like Intellinet to be used as a home model. For one of our Dealers insistance we have added alogrithm of this camera into our software. It is logic is sending 110 message from 4321 default video port. You dont even have to have a Password
then you receive One Jpeg frame with no length information you have to use your own creative socket and Jpeg know how there
My only problem is to get the Mac Address from the camera. With our compnent for getting Mac Address we can only manage to get it from our own LAN but not from WAN. If there was a weird tgi interface to get it it would be nice. Funny cam
www.thecoreopsis.com
then you receive One Jpeg frame with no length information you have to use your own creative socket and Jpeg know how there
My only problem is to get the Mac Address from the camera. With our compnent for getting Mac Address we can only manage to get it from our own LAN but not from WAN. If there was a weird tgi interface to get it it would be nice. Funny cam
www.thecoreopsis.com
This will get the images out of that stinkin camera! ;-)
This will get the images out of that stinkin camera! ;-)
Copy the program text below into a file and name the file getimage.bat. Download the netcat program nc.exe and place it in the same directory. Go to Start > Run , and type cmd.
from the dos prompt change to the directory you located the files in and run getimage.
You are on your own after this. I take no responsibility if you fill your drive with images from your camera or anything else.. lol.
Bottom line, this does work.
Good Luck!!
echo off
@cls
@Echo ----------------------------------------------------------
@Echo ! G E T I M A G E !
@Echo ! For the Hawking HNC230G !
@Echo ! !
@Echo ! USAGE: getimage [n] [d] !
@Echo ! !
@Echo ! options [n] [d] n - number of image files to get !
@Echo ! d - delay in seconds between files !
@Echo ! !
@Echo ! getimage n - produces image1.jpg, image2,jpg, etc.. !
@Echo ! ex. getimage 2 5 - produces 2 images 5 seconds apart !
@Echo ! !
@Echo ! !
@Echo ! This program requires nc.exe which may be downloaded at!
@Echo ! http://www.vulnwatch.org/netcat/ !
@Echo ! !
@Echo ! You must Change the ip-address in this program to the !
@Echo ! ip address of your camera before using it !
@Echo ! !
@Echo ! by: Dennis Lauzon !
@Echo ! ctrl-c to exit kd1ca@yahoo.com !
@Echo ----------------------------------------------------------
SET /a _a = 2
SET /a _number = 0
IF !%1 ==! GOTO EXIT0
IF !%2 ==! GOTO BEGIN
set /a _a = %2
:BEGIN
@Echo creating %1 images
GOTO Loop
:Loop
IF %1 == %_number% GOTO EXIT0
set /a _number=_number + 1
@Echo getting image%_number%.jpg
@echo 0110| nc -w 2 -n 192.168.1.105 4321>image%_number%.jpg
ping -n %_a% localhost >NUL
GOTO Loop
:EXIT0
Copy the program text below into a file and name the file getimage.bat. Download the netcat program nc.exe and place it in the same directory. Go to Start > Run , and type cmd.
from the dos prompt change to the directory you located the files in and run getimage.
You are on your own after this. I take no responsibility if you fill your drive with images from your camera or anything else.. lol.
Bottom line, this does work.
Good Luck!!
echo off
@cls
@Echo ----------------------------------------------------------
@Echo ! G E T I M A G E !
@Echo ! For the Hawking HNC230G !
@Echo ! !
@Echo ! USAGE: getimage [n] [d] !
@Echo ! !
@Echo ! options [n] [d] n - number of image files to get !
@Echo ! d - delay in seconds between files !
@Echo ! !
@Echo ! getimage n - produces image1.jpg, image2,jpg, etc.. !
@Echo ! ex. getimage 2 5 - produces 2 images 5 seconds apart !
@Echo ! !
@Echo ! !
@Echo ! This program requires nc.exe which may be downloaded at!
@Echo ! http://www.vulnwatch.org/netcat/ !
@Echo ! !
@Echo ! You must Change the ip-address in this program to the !
@Echo ! ip address of your camera before using it !
@Echo ! !
@Echo ! by: Dennis Lauzon !
@Echo ! ctrl-c to exit kd1ca@yahoo.com !
@Echo ----------------------------------------------------------
SET /a _a = 2
SET /a _number = 0
IF !%1 ==! GOTO EXIT0
IF !%2 ==! GOTO BEGIN
set /a _a = %2
:BEGIN
@Echo creating %1 images
GOTO Loop
:Loop
IF %1 == %_number% GOTO EXIT0
set /a _number=_number + 1
@Echo getting image%_number%.jpg
@echo 0110| nc -w 2 -n 192.168.1.105 4321>image%_number%.jpg
ping -n %_a% localhost >NUL
GOTO Loop
:EXIT0
- zoneminder
- Site Admin
- Posts: 5215
- Joined: Wed Jul 09, 2003 2:07 pm
- Location: Bristol, UK
- Contact:
I wrote same script that can demonize and use only one socket here: http://www.zoneminder.com/forums/viewto ... 0715#30715