Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror
Linux Software

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?
This discussion has been archived. No new comments can be posted.

Can the QuickCam work using the video4linux Interface?

Comments Filter:
  • I just got a black and white quickcam for free, and so far, I've gotten w3cam to somehow work with v4l and give me a completely BLACK image.

    I've got no clue. Someone, PLEASE post to this.

  • Right, and what happens when you say:

    dmesg | tail

    ? It should give you some sort of reason.
  • The reason there is no /dev/video is that
    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 /dev/$1$dev
    mknod /dev/$1$dev c 81 $[ $2 + $dev ]
    chmod 666 /dev/$1$dev
    done

    # symlink for default device
    rm -f /dev/$1
    ln -s /dev/${1}0 /dev/$1
    }

    # see http://roadrunner.swansea.uk.linux.org/v4lapi.shtm l

    echo "*** new device names ***"
    makedev video 0

    --------------.8---------------

    Good luck n stuff!

Surprise your boss. Get to work on time.

Working...