<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.staging.zoneminder.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Scobo</id>
	<title>ZoneMinder Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.staging.zoneminder.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Scobo"/>
	<link rel="alternate" type="text/html" href="http://wiki.staging.zoneminder.com/Special:Contributions/Scobo"/>
	<updated>2026-04-20T02:38:16Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.37.1</generator>
	<entry>
		<id>http://wiki.staging.zoneminder.com/index.php?title=Edimax&amp;diff=7224</id>
		<title>Edimax</title>
		<link rel="alternate" type="text/html" href="http://wiki.staging.zoneminder.com/index.php?title=Edimax&amp;diff=7224"/>
		<updated>2015-12-10T10:16:46Z</updated>

		<summary type="html">&lt;p&gt;Scobo: /* Edimax IC-3140W (LAN, WiFi, 720p, Nightvision, manual focus) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Edimax IC3116W (WiFi IP Camera 720p) ==&lt;br /&gt;
[[File:1027659_LB_00_FB.EPS_1000.jpg|200px|thumb|right|Edimax IC3116W]]&lt;br /&gt;
I wasn&amp;#039;t able to get it working with H.264 (the camera is dropping half of the images every few minutes -&amp;gt; Motion alert). However, it works fine with MJPEG.&lt;br /&gt;
Overall, I have to say that the image is not too great and IR illumination is weak (compared to other cameras).&lt;br /&gt;
&lt;br /&gt;
Source Type: Ffmpeg&amp;lt;br/&amp;gt;&lt;br /&gt;
Source Path: rtsp://XXX.XXX.XXX.XXX:554/ipcam_mjpeg.sdp?tcp&amp;lt;br/&amp;gt;&lt;br /&gt;
Target Colorspace: 24 bit&amp;lt;br/&amp;gt;&lt;br /&gt;
Capture Width: 640&amp;lt;br/&amp;gt;&lt;br /&gt;
Capture Height: 480&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Edimax IC3110P/W (LAN/(WiFi) IP Camera 1,3MP, PoE, Nightvision) ==&lt;br /&gt;
[[File:IC-3110P 01.png|200px|thumb|right|Edimax IC3110P]]&lt;br /&gt;
Same problem as with the IC3116W when using H.264. Works fine with MJPEG.&lt;br /&gt;
Image quality is nice - absolutely no complains, worth the price (abt 85 Euros in Germany).&lt;br /&gt;
&lt;br /&gt;
Source Type: Ffmpeg&amp;lt;br/&amp;gt;&lt;br /&gt;
Source Path: http://XXX.XXX.XXX.XXX/mjpg/video.mjpg&amp;lt;br/&amp;gt;&lt;br /&gt;
Target Colorspace: 24 bit&amp;lt;br/&amp;gt;&lt;br /&gt;
Capture Width: 1280&amp;lt;br/&amp;gt;&lt;br /&gt;
Capture Height: 1024&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: I have not tested the WiFi-Version but according to the manual they are identical (except for the WiFi connectivity, of course).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Edimax IC-3140W (LAN, WiFi, 720p, Nightvision, manual focus) ==&lt;br /&gt;
Works fine with H264 and RTSP-stream. Image quality is nice, night vision quality is really great! Price is about 95,- EUR incl. tax in Germany.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Working configuration in ZoneMinder 1.28.1:&amp;#039;&amp;#039;&amp;#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Source Type: Remote&amp;lt;br/&amp;gt;&lt;br /&gt;
Source Protocol: RTSP&amp;lt;br/&amp;gt;&lt;br /&gt;
Remote Method: RTP/RTSP&amp;lt;br/&amp;gt;&lt;br /&gt;
Remote Host Name: USER:PASSWORD@XXX.XXX.XXX.XXX (if you choose to set up a user / password in the camera&amp;#039;s user menu) &amp;lt;br/&amp;gt;&lt;br /&gt;
Remote Host Port: 554&amp;lt;br/&amp;gt;&lt;br /&gt;
Remote Host Path: ipcam_h264.sdp&amp;lt;br/&amp;gt;&lt;br /&gt;
Target Colorspace: 24 bit&amp;lt;br/&amp;gt;&lt;br /&gt;
Capture Width: 1280&amp;lt;br/&amp;gt;&lt;br /&gt;
Capture Height: 720&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Edimax IC1500 ==&lt;br /&gt;
The edimax IC 1500 delivers a strange form of motion jpeg with a little help from a little script on your webserver&lt;br /&gt;
you should be able to view the motion jpeg stream in zoneminder:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
function handlejpeg($jpeg) {&lt;br /&gt;
  if(strlen($jpeg)) {&lt;br /&gt;
    echo &amp;quot;--video boundary--\r\n&amp;quot;;&lt;br /&gt;
    echo &amp;quot;Content-length: &amp;quot;.strlen($jpeg).&amp;quot;\r\n&amp;quot;;&lt;br /&gt;
    echo &amp;quot;Content-type: image/jpeg\r\n&amp;quot;;&lt;br /&gt;
    echo &amp;quot;\r\n&amp;quot;;&lt;br /&gt;
    echo &amp;quot;$jpeg&amp;quot;.&amp;quot;\r\n\r\n&amp;quot;;&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
  @ini_set(&amp;#039;zlib.output_compression&amp;#039;, 0);&lt;br /&gt;
  @ini_set(&amp;#039;implicit_flush&amp;#039;, 1);&lt;br /&gt;
  header(&amp;#039;Content-Type: multipart/x-mixed-replace;boundary=--video boundary--&amp;#039;);&lt;br /&gt;
  $handle = fopen(&amp;quot;http://admin:1234@&amp;lt;YOURHOST&amp;gt;/snapshot.cgi&amp;quot;, &amp;quot;rb&amp;quot;);	&lt;br /&gt;
  $cl=0;&lt;br /&gt;
  $jpeg=NULL;&lt;br /&gt;
  if ($handle) {&lt;br /&gt;
    while (!feof($handle)) {&lt;br /&gt;
        $buffer = fgets($handle, 4096);&lt;br /&gt;
        if(trim($buffer)==&amp;quot;--myboundary&amp;quot;) {&lt;br /&gt;
           $CT=fgets($handle, 4096);&lt;br /&gt;
           $CL=fgets($handle, 4096);&lt;br /&gt;
           $crap=fgets($handle, 4096);&lt;br /&gt;
           $cl=preg_replace(&amp;quot;/Content-Length: /&amp;quot;,&amp;#039;&amp;#039;,trim($CL));&lt;br /&gt;
           handlejpeg($jpeg,$i);&lt;br /&gt;
           $jpeg=NULL;&lt;br /&gt;
           for($j=0;$j&amp;lt;$cl;$j++) {&lt;br /&gt;
             $jpeg.=fgetc($handle);&lt;br /&gt;
           }&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
    fclose($handle);&lt;br /&gt;
}&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
http://www.zoneminder.com/forums/viewtopic.php?t=13587&amp;amp;highlight=cameras&lt;/div&gt;</summary>
		<author><name>Scobo</name></author>
	</entry>
	<entry>
		<id>http://wiki.staging.zoneminder.com/index.php?title=Edimax&amp;diff=7223</id>
		<title>Edimax</title>
		<link rel="alternate" type="text/html" href="http://wiki.staging.zoneminder.com/index.php?title=Edimax&amp;diff=7223"/>
		<updated>2015-12-10T10:16:10Z</updated>

		<summary type="html">&lt;p&gt;Scobo: added configuration for Edimax IC-3140W&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Edimax IC3116W (WiFi IP Camera 720p) ==&lt;br /&gt;
[[File:1027659_LB_00_FB.EPS_1000.jpg|200px|thumb|right|Edimax IC3116W]]&lt;br /&gt;
I wasn&amp;#039;t able to get it working with H.264 (the camera is dropping half of the images every few minutes -&amp;gt; Motion alert). However, it works fine with MJPEG.&lt;br /&gt;
Overall, I have to say that the image is not too great and IR illumination is weak (compared to other cameras).&lt;br /&gt;
&lt;br /&gt;
Source Type: Ffmpeg&amp;lt;br/&amp;gt;&lt;br /&gt;
Source Path: rtsp://XXX.XXX.XXX.XXX:554/ipcam_mjpeg.sdp?tcp&amp;lt;br/&amp;gt;&lt;br /&gt;
Target Colorspace: 24 bit&amp;lt;br/&amp;gt;&lt;br /&gt;
Capture Width: 640&amp;lt;br/&amp;gt;&lt;br /&gt;
Capture Height: 480&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Edimax IC3110P/W (LAN/(WiFi) IP Camera 1,3MP, PoE, Nightvision) ==&lt;br /&gt;
[[File:IC-3110P 01.png|200px|thumb|right|Edimax IC3110P]]&lt;br /&gt;
Same problem as with the IC3116W when using H.264. Works fine with MJPEG.&lt;br /&gt;
Image quality is nice - absolutely no complains, worth the price (abt 85 Euros in Germany).&lt;br /&gt;
&lt;br /&gt;
Source Type: Ffmpeg&amp;lt;br/&amp;gt;&lt;br /&gt;
Source Path: http://XXX.XXX.XXX.XXX/mjpg/video.mjpg&amp;lt;br/&amp;gt;&lt;br /&gt;
Target Colorspace: 24 bit&amp;lt;br/&amp;gt;&lt;br /&gt;
Capture Width: 1280&amp;lt;br/&amp;gt;&lt;br /&gt;
Capture Height: 1024&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: I have not tested the WiFi-Version but according to the manual they are identical (except for the WiFi connectivity, of course).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Edimax IC-3140W (LAN, WiFi, 720p, Nightvision, manual focus) ==&lt;br /&gt;
Works fine with H264 and RTSP-stream. Image quality is nice, night vision quality is really great! Price is about 95,- EUR incl. tax in Germany.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Working configuration in ZoneMinder 1.28.1:&amp;#039;&amp;#039;&amp;#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Source Type: Remote&amp;lt;br/&amp;gt;&lt;br /&gt;
Source Protocol: RTSP&amp;lt;br/&amp;gt;&lt;br /&gt;
Remote Method: RTP/RTSP&amp;lt;br/&amp;gt;&lt;br /&gt;
Remote Host Name: USER:PASSWORD@XXX.XXX.XXX.XXX (if you choose to set up a user / password in the camera&amp;#039;s user menu) &amp;lt;br/&amp;gt;&lt;br /&gt;
Remote Host Port: 554&amp;lt;br/&amp;gt;&lt;br /&gt;
Remote Host Path: ipcam_h264.sdp&lt;br /&gt;
Target Colorspace: 24 bit&amp;lt;br/&amp;gt;&lt;br /&gt;
Capture Width: 1280&amp;lt;br/&amp;gt;&lt;br /&gt;
Capture Height: 720&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Edimax IC1500 ==&lt;br /&gt;
The edimax IC 1500 delivers a strange form of motion jpeg with a little help from a little script on your webserver&lt;br /&gt;
you should be able to view the motion jpeg stream in zoneminder:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
function handlejpeg($jpeg) {&lt;br /&gt;
  if(strlen($jpeg)) {&lt;br /&gt;
    echo &amp;quot;--video boundary--\r\n&amp;quot;;&lt;br /&gt;
    echo &amp;quot;Content-length: &amp;quot;.strlen($jpeg).&amp;quot;\r\n&amp;quot;;&lt;br /&gt;
    echo &amp;quot;Content-type: image/jpeg\r\n&amp;quot;;&lt;br /&gt;
    echo &amp;quot;\r\n&amp;quot;;&lt;br /&gt;
    echo &amp;quot;$jpeg&amp;quot;.&amp;quot;\r\n\r\n&amp;quot;;&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
  @ini_set(&amp;#039;zlib.output_compression&amp;#039;, 0);&lt;br /&gt;
  @ini_set(&amp;#039;implicit_flush&amp;#039;, 1);&lt;br /&gt;
  header(&amp;#039;Content-Type: multipart/x-mixed-replace;boundary=--video boundary--&amp;#039;);&lt;br /&gt;
  $handle = fopen(&amp;quot;http://admin:1234@&amp;lt;YOURHOST&amp;gt;/snapshot.cgi&amp;quot;, &amp;quot;rb&amp;quot;);	&lt;br /&gt;
  $cl=0;&lt;br /&gt;
  $jpeg=NULL;&lt;br /&gt;
  if ($handle) {&lt;br /&gt;
    while (!feof($handle)) {&lt;br /&gt;
        $buffer = fgets($handle, 4096);&lt;br /&gt;
        if(trim($buffer)==&amp;quot;--myboundary&amp;quot;) {&lt;br /&gt;
           $CT=fgets($handle, 4096);&lt;br /&gt;
           $CL=fgets($handle, 4096);&lt;br /&gt;
           $crap=fgets($handle, 4096);&lt;br /&gt;
           $cl=preg_replace(&amp;quot;/Content-Length: /&amp;quot;,&amp;#039;&amp;#039;,trim($CL));&lt;br /&gt;
           handlejpeg($jpeg,$i);&lt;br /&gt;
           $jpeg=NULL;&lt;br /&gt;
           for($j=0;$j&amp;lt;$cl;$j++) {&lt;br /&gt;
             $jpeg.=fgetc($handle);&lt;br /&gt;
           }&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
    fclose($handle);&lt;br /&gt;
}&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
http://www.zoneminder.com/forums/viewtopic.php?t=13587&amp;amp;highlight=cameras&lt;/div&gt;</summary>
		<author><name>Scobo</name></author>
	</entry>
</feed>