Diff for "EasyCam"


Differences between revisions 1 and 21 (spanning 20 versions)
Revision 1 as of 2007-01-20 23:32:34
Size: 5108
Editor: 80-219-112-71
Comment: moved from WebCam
Revision 21 as of 2008-10-11 18:39:44
Size: 2337
Editor: cpe-69-207-215-155
Comment: Added to CategoryHardware and CategorySoftware. Removed from CategoryDocumentation.
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
||<tablestyle="float:right; font-size: 0.9em; width:40%; background:#F1F1ED; margin: 0 0 1em 1em;" style="padding:0.5em;">'''Contents'''[[BR]][[TableOfContents(3)]]|| ||<tablestyle="float:right; font-size: 0.9em; width:40%; background:#F1F1ED; margin: 0 0 1em 1em;" style="padding:0.5em;"><<TableOfContents(3)>>||
Line 5: Line 5:
[http://forum.ubuntu-fr.org/viewtopic.php?id=16670 EasyCam 2] is a New Release of EasyCam.
Please try if you have any problems with EasyCam
Line 8: Line 6:
= Installation =
Add the following line to your {{{/etc/apt/sources.list}}}
''' Please, if you want participate to the dev of EasyCam, contact me at 'jbtheou in gmail dot com'. Anbreizh Thanks '''

[[http://blognux.free.fr|EasyCam 2]] is a new release of EasyCam.

== Installation on 32 bit systems ==
You need to add the following repository to your source list [[https://help.ubuntu.com/community/Repositories/Ubuntu|Adding Repositories]]
Line 11: Line 13:
deb http://blognux.free.fr/debian unstable main deb http://blognux.free.fr/ubuntu hardy main
deb-src http://blognux.free.fr/ubuntu hardy main
Line 14: Line 17:
Then you need to update the packages and install easycam Then you need to update the packages
Line 17: Line 20:
sudo apt-get install easycam2 }}}
and install the '''easycam''' package :
 * If you use Gnome :
{{{
sudo apt-get install easycam2-gtk
}}}
 * If you use Kde :
{{{
sudo apt-get install easycam2-qt
Line 20: Line 31:
= EasyCam 1 = == Installation on 64 bit systems ==
''note: instructions found on [[http://blognux.free.fr/?p=27]]''
Line 22: Line 34:
[http://forum.ubuntu-fr.org/viewtopic.php?id=16670 EasyCam] is a software for an automated webcam installation. Thanks to the autodetection it will install the needed driver for your webcam.

There are [http://blognux.free.fr/Liste/ lists] of the autodetected webcams. At the moment the list is small, but it's constantly growing.

The source code is [http://blognux.free.fr/sources/ here]

= Installation =
Add the following line to your {{{/etc/apt/sources.list}}}
1. First, install the dependencies:
Line 31: Line 36:
deb http://blognux.free.fr/debian unstable main sudo apt-get install python-xml cheese
Line 34: Line 39:
Then you need to update the packages and install easycam 2. Now, download the core and install it:
Line 36: Line 41:
sudo apt-get update
sudo apt-get install easycam
wget http://blognux.free.fr/ubuntu/dists/hardy/main/binary-i386/easycam2-core.deb
sudo dpkg -i easycam2-core.deb
}}}

3. Install '''EasyCam'''
 * On Gnome
{{{
wget http://blognux.free.fr/ubuntu/dists/hardy/main/binary-i386/easycam2-gtk.deb
sudo dpkg -i easycam2-gtk.deb
}}}
 * On KDE
{{{
wget http://blognux.free.fr/ubuntu/dists/hardy/main/binary-i386/easycam2-qt.deb
sudo dpkg -i easycam2-qt.deb
Line 41: Line 58:
with the following command you start easycam (There is also an icon under System->Administration):
W
ith the following command you start easycam (there is also an icon under Application->Utility):
 *In Gnome :
Line 43: Line 62:
lauchcam2 gksudo 'python /usr/share/EasyCam2/core.py --gtk'
Line 45: Line 64:
 *In Kde :
{{{
kdesudo 'python /usr/share/EasyCam2/core.py --qt'
}}}
Line 48: Line 70:
After a some compilation your webcam should be ready. After some compilation your webcam should be ready.
Line 50: Line 72:
== Problems ==
If you get in trouble you can check on their [http://forum.ubuntu-fr.org/viewtopic.php?id=16670 thread] (in french) or on the [http://wiki.ubuntu-fr.org/materiel/webcam_logitech_msn?s=amsn Documentaion Ubuntu Francophone (in french)].

== Testing your webcam ==
There is a nifty little application called [http://camorama.fixedgear.org/ camorama] to view, alter and save images from a webcam. Simply install it via apt:
{{{
sudo apt-get install camorama
}}}

== Additional software ==
If you want to have a little tray system icon that notifies you when your Webcam is on, try [http://infinito.f2o.org/cameramonitor/ Camera Monitor]. There is even a [http://infinito.f2o.org/cameramonitor/cameramonitor_0.1-1_i386.deb debian/ubuntu package] available.

Webcam support is built in to [http://amsn.sourceforge.net/ aMSN], [http://kopete.kde.org/ kopete] and [http://www.gnomemeeting.org/ ekiga]. As usual, install with
{{{
sudo apt-get install kopete
sudo apt-get install amsn
sudo apt-get install ekiga
}}}

== Recording to an AVI file ==
[https://help.ubuntu.com/community/MPlayer MPlayer] is capaple of displaying a webcam video stream, for example with the command line

{{{
mplayer tv:// -tv driver=v4l:width=640:height=480:device=/dev/video0
}}}

The resolution (width=??? & height=??? ) should be chosen to match the output of your device.

The companion to MPlayer, [https://help.ubuntu.com/community/MEncoder MEncoder] can record from a webcam to video files such as AVI, for example without audio:

{{{
mencoder tv:// -tv driver=v4l:width=320:height=240:device=/dev/video0 -ovc lavc -o webcam.avi
}}}

and with audio

{{{
mencoder tv:// -tv driver=v4l:width=320:height=240:device=/dev/video0:forceaudio:adevice=/dev/dsp1 -ovc lavc -oac mp3lame -lameopts cbr:br=64:mode=3 -o webcam.avi
}}}

Type 'man mencoder' for more info on the audio options. In the example, /dev/dsp1 refers to the webcam USB Audio device, while /dev/dsp would refer to the sound card

You may need to install these programs with

{{{
sudo apt-get install mplayer mencoder
}}}

== Installing spca5xx manually ==
You can find howto's for manual installation of the spca5xx driver [wiki:Spca5xx here].

= Edgy troubleshooting : pwc driver is broken =

On Edgy, the pwc driver in the kernel is [https://launchpad.net/distros/ubuntu/+source/linux-source-2.6.17/+bug/56090 broken].

[http://www.lavrsen.dk/twiki/bin/view/PWC/WorkingWebcamsWithPWC List of the working webcams with pwc.]

An easy check to see if your pwc driver is broken :

{{{$ lsmod | grep pwc

pwc 51964 1 <- Your driver is broken ! (around 50kb)

pwc 93984 0 <- your driver seems ok. (around 90kb)
}}}
How to get your webcam working ?

1) Install build-essential and the kernel-headers for your kernel (linux-headers-2.6.17-6-686 for me).

2) Download latest driver from http://www.saillard.org/linux/pwc/ (http://www.saillard.org/linux/pwc/files/pwc-10.0.12-rc1.tar.bz2 for me)

3) Unpack and go into extracted directory

4)
{{{
make
}}}

5)
{{{
sudo modprobe -r pwc
}}}

6)
{{{
sudo cp pwc.ko /lib/modules/`uname -r`/kernel/drivers/media/video/pwc/pwc.ko.saillard
}}}

7)
{{{
cd /lib/modules/`uname -r`/kernel/drivers/media/video/pwc
}}}

8)
{{{
sudo mv pwc.ko pwc.ko.ubuntu
}}}

9)
{{{
sudo ln -s pwc.ko.saillard pwc.ko
}}}

10)
{{{
sudo depmod -a
}}}

11)
{{{
sudo modprobe pwc
}}}

12) Enjoy! :)
= Problems =
If you get in trouble you can check the [[http://blognux.free.fr|EasyCam]] blog or check on their [[http://forum.ubuntu-fr.org/viewtopic.php?id=16670|thread]] (in french) or on the [[http://wiki.ubuntu-fr.org/materiel/webcam_logitech_msn?s=amsn|Documentation Ubuntu Francophone (in french)]].
Line 166: Line 76:

CategoryDocumentation CategoryCleanup
CategoryHardware CategorySoftware

EasyCam 2

Please, if you want participate to the dev of EasyCam, contact me at 'jbtheou in gmail dot com'. Anbreizh Thanks

EasyCam 2 is a new release of EasyCam.

Installation on 32 bit systems

You need to add the following repository to your source list Adding Repositories

deb http://blognux.free.fr/ubuntu hardy main
deb-src http://blognux.free.fr/ubuntu hardy main

Then you need to update the packages

sudo apt-get update

and install the easycam package :

  • If you use Gnome :

sudo apt-get install easycam2-gtk
  • If you use Kde :

sudo apt-get install easycam2-qt

Installation on 64 bit systems

note: instructions found on http://blognux.free.fr/?p=27

1. First, install the dependencies:

sudo apt-get install python-xml cheese

2. Now, download the core and install it:

wget http://blognux.free.fr/ubuntu/dists/hardy/main/binary-i386/easycam2-core.deb
sudo dpkg -i easycam2-core.deb

3. Install EasyCam

  • On Gnome

wget http://blognux.free.fr/ubuntu/dists/hardy/main/binary-i386/easycam2-gtk.deb
sudo dpkg -i easycam2-gtk.deb
  • On KDE

wget http://blognux.free.fr/ubuntu/dists/hardy/main/binary-i386/easycam2-qt.deb
sudo dpkg -i easycam2-qt.deb

Start easycam

With the following command you start easycam (there is also an icon under Application->Utility):

  • In Gnome :

gksudo 'python /usr/share/EasyCam2/core.py --gtk'
  • In Kde :

kdesudo 'python /usr/share/EasyCam2/core.py --qt'

Now you can choose your webcam from the list. The software asks you if you want to install the driver.

After some compilation your webcam should be ready.

Problems

If you get in trouble you can check the EasyCam blog or check on their thread (in french) or on the Documentation Ubuntu Francophone (in french).


CategoryHardware CategorySoftware

EasyCam (last edited 2009-12-09 00:07:52 by cpe-071-075-118-086)