Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
202 views

mmap physically contiguous memory

I might have some misconceptions here, so bear with me. I wrote a program that captures images from a camera. I am sharing the memory between the camera and my application with mmap as I found in ...
5
votes
3answers
872 views

streaming video to and from multiple sources

I wanted to get some ideas one how some of you would approach this problem. I've got a robot, that is running linux and uses a webcam (with a v4l2 driver) as one of its sensors. I've written a control ...
2
votes
2answers
385 views

Python/FFMPEG command line issues

I have a problem with running an FFMPEG command from within a Python script. When I run the following command from the terminal, I can stream video and audio from my attached webcam (Logitech C310) ...
2
votes
1answer
202 views

How to access camera and micphone in android?

I want to write a android progrom,now i access the codec via the openmax by use jni in android's ui,I found there is no video audio source or framebuffer in openmax components.My cell phone is ...
2
votes
2answers
159 views

How would I assign multiple MMAP's from single file descriptor?

So, for my final year project, I'm using Video4Linux2 to pull YUV420 images from a camera, parse them through to x264 (which uses these images natively), and then send the encoded stream via Live555 ...
2
votes
5answers
956 views

user pointer in python

*I am trying to display preview from webcam captured using v4l. Here is an idea of how the code looks like: from ctypes import * from v4l2 import * from Image import fromstring from Tkinter import ...
1
vote
1answer
333 views

Looking for example code integrating Qt4 and v4l2 library

As topic , i tried source code from official website ( c language based ) , but not so complete , i'd like to see some examples which can dump an image and transfer to a Qt class , QImage or so. Many ...
1
vote
1answer
159 views

V4L2 invalid argument for the ioctl of DQBUF

I came across a V4L2 problem.Below is the code. v4l2_buffer queue_buf; CLEAR(queue_buf); queue_buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE; queue_buf.memory = V4L2_MEMORY_MMAP; if(-1 == ioctl(fd, ...
1
vote
0answers
199 views

V4L2 image size problems

I found a very estrange problem using V4L2 and some Logitech webcam. Setting height = 320, width = 240 and format I420, the image size must be 115200 bytes, but querying through V4L2 give me 29390 ...
1
vote
0answers
35 views

How to display text(alphanumeric) using V4L2

I want to display text using V4L2. Is there a C library exists for displaying text using (V4L2).
1
vote
1answer
1k views

Android V4L or V4L2

Does Android Linux Kernel support V4L or V4L2 (Video for Linux). If not, it'is possible to add it
1
vote
1answer
951 views

capture using v4l2 and display preview using gstreamer

How to pass the buffer/userpointer to gstreamer after Q_BUF, STREAM_ON, DQ_BUF. I tried using PIL's method frombuffer, but with no success. so I want to use gst sink now. Should I use ...
1
vote
2answers
886 views

Saving V4L2 video camera output

What video format would be the easiest when saving the output of a camera using V4L2 if I capture it in bitmap format? Getting mpeg directly could be, of course, nice, but I can't unfortunately count ...
0
votes
0answers
27 views

/dev/dvb/adapter0/dvr0 access issues with libav

I wrote 2 Programs in C++, one using Qt and libav, the other one using Qt, v4l2 and libav. They are both supposed to tune to a TV-Broadcast channel and read them out. Problem If I tune externally ...
0
votes
1answer
186 views

How does a V4L2 video capture driver knows where the stream is coming from

I need to write a driver that receives 24-bit RGB input and put it on the display (either by 3rd party app as mplayer, or by dumping it to the fame buffer, it is not important at the moment) The ...
0
votes
2answers
332 views

Two webcams on one usb 2.0 hub - works in windows but not linux

The openCV code below grabs simultaneous images from two cameras. It works fine in windows, with the cameras both attached to one usb 2.0 hub. When I try the same code in linux, it only has enough ...
0
votes
1answer
834 views

Streaming Webcam with RTSP

I'm trying a live streaming of video using a web cam attached to my laptop. I am working in Linux Ubuntu. Here are the Gstreamer pipeline for server side and client side: Streaming server: I'm ...
0
votes
1answer
733 views

How can I capture audio AND video simultenaous with ffmpeg from an USB capture device

I'm capturing a video by means of an USB Terratec Grabster AV350 (which is based on the em2860 chip). I don't succeed to get the audio when it is played . If I play the captured video with vlc or ...
0
votes
1answer
1k views

v4l2 very simple example

I'm looking for a simple example for camera access in Linux using V4L2. Where I can find it? As simple, as possible. Thanks,