<?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=Phatpaul</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=Phatpaul"/>
	<link rel="alternate" type="text/html" href="http://wiki.staging.zoneminder.com/Special:Contributions/Phatpaul"/>
	<updated>2026-04-20T03:05:19Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.37.1</generator>
	<entry>
		<id>http://wiki.staging.zoneminder.com/index.php?title=Canon&amp;diff=14897</id>
		<title>Canon</title>
		<link rel="alternate" type="text/html" href="http://wiki.staging.zoneminder.com/index.php?title=Canon&amp;diff=14897"/>
		<updated>2017-12-18T21:06:03Z</updated>

		<summary type="html">&lt;p&gt;Phatpaul: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Canon IP Cameras&lt;br /&gt;
&lt;br /&gt;
=Canon VB-C10 / VB-C10R=&lt;br /&gt;
This camera can serve single JPG or stream MJPEG.  I experienced lots of timeouts (blue images) when using JPG, so MJPEG is recommended.&lt;br /&gt;
&lt;br /&gt;
A JPG is retreived via:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
http://IPADDRESS/-wvhttp-01-/GetLiveImage&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The MJPG stream is here:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
http://IPADDRESS/-wvhttp-01-/GetOneShot?frame_count=0&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here the ZM configuration that&amp;#039;s working for me:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Maximum FPS (leave blank)&lt;br /&gt;
Remote Protocol	= HTTP&lt;br /&gt;
Remote Method	= Simple&lt;br /&gt;
Remote Host Name = (ip of camera)&lt;br /&gt;
Remote Host Port = 80&lt;br /&gt;
Remote Host Path = /-wvhttp-01-/GetOneShot?frame_count=0&lt;br /&gt;
Remote Image Colours = 24 bit colour&lt;br /&gt;
Capture Width (pixels) = 640&lt;br /&gt;
Capture Height (pixels)	= 480&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===PTZ functions:===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
http://IPADDRESS/-wvhttp-01-/CameraPosition?pan=-1000&amp;amp;tilt=-3000&amp;amp;zoom=4001&lt;br /&gt;
&lt;br /&gt;
(pan= -9200 to 9200) (tilt= 1001 to -9000) (zoom= 336 to 4304)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Reverse-engineering notes====&lt;br /&gt;
I had to do some reverse-engineering to find these strings.  I dumped the camera&amp;#039;s file-system via FTP and analyzed the file &amp;quot;bin/webview&amp;quot; with the strings utility.  That gave me clues as to what commands to try.  (some of the parameters listed below might be optional.)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
http://IPADDRESS/-wvhttp-01-/OpenCameraServer&lt;br /&gt;
(returns connection_id=0d39-06b2)&lt;br /&gt;
http://IPADDRESS/-wvhttp-01-/GetCameraControl?connection_id=0d39-06b2&lt;br /&gt;
http://IPADDRESS/-wvhttp-01-/GetCameraList&lt;br /&gt;
http://IPADDRESS/-wvhttp-01-/SelectCamera?connection_id=0d39-06b8&amp;amp;camera_id=camera_129&lt;br /&gt;
http://IPADDRESS/-wvhttp-01-/OperateCamera?connection_id=0d39-06b8&amp;amp;camera_id=camera_129&lt;br /&gt;
http://IPADDRESS/-wvhttp-01-/CameraPosition?connection_id=0d39-06ba&amp;amp;camera_id=camera_129&amp;amp;pan=0&lt;br /&gt;
http://IPADDRESS/-wvhttp-01-/CameraPosition?connection_id=0d39-06ba&amp;amp;camera_id=camera_129&amp;amp;tilt=-3500&lt;br /&gt;
http://IPADDRESS/-wvhttp-01-/CameraPosition?connection_id=0d39-06ba&amp;amp;camera_id=camera_129&amp;amp;zoom=4304&lt;br /&gt;
(pan= -9200 to 9200) (tilt= 1001 to -9000) (zoom= 336 to 4304)&lt;br /&gt;
http://IPADDRESS/-wvhttp-01-/GetClientList&lt;br /&gt;
http://IPADDRESS/-wvhttp-01-/CloseCameraServer?connection_id=0d39-06b8&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Some interesting parts of &amp;quot;strings bin/webview | less&amp;quot;:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-wvdoc-01-/&lt;br /&gt;
-wvhttp-&lt;br /&gt;
GetLiveImage&lt;br /&gt;
        GetNotice&lt;br /&gt;
