Re: [PD] webcam in GEM on eeepc

2009-08-18 Thread Jaime Oliver
could you give more details of your setup?
what gem version are you using?
what kind of camera, driver, etc...

j

On Tue, Aug 18, 2009 at 8:58 AM, Arif Driessen arif...@gmail.com wrote:

 Hi guys,

 I normally stick to the forums but I've come here because I fear this is
 going to be a little too in depth. (I shall post the answer to the forum
 afterwards however).

 I know the GEM developers have discussed this over here:
 http://www.mail-archive.com/gem-...@iem.at/msg00098.html

 But I'm not a GEM developer! :)

 My issue is, [pix_video] won't see my camera under any conditions (in
 GNU/Linux), whilst mplayer tv:// in the terminal or the Cheese Webcam Booth
 are both very happy to. I simply don't know where to begin. But really
 really desire this feature (it's one of the main reasons i bought the eeepc
 701)

 Running eeebuntu lxde beta 1 (a cut down ubuntu/debian)

 Is this a common problem? Are there some standard procedures to fixing
 this? like reinstalling certain packages? e.t.c.

 There's no rush here, but I'm sure it's a somewhat popular issue since the
 eeepc must be a popular medium for Pure Data

 Thanks very much everyone.


 ___
 Pd-list@iem.at mailing list
 UNSUBSCRIBE and account-management -
 http://lists.puredata.info/listinfo/pd-list




-- 
Jaime E Oliver LR

joliv...@ucsd.edu
www.realidadvisual.org/jaimeoliver
www-crca.ucsd.edu/
www.realidadvisual.org

858 202 1522
9168 Regents Rd. Apt. G
La Jolla, CA 92037
USA
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] webcam in GEM on eeepc

2009-08-18 Thread cyrille henry

hello,
eeepc cam is a V4L2 device. i think there is no (yet) officiel Gem release with 
V4L2 suport. you can check this when creating a pix_video object : it should 
print V4L and V4L2...

current development version works fine. so you should use the svn to download 
Gem latest source code, and compile it yourself.

you can also ask Iohannes to make release more often ;-)

Cyrille

Arif Driessen a écrit :

Hi guys,

I normally stick to the forums but I've come here because I fear this is 
going to be a little too in depth. (I shall post the answer to the forum 
afterwards however).


I know the GEM developers have discussed this over here: 
http://www.mail-archive.com/gem-...@iem.at/msg00098.html


But I'm not a GEM developer! :)

My issue is, [pix_video] won't see my camera under any conditions (in 
GNU/Linux), whilst mplayer tv:// in the terminal or the Cheese Webcam 
Booth are both very happy to. I simply don't know where to begin. But 
really really desire this feature (it's one of the main reasons i bought 
the eeepc 701)


Running eeebuntu lxde beta 1 (a cut down ubuntu/debian)

Is this a common problem? Are there some standard procedures to fixing 
this? like reinstalling certain packages? e.t.c.


There's no rush here, but I'm sure it's a somewhat popular issue since 
the eeepc must be a popular medium for Pure Data


Thanks very much everyone.




___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list



___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] webcam in GEM on eeepc

2009-08-18 Thread Frank Barknecht
Hallo,
Arif Driessen hat gesagt: // Arif Driessen wrote:
 I normally stick to the forums but I've come here because I fear this is
 going to be a little too in depth. (I shall post the answer to the forum
 afterwards however).
 
 I know the GEM developers have discussed this over here:
 http://www.mail-archive.com/gem-...@iem.at/msg00098.html
 
 But I'm not a GEM developer! :)
 
 My issue is, [pix_video] won't see my camera under any conditions (in
 GNU/Linux), whilst mplayer tv:// in the terminal or the Cheese Webcam Booth
 are both very happy to. I simply don't know where to begin. But really
 really desire this feature (it's one of the main reasons i bought the eeepc
 701)
 
 Running eeebuntu lxde beta 1 (a cut down ubuntu/debian)
 
 Is this a common problem? Are there some standard procedures to fixing this?
 like reinstalling certain packages? e.t.c.

I suppose your version of GEM doesn't support cameras with video2linux2 support.

One quick thing to try would be to aptitude install libv4l and then preload
the compatibility library for V4L1 apps by doing:
 
$ export LD_PRELOAD=/usr/lib/libv4l/vl1compat.so
$ pd -lib Gem

Otherwise try to get a Gem that supports v4l2, for example by recompiling it 
after
installing libv4l-dev, too.

Ciao
-- 
Frank

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] webcam in GEM on eeepc

2009-08-18 Thread Frank Barknecht
Hallo,
Frank Barknecht hat gesagt: // Frank Barknecht wrote:
 $ export LD_PRELOAD=/usr/lib/libv4l/vl1compat.so

