search for: video4linux2

Displaying 11 results from an estimated 11 matches for "video4linux2".

Did you mean: video4linux
2012 Feb 23
0
Wine and video4linux2 supported webcams
Hi everyone! I'm trying to get clarification about v4l/v4l2 support in Wine. As there is no definite answer anywhere in web. I'm using Logitech webcam which is fully supported by v4l2. However, when I'm trying to use it with simple cam capture program in wine, I can see only that device is there, but I can't do anything else with it. I also did a little digging and so have found
2009 Nov 23
1
ffmpeg2theora 0.25 : This doesn't look like a Speex file
why is this happening? $ ffmpeg2theora /dev/video0 -f video4linux2 --inputfps 15 -o - | oggfwd myhost 8000 mypass /test.ogv [video4linux2 @ 0x196b8c0][3]Capabilities: 4000001 [video4linux2 @ 0x196b8c0]The V4L2 driver changed the video from 384x288 to 320x240 oggfwd: Connected to server Input #0, video4linux2, from '/dev/video0': Duration: N/A, start:...
2013 Apr 16
2
Krad Pipe To
https://gist.github.com/oneman/5394332 This is a little hack for sending -live encoded- WebM streams to Icecast from STDIN. An example (I was using libav from git, params likely different between libav, ffmpeg etc programs) avconv -v debug -f video4linux2 -s 320x240 -r 10 -i /dev/video0 -vcodec libvpx -threads 2 -vb 128k -r 10 -f webm pipe:1 | krad_pipe2 europa.kradradio.com 8008 /pipetest123.webm firefox Requires an Icecast 2.4 beta server. Testing on the above server is OK. gcc -Wall -o krad_pipe2 krad_pipe2.c sudo cp krad_pipe2 /usr/local/bin...
2008 Oct 10
4
ffmpeg2theora 0.22 released
ffmpeg2theora 0.22 is out - http://v2v.cc/~j/ffmpeg2theora * enable v4l input again (-f video4linux or -f video4linux2) * ability to set framerate for image sequences (--inputfps) * fix several memory leaks * if only width or height are given, the other is set to preserve aspect ratio * -start / -end options now work with audio only input * new option --novideo to disable video stream from input *...
2008 Oct 10
4
ffmpeg2theora 0.22 released
ffmpeg2theora 0.22 is out - http://v2v.cc/~j/ffmpeg2theora * enable v4l input again (-f video4linux or -f video4linux2) * ability to set framerate for image sequences (--inputfps) * fix several memory leaks * if only width or height are given, the other is set to preserve aspect ratio * -start / -end options now work with audio only input * new option --novideo to disable video stream from input *...
2010 Jan 13
3
Live webcam stream with Theora
...supposedly falls back onto Cortado if your browser doesn't support the <video> tag. The URL is here: http://media.basilgohar.com/stream/ There's been a lot of talk about live streaming and low bitrate streams. Here is my command line (I've posted this before): time ffmpeg -f video4linux2 -s 640x480 -r 15 -i /dev/video0 -pix_fmt yuv420p -f yuv4mpegpipe - 2>/dev/null | ~/packages/theora/examples/encoder_example --video-rate-target 150 --soft-target - | tee /home/basil.gohar/Videos/webcam-capture-`date +%F-%T`.ogv | oggfwd -d 'Live webcam view of me at work' -g 'Webcam&...
2013 Apr 16
0
Krad Pipe To
...adio wrote: > https://gist.github.com/oneman/5394332 > > This is a little hack for sending -live encoded- WebM streams to > Icecast from STDIN. > > An example (I was using libav from git, params likely different > between libav, ffmpeg etc programs) > > avconv -v debug -f video4linux2 -s 320x240 -r 10 -i /dev/video0 > -vcodec libvpx -threads 2 -vb 128k -r 10 -f webm pipe:1 | krad_pipe2 > europa.kradradio.com <http://europa.kradradio.com> 8008 > /pipetest123.webm firefox > > Requires an Icecast 2.4 beta server. Testing on the above server is OK. > gcc -Wal...
2005 May 15
1
Simple Video and Audio Recording ???
Hello, (This is yet another newbie question.) My goal is to record Video and Audio, from a webcam and microphone, and record them in ogg format. (Using Theora and Vorbis.) I'm aware that I can use video4linux or video4linux2 to get the video. And use various API's for audio. And can use APIs like GStreamer to do the encoding, etc. But, if possible, I like something a little more "higher level". Something that takes care of any audio/video synchronization issues. (But perhaps, in ignorance, I'm ove...
2010 Oct 14
0
Need a help on Online Video Streaming using IceCast
...th=360,height=288 ! theoraenc ! oggmux ! shout2send ip=localhost port=8000 mount=stream.ogg password=hackme (of course, you should change ip, port, etc with your own values). Alternatively, FFmpeg could be used. The following command used to work for me (one line): ffmpeg -f oss -i /dev/dsp -f video4linux2 -i /dev/video0 -s 320x240 -r 25 -aq 2 -ac 2 -ar 44100 -acodec libvorbis -f ogg - | oggfwd localhost 8000 hackme /stream.ogg But it stopped working with recent versions of FFmpeg (I don't know why). I hope this helps you. Feel free to ask further questions. Regards, Andr?s -----------...
2010 Oct 13
3
Need a help on Online Video Streaming using IceCast
Hello, We are working on the Radio station project and we are trying to implement the Live Video Streaming module using Icecast server with VLC player. We have installed and configured the Icecast into our server. Also, we have installed the VLC player in our local desktop computer. The USB webcam(200 CMOS UCAM - DLC220T) has been connected into my machine. Now we are trying to live video
2009 Oct 15
7
Theora for webcam/conferencing use
...g cameras... Just some ideas. I was also thinking of coupling --soft-target along with --video-quality to get a minimum video quality, which might be the key to what I am asking. Anyone else have some thoughts on this? For those that are interested, here are my command-line: > time ffmpeg -f video4linux2 -s 640x480 -r 15 -i /dev/video0 -pix_fmt > yuv420p -f yuv4mpegpipe - 2>/dev/null | > ~/packages/theora/examples/encoder_example --video-rate-target 150 > --soft-target - | tee /home/basil.gohar/Videos/webcam-capture-`date > +%Y%m%d`.ogv | oggfwd -d 'Live webcam view of me at work...