OperateCamera&lt;br /&gt;
OperateCameraEx&lt;br /&gt;
OperateCameraOnScreen&lt;br /&gt;
SelectCamera&lt;br /&gt;
GetCameraControl&lt;br /&gt;
GetStillImage&lt;br /&gt;
GetOneShot&lt;br /&gt;
ExternalIO&lt;br /&gt;
OpenCameraServer&lt;br /&gt;
CloseCameraServer&lt;br /&gt;
ReleaseCameraControl&lt;br /&gt;
GetPanoramaImage&lt;br /&gt;
GetPanoramaInfo&lt;br /&gt;
GetPanoramaList&lt;br /&gt;
GetPresetList&lt;br /&gt;
GetCameraList&lt;br /&gt;
GetCameraPositionList&lt;br /&gt;
GetCameraServerList&lt;br /&gt;
GetCameraServerInfo&lt;br /&gt;
GetProtocolVersion&lt;br /&gt;
ExternalIOStatus&lt;br /&gt;
ExternalIOConfig&lt;br /&gt;
ExternalIOCaption&lt;br /&gt;
SetPTZSpeed&lt;br /&gt;
GetPTZSpeedInfo&lt;br /&gt;
GetCameraInfo&lt;br /&gt;
GetVideoInfo&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Phatpaul</name></author>
	</entry>
	<entry>
		<id>http://wiki.staging.zoneminder.com/index.php?title=Canon&amp;diff=14896</id>
		<title>Canon</title>
		<link rel="alternate" type="text/html" href="http://wiki.staging.zoneminder.com/index.php?title=Canon&amp;diff=14896"/>
		<updated>2017-12-18T20:57:03Z</updated>

		<summary type="html">&lt;p&gt;Phatpaul: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Canon IP Cameras&lt;br /&gt;
