个人工具

“UbuntuHelp:InstallingEyetoyAsAWebcam”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
第5行: 第5行:
 
<pre><nowiki>
 
<pre><nowiki>
 
wget http://www.rastageeks.org/downloads/ov51x-jpeg/ov51x-jpeg-1.5.1.tar.gz
 
wget http://www.rastageeks.org/downloads/ov51x-jpeg/ov51x-jpeg-1.5.1.tar.gz
 +
 
tar -xvf ov51x-jpeg-1.5.1.tar.gz
 
tar -xvf ov51x-jpeg-1.5.1.tar.gz
 +
 
cd ov51x-jpeg-1.5.1/
 
cd ov51x-jpeg-1.5.1/
 +
 
sudo make install
 
sudo make install
 +
 
sudo modprobe videodev
 
sudo modprobe videodev
 +
 
sudo modprobe i2c_core
 
sudo modprobe i2c_core
 
</nowiki></pre>
 
</nowiki></pre>
第15行: 第20行:
 
(try skipping this, and see if everything works,I've just left this here, to help,just in case its useful)
 
(try skipping this, and see if everything works,I've just left this here, to help,just in case its useful)
 
<pre><nowiki>sudo insmod /lib/modules/`uname -r`/extra/ov51x-jpeg.ko
 
<pre><nowiki>sudo insmod /lib/modules/`uname -r`/extra/ov51x-jpeg.ko
 +
 
modprobe ov51x-jpeg
 
modprobe ov51x-jpeg
 +
 
modprobe videodev
 
modprobe videodev
 
</nowiki></pre>
 
</nowiki></pre>
 
-check it all works so far with a little test program:
 
-check it all works so far with a little test program:
 
<pre><nowiki>sudo apt-get install xawtv
 
<pre><nowiki>sudo apt-get install xawtv
 +
 
xawtv
 
xawtv
 
</nowiki></pre>
 
</nowiki></pre>

2007年12月6日 (四) 10:38的版本

Installing Eyetoy as a webcam!

Here is what I did to get Kotete and my eyetoy working together!

wget http://www.rastageeks.org/downloads/ov51x-jpeg/ov51x-jpeg-1.5.1.tar.gz

tar -xvf ov51x-jpeg-1.5.1.tar.gz

cd ov51x-jpeg-1.5.1/

sudo make install

sudo modprobe videodev

sudo modprobe i2c_core

-there may be a step missing here: sudo insmod /lib/modules/`uname -r`/extra/ov51x_decomp.ko (try skipping this, and see if everything works,I've just left this here, to help,just in case its useful)

sudo insmod /lib/modules/`uname -r`/extra/ov51x-jpeg.ko

modprobe ov51x-jpeg

modprobe videodev

-check it all works so far with a little test program:

sudo apt-get install xawtv

xawtv

now assuming it does, we need to ensure it works with Kopete, by adding a little setting

kdesu kate /etc/modprobe.d/options

-now add and save it, then I restarted and tried Kopete, and this time it worked!: options ov51x-jpeg force_palette=13 power tip: instead of using Kate, try it all in one line: sudo echo "options ov51x-jpeg force_palette=13" >> /etc/modprobe.d/options Hope it works! -Luke Stanley