Search found 4 matches
- Mon May 12, 2008 9:50 pm
- Forum: Hardware Queries
- Topic: Zoneminder and Trendnet TV-IP110
- Replies: 20
- Views: 40549
Re: Trendnet TV-IP110W
OK, I replaced the original code: if ( format == JPEG && buffer.Size() >= 2 ) { if ( buffer[0] != 0xff || buffer[1] != 0xd8 ) { Error(( "Found bogus jpeg header '%02x%02x'", buffer[0], buffer[1] )); return( -1 ); } } with the modified version: if ( format == JPEG && buffer.Size() >= 2 ) { if ...
- Sun May 11, 2008 7:21 am
- Forum: Hardware Queries
- Topic: Zoneminder and Trendnet TV-IP110
- Replies: 20
- Views: 40549
Re: Trendnet TV-IP110W
Please, take a look at my post: http://www.zoneminder.com/forums/viewtopic.php?t=11649 I checked your camera, I guess Micronet SP5511W and Trendnet IP110W are identical models. Their shapes and specifications are the same, you can check this web page: http://trendnet.com/products/proddetail.asp ...
- Sun May 11, 2008 7:04 am
- Forum: Hardware Queries
- Topic: Zoneminder and Trendnet TV-IP110
- Replies: 20
- Views: 40549
Re: Trendnet TV-IP110W
Even I have a different model, the URL seems to be very similar and probably they use the same software in the camera. Could you please copy-paste result of: wget -S http://<CAMERA>/cgi/mjpg/mjpeg.cgi -user=admin -password=pass Here is the result of wget: wget -S http://192.168.1.30/cgi/mjpg/mjpeg ...
- Fri May 09, 2008 5:22 pm
- Forum: Hardware Queries
- Topic: Zoneminder and Trendnet TV-IP110
- Replies: 20
- Views: 40549
Trendnet TV-IP110W
I have been trying to use TV-IP110W in ZoneMinder. According to its CGI command manual (send by Trendnet customer support), mjpeg stream is available at: http://192.168.1.30/cgi/mjpg/mjpeg.cgi When I entered the path above in ZM, I could not see the video. I tried to add username and password in the ...