&lt;br /&gt;
=Canon VB-C10 / VB-C10R=&lt;br /&gt;
This camera can serve single JPG or stream MJPEG.  I experienced lots of timeouts (blue images) when using JPG, so MJPEG is recommended.&lt;br /&gt;
&lt;br /&gt;
A JPG is retreived via:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
http://IPADDRESS/-wvhttp-01-/GetLiveImage&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The MJPG stream is here:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
http://IPADDRESS/-wvhttp-01-/GetOneShot?frame_count=0&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here the ZM configuration that&amp;#039;s working for me:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Maximum FPS (leave blank)&lt;br /&gt;
Remote Protocol	= HTTP&lt;br /&gt;
Remote Method	= Simple&lt;br /&gt;
Remote Host Name = (ip of camera)&lt;br /&gt;
Remote Host Port = 80&lt;br /&gt;
Remote Host Path = /-wvhttp-01-/GetOneShot?frame_count=0&lt;br /&gt;
Remote Image Colours = 24 bit colour&lt;br /&gt;
Capture Width (pixels) = 640&lt;br /&gt;
Capture Height (pixels)	= 480&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
PTZ functions:&lt;br /&gt;
&lt;br /&gt;
I had to do some reverse-engineering to find these strings.  I dumped the camera&amp;#039;s file-system via FTP and analyzed the file &amp;quot;bin/webview&amp;quot; with the strings utility.  That gave me clues as to what commands to try.  (some of the parameters listed below might be optional.)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
http://IPADDRESS/-wvhttp-01-/OpenCameraServer&lt;br /&gt;
(returns connection_id=0d39-06b2)&lt;br /&gt;
http://IPADDRESS/-wvhttp-01-/GetCameraControl?connection_id=0d39-06b2&lt;br /&gt;
http://IPADDRESS/-wvhttp-01-/GetCameraList&lt;br /&gt;
http://IPADDRESS/-wvhttp-01-/SelectCamera?connection_id=0d39-06b8&amp;amp;camera_id=camera_129&lt;br /&gt;
http://IPADDRESS/-wvhttp-01-/OperateCamera?connection_id=0d39-06b8&amp;amp;camera_id=camera_129&lt;br /&gt;
http://IPADDRESS/-wvhttp-01-/CameraPosition?connection_id=0d39-06ba&amp;amp;camera_id=camera_129&amp;amp;pan=0&lt;br /&gt;
http://IPADDRESS/-wvhttp-01-/CameraPosition?connection_id=0d39-06ba&amp;amp;camera_id=camera_129&amp;amp;tilt=-3500&lt;br /&gt;
http://IPADDRESS/-wvhttp-01-/CameraPosition?connection_id=0d39-06ba&amp;amp;camera_id=camera_129&amp;amp;zoom=4304&lt;br /&gt;
(pan= -9200 to 9200) (tilt= 1001 to -9000) (zoom= 336 to 4304)&lt;br /&gt;
http://IPADDRESS/-wvhttp-01-/GetClientList&lt;br /&gt;
http://IPADDRESS/-wvhttp-01-/CloseCameraServer?connection_id=0d39-06b8&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Phatpaul</name></author>
	</entry>
	<entry>
		<id>http://wiki.staging.zoneminder.com/index.php?title=Canon&amp;diff=5651</id>
		<title>Canon</title>
		<link rel="alternate" type="text/html" href="http://wiki.staging.zoneminder.com/index.php?title=Canon&amp;diff=5651"/>
		<updated>2013-02-17T00:04:30Z</updated>

		<summary type="html">&lt;p&gt;Phatpaul: Created page with &amp;quot;Canon IP Cameras  =Canon VB-C10 / VB-C10R= This camera can serve single JPG o stream MJPEG.  I experienced lots of timeouts (blue images) when using JPG, so MJPEG is recommend...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Canon IP Cameras&lt;br /&gt;
