Änderungen

Zur Navigation springen Zur Suche springen
Keine Änderung der Größe ,  18:14, 11. Mär. 2007
keine Bearbeitungszusammenfassung
Zeile 1: Zeile 1:  
{{TOCRight}}
 
{{TOCRight}}
    +
== Driver ==
 
es gibt mittlerweile 4 Webcam-Driver von openwrt
 
es gibt mittlerweile 4 Webcam-Driver von openwrt
   −
== spca5xx/spca5xx_LE - Driver ==
+
=== spca5xx/spca5xx_LE ===
 
* Installation:
 
* Installation:
 
:Welches Driver-modul ihr braucht kommt auf Eure Kamera an --> [http://mxhaard.free.fr/spca5xx.html Uebersicht]
 
:Welches Driver-modul ihr braucht kommt auf Eure Kamera an --> [http://mxhaard.free.fr/spca5xx.html Uebersicht]
Zeile 103: Zeile 104:  
also Driver gefunden, Webcam erkannt. Und das mit der Aldi-Cam super!
 
also Driver gefunden, Webcam erkannt. Und das mit der Aldi-Cam super!
   −
{| {{Prettytable}}
+
 
!Programm '''spcacat'''
+
=== pwc/pwcx ===
!Programm '''motion'''
+
 
|-
+
<pre>
|
+
ipkg install http://141.54.160.25/dave/philips-webcam_0.2_mipsel.ipk
 +
</pre>
 +
 
 +
es wird automatisch ein startscript '''/etc/init.d/S90webcam''' angelegt.
 +
 
 +
<pre>
 +
cd /etc/init.d/
 +
vi S90webcam
 +
</pre>
 +
 
 +
<pre>
 +
#!/bin/sh
 +
 
 +
# unload drivers in case the were loaded
 +
killall camsrv; rmmod pwcx; rmmod pwc; rmmod videodev
 +
 
 +
# load webcam driver modules (it can be assumed that the USB drivers are compiled into the kernel or were installed & autoloaded)
 +
insmod videodev || exit 1
 +
insmod pwc || exit 2
 +
insmod pwcx || exit 3
 +
 
 +
sleep 1
 +
 
 +
# check if video device was allocated
 +
if [ ! -e /dev/v4l/video0 ]; then exit 4; fi
 +
 
 +
# motion starten
 +
motion
 +
</pre>
 +
 
 +
* Projektseiten:
 +
** [http://www.saillard.org/linux/pwc/ http://www.saillard.org/linux/pwc/]
 +
** [http://www.smcc.demon.nl/webcam/ http://www.smcc.demon.nl/webcam/]
 +
 
 +
=== ov511 ===
 +
<pre>
 +
ipkg install http://141.54.160.25/dave/ov511_0.1_mipsel.ipk
 +
</pre>
 +
* Projektseite:
 +
** [http://ovcam.org/ov511/ http://ovcam.org/ov511/]
 +
 
 +
=== Quickcam Messenger ===
 +
<pre>
 +
ipkg install http://141.54.160.25/dave/qc-usb-messenger-1.6_0.1_mipsel.ipk
 +
</pre>
 +
* Projektseite:
 +
** [http://home.mag.cx/messenger/ http://home.mag.cx/messenger/]
 +
 
 +
== Programme ==
 +
 
 +
 
 +
 
 +
=== SpcaCat ===
 
Installation:
 
Installation:
 
<pre>
 
<pre>
Zeile 117: Zeile 170:  
chmod +x spcacat
 
chmod +x spcacat
 
</pre>
 
</pre>
|
+
 
Installation:
  −
<pre>
  −
ipkg install http://ping02.stura.uni-weimar.de/dave/libjpeg_6b-1_mipsel.ipk
  −
ipkg install http://ping02.stura.uni-weimar.de/dave/motion_3.2.6-1_mipsel.ipk
  −
</pre>
  −
|-
  −
|
   
Alle möglichen Einstellungen stehen in der Hilfe
 
Alle möglichen Einstellungen stehen in der Hilfe
   Zeile 199: Zeile 245:  
</pre>
 
</pre>
   −
|
+
* Projektseite:
 +
** [http://mxhaard.free.fr/index.html http://mxhaard.free.fr/index.html] - spca5xx Driver und Viewer
 +
 
 +
=== Motion ===
 +
Installation:
 +
<pre>
 +
ipkg install http://ping02.stura.uni-weimar.de/dave/libjpeg_6b-1_mipsel.ipk
 +
ipkg install http://ping02.stura.uni-weimar.de/dave/motion_3.2.6-1_mipsel.ipk
 +
</pre>
 +
 
 
Nun noch die Config-Datei für motion anlegen.
 
Nun noch die Config-Datei für motion anlegen.
 +
 
<pre>
 
<pre>
 
vi /etc/motion.conf
 
vi /etc/motion.conf
Zeile 289: Zeile 345:  
</pre>
 
</pre>
   −
|}
+
* Projektseite:
* Projektseiten:
  −
** [http://mxhaard.free.fr/index.html http://mxhaard.free.fr/index.html] - spca5xx Driver und Viewer
   
** [http://www.lavrsen.dk/twiki/bin/view/Motion/WebHome http://www.lavrsen.dk/twiki/bin/view/Motion/WebHome] - Motion Wiki
 
** [http://www.lavrsen.dk/twiki/bin/view/Motion/WebHome http://www.lavrsen.dk/twiki/bin/view/Motion/WebHome] - Motion Wiki
   −
== pwc/pwcx - Driver ==
+
=== Camsrv ===
   −
<pre>
+
=== Mvc ===
ipkg install http://141.54.160.25/dave/philips-webcam_0.2_mipsel.ipk
  −
</pre>
  −
 
  −
es wird automatisch ein startscript '''/etc/init.d/S90webcam''' angelegt.
  −
 
  −
<pre>
  −
cd /etc/init.d/
  −
vi S90webcam
  −
</pre>
  −
 
  −
<pre>
  −
#!/bin/sh
  −
 
  −
# unload drivers in case the were loaded
  −
killall camsrv; rmmod pwcx; rmmod pwc; rmmod videodev
  −
 
  −
# load webcam driver modules (it can be assumed that the USB drivers are compiled into the kernel or were installed & autoloaded)
  −
insmod videodev || exit 1
  −
insmod pwc || exit 2
  −
insmod pwcx || exit 3
  −
 
  −
sleep 1
  −
 
  −
# check if video device was allocated
  −
if [ ! -e /dev/v4l/video0 ]; then exit 4; fi
  −
 
  −
# motion starten
  −
motion
  −
</pre>
  −
 
  −
* Projektseiten:
  −
** [http://www.saillard.org/linux/pwc/ http://www.saillard.org/linux/pwc/]
  −
** [http://www.smcc.demon.nl/webcam/ http://www.smcc.demon.nl/webcam/]
  −
 
  −
== ov511 - Driver ==
  −
<pre>
  −
ipkg install http://141.54.160.25/dave/ov511_0.1_mipsel.ipk
  −
</pre>
  −
* Projektseite:
  −
** [http://ovcam.org/ov511/ http://ovcam.org/ov511/]
  −
 
  −
== Quickcam Messenger - Driver ==
  −
<pre>
  −
ipkg install http://141.54.160.25/dave/qc-usb-messenger-1.6_0.1_mipsel.ipk
  −
</pre>
  −
* Projektseite:
  −
** [http://home.mag.cx/messenger/ http://home.mag.cx/messenger/]
 

Navigationsmenü