Re: WebCam Help

2007-02-23 Thread Kees Jongenburger
Hi, Here is some more information The webcam is v4l2 compatible, the SDL_bgrab I posted earlier is v4l compatible. p.s. is there a n700 gtalk client that supports video? greetings On 2/22/07, Brian Waite <[EMAIL PROTECTED]> wrote: On Thursday 22 February 2007 15:17, Dave Cridland wrote: > On

Re: WebCam Help

2007-02-22 Thread Brian Waite
On Thursday 22 February 2007 15:17, Dave Cridland wrote: > On Thu Feb 22 15:53:19 2007, Kees Jongenburger wrote: > > Do you have hints onto how to get rid of the gtalk client when > > poping > > the device? > Open the gtalk client, Choose Tools->Settings Uncheck 'Start when Camera opened Press 'O

Re: WebCam Help

2007-02-22 Thread Dave Cridland
On Thu Feb 22 15:53:19 2007, Kees Jongenburger wrote: Do you have hints onto how to get rid of the gtalk client when poping the device? There's a gconf key, it's, erm, somewhere. I stumbled across it when I was exploring with the gconf-editor I found, erm, in a repository I had already. I

Re: WebCam Help

2007-02-22 Thread Edgard Lima
yes, you can use /dev/video0 as user you can use VGA (640x480), QVGA(320x240), QQVGA(160x120), CIF(352x288), QCIF(176x144) and subQCIF(128x96) image sizes (about "resolution...hum...I don't know) you can get from 10/1 to 30/1 fps example: gst-launch-0.10 -v v4l2src ! video/x-raw-yuv, widt

Re: WebCam Help

2007-02-22 Thread Edgard Lima
I'm just trying the simplest pipeline "v4l2src ! xvimagesink" Just it and getting 10/1 fps with no CPU penality. see bellow btw: to flip the image use (this is done by driver so it will be fast as possible) GstVideoOrientation *vidorient = GST_VIDEO_ORIENTATION (source) gboolean flip; gst_vide

Re: WebCam Help

2007-02-22 Thread Florent de Dinechin
ext Carlos GP escreveu: > > Hi there! > > > > I want to develope a program that uses the camera from n800, but I'm > > I guess you have read the page about the camera on http://www.maemo.org/platform/docs/how-to.html By the way, I tried several variations of the example mirror program given on

Re: WebCam Help

2007-02-22 Thread Kees Jongenburger
Hello Edgard On N800 you can use the v4l2src plugin in the same way you use on Desktop (v4l2src ! xvimagesink for example) What resolution can I expect from the web cam? Should I be able to access the /dev/video0 device as user? Have you tested the v4l2src ! xvimagesink example on the device?

Re: WebCam Help

2007-02-22 Thread Edgard Lima
Yes, you can do all the development using your PC. Just plug a WebCam to your PC and write your application. Your webcam must have a v4l or v4l2 driver. I recommend you to use GStreamer to develop your application, it is easy an and powerful. And you will have to change just one line of your

Re: WebCam Help

2007-02-22 Thread Kees Jongenburger
On 2/22/07, Carlos GP <[EMAIL PROTECTED]> wrote: Hi there! I want to develope a program that uses the camera from n800, but I'm working in my PC, not in the Table (the fact is that I don't have it...) Is there any way to use my webcam as the camera of the n800? Emulate it, I mean... Hi The