Tagged Questions
2
votes
0answers
78 views
Webcam Device Driver to support H.264
I have a Creative Live Cam Connect HD (id: 041e:4093) and this webcam has an on-board H.264 encoder. Unfortunately v4l2 only inputs the feed as MJPG.
$ v4l2-ctl --list-formats
ioctl: VIDIOC_ENUM_FMT
...
5
votes
2answers
1k views
Trouble getting VLC to record from the webcam via command line
my ~/.bashrc contains the following function
webcamrecord () {
vlc v4l2:// :v4l-vdev="/dev/video0" :v4l-adev="/dev/audio2" :v4l-norm=3 :v4l-frequency=-1 :v4l-caching=300 :v4l-chroma="" ...
3
votes
1answer
626 views
Capture and broadcast video from web cam
I have server on Debian 6, without Desktop Environment and I have simple web camera. Web camera is defined like /dev/video0, so I can use cat /dev/video0 > ~/photo to get image from it (of course ...