&lt;br /&gt;
=Canon VB-C10 / VB-C10R=&lt;br /&gt;
This camera can serve single JPG o stream MJPEG.  I experienced lots of timeouts (blue images) when using JPG, so MJPEG is recommended.&lt;br /&gt;
&lt;br /&gt;
A JPG is retreived via:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
http://IPADDRESS/-wvhttp-01-/GetLiveImage&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The MJPG stream is here:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
http://IPADDRESS/-wvhttp-01-/GetOneShot?frame_count=0&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here the ZM configuration that&amp;#039;s working for me:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Maximum FPS (leave blank)&lt;br /&gt;
Remote Protocol	= HTTP&lt;br /&gt;
Remote Method	= Simple&lt;br /&gt;
Remote Host Name = (ip of camera)&lt;br /&gt;
Remote Host Port = 80&lt;br /&gt;
Remote Host Path = /-wvhttp-01-/GetOneShot?frame_count=0&lt;br /&gt;
Remote Image Colours = 24 bit colour&lt;br /&gt;
Capture Width (pixels) = 640&lt;br /&gt;
Capture Height (pixels)	= 480&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I&amp;#039;m working on the PTZ functions now...&lt;/div&gt;</summary>
		<author><name>Phatpaul</name></author>
	</entry>
	<entry>
		<id>http://wiki.staging.zoneminder.com/index.php?title=Hardware_Compatibility_List&amp;diff=5650</id>
		<title>Hardware Compatibility List</title>
		<link rel="alternate" type="text/html" href="http://wiki.staging.zoneminder.com/index.php?title=Hardware_Compatibility_List&amp;diff=5650"/>
		<updated>2013-02-16T23:50:53Z</updated>

		<summary type="html">&lt;p&gt;Phatpaul: /* Network Cameras */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Zoneminder will work with almost any capture card that is supported by the linux kernel.  You may find additional details about supported hardware in the [http://www.zoneminder.com/forums/viewforum.php?f=10  Hardware Compatibility List] part of the forums.  Also if you find something in the forums that is  missing from the wiki ADD IT.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Capture Cards ==&lt;br /&gt;
&lt;br /&gt;
[[Anykeeper]] &lt;br /&gt;
&lt;br /&gt;
[[Avermedia]]&lt;br /&gt;
&lt;br /&gt;
[[Camsecure PCI Express video capture]]&lt;br /&gt;
&lt;br /&gt;
[[Digiflower]]&lt;br /&gt;
&lt;br /&gt;
[[Geovision GV250 - bt878a chip]]&lt;br /&gt;
&lt;br /&gt;
[[Grandtec Grand X Guard]] &lt;br /&gt;
&lt;br /&gt;
[[Hauppauge]]&lt;br /&gt;
&lt;br /&gt;
[[Ituner Spectra 8]]&lt;br /&gt;
&lt;br /&gt;
[[Kodicom 4400r]]&lt;br /&gt;
&lt;br /&gt;
[[Kodicom 8800]]&lt;br /&gt;
&lt;br /&gt;
[[Tungson TE-8008]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Leadtek WinFast VC 100 - the cheapest bt878 model with no tuner on it, just Com/Svideo in.&lt;br /&gt;
&lt;br /&gt;
[[LinkDelight CCTV H.264 4CH DVR Card]]&lt;br /&gt;
&lt;br /&gt;
[[Linux Media Labs LMLBT44]] &lt;br /&gt;
&lt;br /&gt;
[[Osprey 100]]&lt;br /&gt;
&lt;br /&gt;
[[Provideo PV- series (Bluecherry)]] &lt;br /&gt;
[[ Bluecherry - BC-H16480A]] &lt;br /&gt;
[[TView 95/99]]&lt;br /&gt;
&lt;br /&gt;
[[Videocards with Philips saa7134 chipset]]&lt;br /&gt;
&lt;br /&gt;
[[WinFast TV2000 XP]]&lt;br /&gt;
&lt;br /&gt;
[[Rapid OS]]&lt;br /&gt;
&lt;br /&gt;
== bt8x8 Cards ==&lt;br /&gt;
A note on the bt8x8-based TV-tuner cards: these usually have beside the tuner input, also a Composite and an S-Video input. You can hook up 2 analog cameras to these, and access from ZoneMinder both of them as individual cameras, at max 15Fps. You don&amp;#039;t need two separate TV cards for two cameras!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Pico2000]] - 4 port card, one chip bt878, around 2 fps when using all channels&lt;br /&gt;
&lt;br /&gt;
[[Bt878_4chip_8inputs]] -4 chips bt878, 8 inputs, around 5 fps when using 2 inputs per chip&lt;br /&gt;
&lt;br /&gt;
[[:Image:Karta.jpg| bt878 8 chip 8 input]] - This card is supplied with D-sub to 8 BNC connector and uses the bt878 chip for each input allowing full frame rates and quality. See [[Kodicom 8800]] for more information.&lt;br /&gt;
&lt;br /&gt;
Geovision GV250 bt878a single chip 4 inputs - This capture Card is supplied with 4 video inputs but with NO audio channel&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Most other BTTV (bt878, bt848) cards, see /usr/src/linux/Documentation/video4linux/bttv/CARDLIST on your system for a list of some of them.&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
== Analog Cameras ==&lt;br /&gt;
&lt;br /&gt;
Any regular composite or S-video camera connected via a supported capture card.  Some analog cameras feature camera control - ZM supports several of these camera&amp;#039;s Pan/Tilt/Zoom functions via serial port control, as well as camera Presets, Focus, Iris, etc.&lt;br /&gt;
*[[PicturetelControlScript | PictureTel PTZ2N]].&lt;br /&gt;
&lt;br /&gt;
== Network Cameras ==&lt;br /&gt;
For Network Cams to work they need to be able to stream MJPEG without the requirement of activex controls. If you see the requirement for the camera calls for IE then there is a good chance it may not work. The other option is to grab JPEG images if the camera supports that option which will work but at a lower frame rate.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Any network camera that allows access to single JPEG image grabs or &amp;#039;&amp;#039;&amp;#039;some but not all&amp;#039;&amp;#039;&amp;#039; multi-part JPEG feeds.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Full Compatibility &amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
* [[7Links]](TM Trade Mark)&lt;br /&gt;
&lt;br /&gt;
* [[A-mtk]]&lt;br /&gt;
&lt;br /&gt;
* [[Abus]]  some&lt;br /&gt;
&lt;br /&gt;
* [[Airlink 101]] some &lt;br /&gt;
&lt;br /&gt;
* [http://job-des-criptions.com/ job description]&lt;br /&gt;
&lt;br /&gt;
* [[Apexis]] (APM-J011-WS, APM-J012-WS, possibly others) &lt;br /&gt;
&lt;br /&gt;
* [[ArecontVision]] (AV3130M, probably other too)&lt;br /&gt;
&lt;br /&gt;
* [[Astak Mole]] Some&lt;br /&gt;
&lt;br /&gt;
* [[Axis]] All&lt;br /&gt;
&lt;br /&gt;
* [[Brickcom]] These have been tested&lt;br /&gt;
&lt;br /&gt;
* [[BSTI]] Some&lt;br /&gt;
&lt;br /&gt;
* [[Canon]] Some&lt;br /&gt;
&lt;br /&gt;
* [[Cisco]] some&lt;br /&gt;
&lt;br /&gt;
* [[D-Link]] Most&lt;br /&gt;
&lt;br /&gt;
* [[Foscam]] (FI8908W, FI8904W, possibly others)&lt;br /&gt;
&lt;br /&gt;
* [[Gadspot]] Most&lt;br /&gt;
&lt;br /&gt;
* [[Generic]] Only tested one &lt;br /&gt;
&lt;br /&gt;
* [[Geovision]] (GV-FE420, possibly others)&lt;br /&gt;
&lt;br /&gt;
* [[hootoo]] Some&lt;br /&gt;
&lt;br /&gt;
* [[Iguard]] IP390E&lt;br /&gt;
&lt;br /&gt;
* [[Instar]] (IN-2905, possibly others)&lt;br /&gt;
&lt;br /&gt;
* [[Level One]] some&lt;br /&gt;
&lt;br /&gt;
* [[Linksys]] WVC-210 / WVC2300 / PVC2300 / WVC54GC&lt;br /&gt;
&lt;br /&gt;
* [[Loftek]] Sentinel PTZ&lt;br /&gt;
&lt;br /&gt;
* [[Maygion]] (IP-603, IP-604, possibly others)&lt;br /&gt;
&lt;br /&gt;
* [[Rimax]] Some&lt;br /&gt;
&lt;br /&gt;
* [[Rovio]]&lt;br /&gt;
&lt;br /&gt;
* [[Sony]] Most&lt;br /&gt;
&lt;br /&gt;
* [[TP-LINK]] Some&lt;br /&gt;
&lt;br /&gt;
* [[Trendnet]] Most&lt;br /&gt;
&lt;br /&gt;
* [[Wanscam]] FR4020A2 (Foscam clone)&lt;br /&gt;
&lt;br /&gt;
* [[x-vision]] Xvision cameras by y3k&lt;br /&gt;
&lt;br /&gt;
* [[Y-Cam]] (Sharx Ip) Most&lt;br /&gt;
&lt;br /&gt;
* [[Zavio]] Some&lt;br /&gt;
&lt;br /&gt;
* [[Zecumate]] JPT3815W&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Remote systems, themselves running zoneminder, can be accessed as cameras using the Remote Path of &amp;#039;&amp;#039;&amp;#039;/cgi-bin/nph-zms?mode=single&amp;amp;monitor=1&amp;amp;scale=100&amp;amp;maxfps=5&amp;amp;buffer=1000&amp;#039;&amp;#039;&amp;#039; - where the monitor number is the correct camera on the remote system.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Single Jpeg Only&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
* [[Airlink 101]] some&lt;br /&gt;
&lt;br /&gt;
* [[JVC]] some&lt;br /&gt;
&lt;br /&gt;
* [[Panasonic]] some&lt;br /&gt;
&lt;br /&gt;
* PLANET some&lt;br /&gt;
&lt;br /&gt;
*[[Toshiba]] some&lt;br /&gt;
&lt;br /&gt;
* [[Veo Observer IP NetCam]] most&lt;br /&gt;
&lt;br /&gt;
*[[Vivotek]] All&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Mpeg(ver1.24.0 and up)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
*[[ABS_MegaCam]]&lt;br /&gt;
&lt;br /&gt;
* [[Axis]] All&lt;br /&gt;
&lt;br /&gt;
* [[ ACTi]] All&lt;br /&gt;
&lt;br /&gt;
*[[Vivotek]] Most&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Compatible with modifications&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
*[[Aviosys]] some&lt;br /&gt;
&lt;br /&gt;
* [[Mobotix]]  all  &lt;br /&gt;
&lt;br /&gt;
*[[Edimax]] some&lt;br /&gt;
&lt;br /&gt;
* [[Conceptronic]]  some&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Compatible with problems&amp;#039;&amp;#039;&amp;#039; &lt;br /&gt;
&lt;br /&gt;
* [[Compro]] IP70. MPEG4 only, some reliability issues and general poor firmware quality.&lt;br /&gt;
&lt;br /&gt;
* [[Grandtec]] [[Grandtec_WLAN_Camera|WLAN Camera]] WiFi or III - acceptable indoor quality, no infrared-filter (better nightvision) cheap!&lt;br /&gt;
&lt;br /&gt;
* [[Intellinet]]  IPCamera with the new firmware.&lt;br /&gt;
&lt;br /&gt;
* Old Intellinet IPCamera (model MWNC-100) with this (http://www.zoneminder.com/forums/viewtopic.php?t=7500) protocol adapter. &lt;br /&gt;
&lt;br /&gt;
* OvisLink AirLive WL-5400CAM&lt;br /&gt;
&lt;br /&gt;
Useful link: Flash&amp;#039;s IP Camera Database, with Zoneminder compatibility guide:   http://digdilem.org/cameras [http://job-des-criptions.com/sales-associate-job-description.htm sales associate job description]&lt;br /&gt;
&lt;br /&gt;
== Network Digitizers ==&lt;br /&gt;
&lt;br /&gt;
Like Network Cameras, these devices produce a video stream - but they accept an analog video input from a camera or other video source.&lt;br /&gt;
&lt;br /&gt;
* [[Synectics E100]] encoder&lt;br /&gt;
*The [[IP9100 | Aviosys IP9100, Models A, B and Plus]] has four analog video inputs.  It produces a ZM compatible video stream from one of the inputs, which is selectable via an HTTP GET command.  There might even be a control script for ZM that lets you select the active video input using &amp;#039;&amp;#039;ZM&amp;#039;s Camera Control Presets!&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
With the yoics Aviosys 9100 firmware at http://www.yoics.com/?p=28, ZoneMinder can directly access all four ports via /usr/yoicsX.jpg as the remote host path, where X is 0 - 3.&lt;br /&gt;
&lt;br /&gt;
== USB Cameras ==&lt;br /&gt;
&lt;br /&gt;
*Just Zoom USB cam&lt;br /&gt;
&lt;br /&gt;
*Creative Webcam Pro, Webcam 3, LIVE! Cam OPTIA PRO (V4L2, Chan 0, PAL, YUYV)&lt;br /&gt;
&lt;br /&gt;
*&amp;#039;&amp;#039;Most&amp;#039;&amp;#039; UVCvideo cameras, including: [[Logitech QuickCam Express]], QuickCam Pro 3000, [[QuickCam Pro 4000]],  QuickCam Communicate STX/Deluxe, [[Logitech Webcam Pro 9000]], and [[Webcam C250]]&lt;br /&gt;
&lt;br /&gt;
*Logitech Quickcam Orbit/Sphere (experimental basic pan/tilt control has also published for testing and hacking [http://www.zoneminder.com/forums/viewtopic.php?t=9788])&lt;br /&gt;
&lt;br /&gt;
*[[Philips]] &lt;br /&gt;
&lt;br /&gt;
*Any OV511 based USB camera [http://alpha.dyndns.org/ov511/cameras.html]&lt;br /&gt;
&lt;br /&gt;
*Any CPIA based USB camera [http://webcam.sourceforge.net]&lt;br /&gt;
&lt;br /&gt;
*[[LabTec WebCam Pro]]&lt;br /&gt;
&lt;br /&gt;
*Confirmed basic functionality with Microsoft Lifecam VX 5000 using UVC Streaming method&lt;br /&gt;
&lt;br /&gt;
Note that most USB cameras that can use Video4Linux/V4L2, and so can be used by ZoneMinder.  Some have older chipsets and can be hard to find new.&lt;br /&gt;
&lt;br /&gt;
Note that PWC drivers are not included in the kernel. Some distribution&amp;#039;s add them in and other may not. Here are some relevant links:&lt;br /&gt;
* [http://www.smcc.demon.nl/webcam/ Old Maintainer]&lt;br /&gt;
* [http://www.saillard.org/linux/pwc/ Current PWC Maintainer]&lt;br /&gt;
&lt;br /&gt;
== X10 Devices ==&lt;br /&gt;
The only device that really needs to be compatable with ZM is the Transceiver, all other x10 devices comunicate through that device.&lt;br /&gt;
*[[CM11]] Bi-Directional Transceiver&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Other X10 notes:&lt;br /&gt;
&lt;br /&gt;
[http://www.zoneminder.com/forums/viewtopic.php?t=6423&amp;amp;highlight=x10 Topic 6423]&lt;br /&gt;
&lt;br /&gt;
[http://www.zoneminder.com/forums/viewtopic.php?t=7082&amp;amp;highlight=x10 Topic 7082]&lt;br /&gt;
&lt;br /&gt;
== All other hardware as supported by Linux ==&lt;br /&gt;
To find out if your hardware is supported, check the HCL [http://www.mpsmsc.com/recruitment-indonesia.html MSC Recruitment Indonesia]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [http://www.mpsmsc.com/crewing-indonesia.html MSC Crewing Indonesia]&lt;br /&gt;
* [http://www.doxapest.co.id/index.php/pest-control-dan-anti-rayap Pest Control] &lt;br /&gt;
* [http://www.tokobungasabana.com Toko Bunga Online]&lt;br /&gt;
&lt;br /&gt;
== Plug Computers ==&lt;br /&gt;
Guruplug Server Plus -&amp;gt; How to install Zoneminder on it -&amp;gt; [http://plugcomputer.org/plugwiki/index.php/ZoneMinder PlugComputer Wiki Zoneminder Howto]&lt;/div&gt;</summary>
		<author><name>Phatpaul</name></author>
	</entry>
</feed>