

Can the QuickCam work using the video4linux Interface? 5
This Anonymous Coward asks a question
related to an older
question on Video Converencing with a twist:
"What software is written to capture from the
Quickcam using the video4linux interface?
I can only find bttv which is for video in
a window I believe. I am looking for something
like xfqcam but which uses the video4linux
interface. Quickcam detection seems to
really suck under linux especialy with
the user level programs (xfqcam) and
I figured the video4linux interface might
work better. " Can anyone help out with
some answers?
Black and white, or color? (Score:1)
I've got no clue. Someone, PLEASE post to this.
Device or resource busy (Score:1)
dmesg | tail
? It should give you some sort of reason.
Black and white, or color? (Score:1)
you most likely have not created it
For example... MAKEDEV from xawtv (requires bttv support)
-------------->8---------------
#!/bin/bash
function makedev () {
for dev in 0 1 2 3; do
echo "/dev/$1$dev: char 81 $[ $2 + $dev ]"
rm -f
mknod
chmod 666
done
# symlink for default device
rm -f
ln -s
}
# see http://roadrunner.swansea.uk.linux.org/v4lapi.sht
echo "*** new device names ***"
makedev video 0
--------------.8---------------
Good luck n stuff!