I meant to write: 

  $ export LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so

Ciao
-- 
Frank

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] webcam in GEM on eeepc

2009-08-18 Thread Arif Driessen
Amazing response both in time and effectiveness. I thank you all greatly.

three annoying newbie questions however:

Is this the package I need to get? http://sourceforge.net/projects/pd-gem/

Do I need to uninstall GEM first or do anything to Pd before or after to
recognise (insmod style) and work with the new GEM

Do I follow the standard compiling route i.e.

./configre
make
make install

(I have only ever patched my kernel once. that is as far my linux technical
proficiency goes)

Many many thanks for the time out you have spent on me.


On Tue, Aug 18, 2009 at 3:18 PM, cyrille henry c...@chnry.net wrote:

 hello,
 eeepc cam is a V4L2 device. i think there is no (yet) officiel Gem release
 with V4L2 suport. you can check this when creating a pix_video object : it
 should print V4L and V4L2...

 current development version works fine. so you should use the svn to
 download Gem latest source code, and compile it yourself.

 you can also ask Iohannes to make release more often ;-)

 Cyrille

 Arif Driessen a écrit :

 Hi guys,

 I normally stick to the forums but I've come here because I fear this is
 going to be a little too in depth. (I shall post the answer to the forum
 afterwards however).

 I know the GEM developers have discussed this over here:
 http://www.mail-archive.com/gem-...@iem.at/msg00098.html

 But I'm not a GEM developer! :)

 My issue is, [pix_video] won't see my camera under any conditions (in
 GNU/Linux), whilst mplayer tv:// in the terminal or the Cheese Webcam Booth
 are both very happy to. I simply don't know where to begin. But really
 really desire this feature (it's one of the main reasons i bought the eeepc
 701)

 Running eeebuntu lxde beta 1 (a cut down ubuntu/debian)

 Is this a common problem? Are there some standard procedures to fixing
 this? like reinstalling certain packages? e.t.c.

 There's no rush here, but I'm sure it's a somewhat popular issue since the
 eeepc must be a popular medium for Pure Data

 Thanks very much everyone.


 

 ___
 Pd-list@iem.at mailing list
 UNSUBSCRIBE and account-management -
 http://lists.puredata.info/listinfo/pd-list



___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] webcam in GEM on eeepc

2009-08-18 Thread cyrille henry

Arif Driessen a écrit :

Amazing response both in time and effectiveness. I thank you all greatly.

three annoying newbie questions however:

Is this the package I need to get? http://sourceforge.net/projects/pd-gem/
no, you should not get a package, but the source code : 
https://sourceforge.net/projects/pd-gem/develop


somthing like : 
svn co https://pd-gem.svn.sourceforge.net/svnroot/pd-gem/trunk/Gem  Gem/

should grab everything you need.

then, you'll have to read the README.linux in src folder
basically, you'll have to :
autoconf
./configure
sudo apt-get install whaterver missing
./configure
make
sudo make install

Cyrille



Do I need to uninstall GEM first or do anything to Pd before or after to 
recognise (insmod style) and work with the new GEM


Do I follow the standard compiling route i.e.

./configre
make
make install

(I have only ever patched my kernel once. that is as far my linux 
technical proficiency goes)


Many many thanks for the time out you have spent on me.


On Tue, Aug 18, 2009 at 3:18 PM, cyrille henry c...@chnry.net 
mailto:c...@chnry.net wrote:


hello,
eeepc cam is a V4L2 device. i think there is no (yet) officiel Gem
release with V4L2 suport. you can check this when creating a
pix_video object : it should print V4L and V4L2...

current development version works fine. so you should use the svn to
download Gem latest source code, and compile it yourself.

you can also ask Iohannes to make release more often ;-)

Cyrille

Arif Driessen a écrit :

Hi guys,

I normally stick to the forums but I've come here because I fear
this is going to be a little too in depth. (I shall post the
answer to the forum afterwards however).

I know the GEM developers have discussed this over here:
http://www.mail-archive.com/gem-...@iem.at/msg00098.html

But I'm not a GEM developer! :)

My issue is, [pix_video] won't see my camera under any
conditions (in GNU/Linux), whilst mplayer tv:// in the terminal
or the Cheese Webcam Booth are both very happy to. I simply
don't know where to begin. But really really desire this feature
(it's one of the main reasons i bought the eeepc 701)

Running eeebuntu lxde beta 1 (a cut down ubuntu/debian)

Is this a common problem? Are there some standard procedures to
fixing this? like reinstalling certain packages? e.t.c.

There's no rush here, but I'm sure it's a somewhat popular issue
since the eeepc must be a popular medium for Pure Data

Thanks very much everyone.





___
Pd-list@iem.at mailto:Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -
http://lists.puredata.info/listinfo/pd-list






___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list



___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list