Package for DVC80 USB Video Interface

Gents;
Some info sources say that a linux app can be provided which will permit the DVC80 to  respond to NTSC video camera input.
The DVC80 operates well in windows, permitting capture in Irfanview and a program called Dazzle.
The following data describes a possible application which may be compatible with arch.  The interface in video apps, especially from USB, can be daunting.  Audio is also provided on NTSC basis for camera input via the DVC80 input connectors(stereo).
The data below describes how it might be built in linux:
===============================================================
Readme for kernel 2.6.x Linux device driver for the Zoran/Nogatech USBVision Video Grabber
Author: Joerg Heckenbach <[email protected]>
Homepage: http://www.emuit.com/webcam.html (Dwaine Garden)
INTRODUCTION:
This is a driver for the USB video bridge USBVision from Zoran/Nogatech, a USB-only cable used in many "webcam" devices.
It supports streaming and capture of color or monochrome video via the Video4Linux
API. Most V4L apps are compatible with it, but a few video-conferencing programs
do not work yet.
If you need more information, please visit the Zoran/Nogatech homepage at the above URL.
usbvision-0.9.6 is the first prerelease of the 1.0 driver. I did many changes in the code and I hope I
didn't break working features on different devices. The decompression is completed. Just from time to
time there are some black or white error pixels in the image on slower machines. Maybe it is a timing problem
in the isoc interrupt routine. We stay a third of the time in interrupt and so it is likely, that the parser
is called twice. Let me cleanup the routine for performance, move the parser to user-context and add a lock.
For 2.6x kernels we can use the saa7111 from the kernel tree, so the make will not compile the saa7111-new
for these kernels.  The bt819-new.c is not coded to 2.6. kernel yet.
I have tested the driver with kernel 2.6.1, 2.6.2 to 2.6.7 with devices "Hauppauge WinTV USB FM 1" and
"Pixelview PlayTV USB Pro FM" on a 600MHz PII system.
WHAT YOU NEED:
- If you want to help with the development, get the chip's specification docs at
  http://www.emuit.com/webcam.html
- A Video4Linux compatible frame grabber program (I recommend xawtv or Kwintv)
  xawtv is available at:  http://www.in-berlin.de/User/kraxel/xawtv.html
- Radio Application to take advantage of the radio tuner. (some of the devices)
  GQradio is available at:  http://gqmpeg.sourceforge.net/radio.html
HOW TO INSTALL THE DEVICE DRIVER:
First way (The easy one)
It works with most modern standard installations.
a) In the usbvision directory do
   make; make install; modprobe usbvision
b) Start your video application.
c) Enjoy.
If c) doesn't work, something went wrong ;-)
Second way (Not as easy as the first one)
You need this, if either usb-, i2c-, tuner- or v4l-support is missing in your kernel.
a) cp the following files into the directory /usr/src/linux/drivers/usb/media
    usbvision.c
    usbvision.h
    saa7113.c
    i2c-algo-usb.c
    i2c-algo-usb.h
    usbvision_ioctl.h
c) In the makefile of the dir /usr/src/linux/drivers/usb, look for the line "obj-$(CONFIG_USB_IBMCAM)    +=media/",
insert an additional line then added the line for the usbvision driver
   obj-$(CONFIG_USB_USBVISION)    += media/
e) Add the line to the makefile in /usr/src/linux/driver/usb/media/
  obj-$(CONFIG_USB_USBVISION)     += usbvision.o saa7113.o i2c-algo-usb.o
f) Edit file /usr/src/linux/drivers/usb/media/Kconfig   
   Paste the following lines below after the entry for the IBMCAM.
---------------------------- Begin Paste ------------------------------
config USB_USBVISION
    tristate "USB Zoran/Nogatech USBVision Video Grabber Support"
    depends on USB && VIDEO_DEV && I2C && VIDEO_BT848 && VIDEO_DPC
    ---help---
        Say Y here if you want to connect a Nogatech NT100x, or a Zoran
        ZR36504/ZR36505 chipset based video/tv/radio grabber, to your
        computer's USB port.
        For more information, read <file:Documentation/usb/usbvision.txt>.
        This driver needs the following support: Please enable (Y or M in config)
          Video For Linux API
        I2C API. 
        BT484 Device Support
        DPC7146 demonstration board Device Support
        This code is also available as a module ( = code which can be
        inserted in and removed from the running kernel whenever you want).
        The module will be called usbvision.o.  If you want to compile it as a
        module, say M here and read <file:Documentation/modules.txt>. This
        video grabber has several configuration options which can be specified
        when you load the module.  Read <file:Documentation/usb/usbvision.txt> to
        learn more.
---------------------------- End of Paste -----------------------------
h) If it is not already there (it usually is), create the video device:
    mknod /dev/video c 81 0
i) Sometimes /dev/video is a symlink to /dev/video0
You will have to set permissions on this device to allow you to read/write
from it:
    chmod 666 /dev/video
    chmod 666 /dev/video0 (if necessary)
When configuring the kernel choose Zoran/Nogatech USBVISION video support as
module. You are going to need also to select i2c and v4l, and if your
device have tuner you need to compile also BT848 support or other modules
that compile the tuner.o module.
    a) Do a make modules, make modules_install.
    b) If the USB Support and the Video4Linux was compiled as modules.
       modprobe usbcore.o
           modprobe usb-uhci.o  <OR>  modprobe ohci-hcd.o
       modprobe videodev.o
    b) Install the modules:
          modprobe usbvision- For a great radio application, try GQradio.
       The usbvision module will also load the i2c-algo-usb, i2c-core, saa7111, saa7113.
VIDEO PLAYERS FOR PLAYING VIDEO OUPUT
Here is the setting to get the TV tuner working with mplayer.  It does software video scaling, so you can have full screen mode with the USBVision driver.
    mplayer tv:// -tv channel=43:driver=v4l:input=0:outfmt=rgb24:norm=ntsc:height=240:width=320 -flip
Here is the setting to get the TV tuner working with xawtv.
    xawtv -c /dev/video0
USBVISION MODULE PARAMETERS:
  NAME: isocMode
  TYPE: integer (0x03, 0x14, 0x60)
  DEFAULT: 0x60
  DESC:  The isocMode is the format mode of the data that is transmitted on the isocronous
  pipe via USB. It is not depending on the connected video-hardware. Default is 0x14.
        YUV422          0x03
        YUV420          0x14
        COMPRESSION     0x60    Enable compression for full framerate.
  NAME: debug
  TYPE: bitmask
  DEFAULT: 0
  DESC: You don't need this option unless you are a developer. If you are a developer then
  you will see in the code what values do what. This is a bit mask, and you can combine any
  number of bits to produce what you want:
       bit 2    debug procfs
       bit 3    debug video ioctl
       bit 4    debug video io
       bit 5    debug radio io
       bit 7    debug usb frame header
       bit 8    debug probe and disconnect
       bit 9    debug irq
       bit 10   debug handling of isochronus transfer
       bit 11   debug parsing of usb data
       bit 12   debug handling of scratch
       bit 13   debug utility functions
       bit 14   debug i2c stuff
  NAME: flags
  TYPE: bitmask
  DEFAULT: 0
  DESC: This is a bit mask, and you can combine any number of bits to produce what you want.
  Usually you don't want any of extra features this option provides:
       bit 0    FLAGS_RETRY_VIDIOCSYNC     This bit allows to retry failed
                                           VIDIOCSYNC ioctls without failing.
                                           Will work with xawtv, will not
                                           with xrealproducer. Default is
                                           not set.
       bit 1    FLAGS_MONOCHROME           Activates monochrome (b/w) mode.
       bit 2    FLAGS_DISPLAY_HINTS        Shows colored pixels which have
                                           magic meaning to developers.
       bit 3    FLAGS_OVERLAY_STATS        Shows tiny numbers on screen,
                                           useful only for debugging.
       bit 4    FLAGS_FORCE_TESTPATTERN    Shows blue screen with numbers.
       bit 5    FLAGS_SEPARATE_FRAMES      Shows each frame separately, as
                                           it was received from the camera.
                                           Default (not set) is to mix the
                                           preceding frame in to compensate
                                           for occasional loss of Isoc data
                                           on high frame rates.
       bit 6    FLAGS_CLEAN_FRAMES         Forces "cleanup" of each frame
                                           prior to use; relevant only if
                                           FLAGS_SEPARATE_FRAMES is set.
                                           Default is not to clean frames,
                                           this is a little faster but may
                                           produce flicker if frame rate is
                                           too high and Isoc data gets lost.
  NAME: dga
  TYPE: integer (0-1) boolean
  DEFAULT: 1
  DESC: This will set the option for DGA video to either Yes or No.  Default is 1.
  NAME: PowerOnAtOpen
  TYPE: integer (0-1) boolean
  DEFAULT: 1
  DESC: This will set the device to power on automatically when opened.  Default is 1.
  NAME: SwitchSVideoInput
  TYPE: integer (0-1) boolean
  DEFAULT: 0
  DESC: To help people with Black and White output with using s-video input.  Some cables and input devices are wired differently. 
        If you are getting a black and white image when using the S-Video input.  Set this parameter to 1.  Default is 0, since most
    devices do not have this problem.
  NAME: CustomDevice
  TYPE: string
  DEFAULT: NULL
  DESC: This will set a new Custom device
  EXAMPLE: "0x0573 0x4D31 0 7113 3 PAL 1 1 1 5 -1 -1 -1 -1 -1"
  FORMAT: "idVendor idProduct Interface Codec    VideoChannels VideoNorm AudioChannels Radio
             Tuner TunerType Vin_Reg1 Vin_Reg2 X_Offset Y_Offset Dvi_yuv"
        Codec:
            7111
            7113
            819
        VideoNorm:
            P or PAL
            S or SECAM
            N or NTSC
        TunerType: (!!!use the NUMBER not the name)  see latest in "/usr/src/linux/drivers/media/video/tuner.h"
            TUNER_TEMIC_PAL                 0   /* 4002 FH5 (3X 7756, 9483) */
            TUNER_PHILIPS_PAL_I             1
            TUNER_PHILIPS_NTSC              2
            TUNER_PHILIPS_SECAM             3   /* you must actively select B/G, L, L` */
            TUNER_ABSENT                    4
            TUNER_PHILIPS_PAL               5
            TUNER_TEMIC_NTSC                6   /* 4032 FY5 (3X 7004, 9498, 9789)  */
            TUNER_TEMIC_PAL_I               7   /* 4062 FY5 (3X 8501, 9957)        */
            TUNER_TEMIC_4036FY5_NTSC         8   /* 4036 FY5 (3X 1223, 1981, 7686)  */
            TUNER_ALPS_TSBH1_NTSC              9
            TUNER_ALPS_TSBE1_PAL             10
            TUNER_ALPS_TSBB5_PAL_I             11
            TUNER_ALPS_TSBE5_PAL             12
            TUNER_ALPS_TSBC5_PAL             13
            TUNER_TEMIC_4006FH5_PAL            14  /* 4006 FH5 (3X 9500, 9501, 7291)     */
            TUNER_ALPS_TSHC6_NTSC             15
            TUNER_TEMIC_PAL_DK            16  /* 4016 FY5 (3X 1392, 1393)     */
            TUNER_PHILIPS_NTSC_M            17
            TUNER_TEMIC_4066FY5_PAL_I           18  /* 4066 FY5 (3X 7032, 7035) */
            TUNER_TEMIC_4006FN5_MULTI_PAL       19  /* B/G, I and D/K autodetected (3X 7595, 7606, 7657)*/
            TUNER_TEMIC_4009FR5_PAL             20  /* incl. FM radio (3X 7607, 7488, 7711)*/
            TUNER_TEMIC_4039FR5_NTSC            21  /* incl. FM radio (3X 7246, 7578, 7732)*/
            TUNER_TEMIC_4046FM5                 22  /* you must actively select B/G, D/K, I, L, L` !  (3X 7804, 7806, 8103, 8104)*/
            TUNER_PHILIPS_PAL_DK            23
            TUNER_PHILIPS_FQ1216ME            24  /* you must actively select B/G/D/K, I, L, L` */
            TUNER_LG_PAL_I_FM            25
            TUNER_LG_PAL_I                26
            TUNER_LG_NTSC_FM            27
            TUNER_LG_PAL_FM                28
            TUNER_LG_PAL                29
            TUNER_TEMIC_4009FN5_MULTI_PAL_FM    30  /* B/G, I and D/K autodetected (3X 8155, 8160, 8163)*/
            TUNER_SHARP_2U5JF5540_NTSC          31
            TUNER_Samsung_PAL_TCPM9091PD27         32
            TUNER_MT2032                 33
            TUNER_TEMIC_4106FH5             34  /* 4106 FH5 (3X 7808, 7865)*/
            TUNER_TEMIC_4012FY5            35  /* 4012 FY5 (3X 0971, 1099)*/
            TUNER_TEMIC_4136FY5            36  /* 4136 FY5 (3X 7708, 7746)*/
            TUNER_LG_PAL_NEW_TAPC           37
            TUNER_PHILIPS_FM1216ME_MK3          38
            TUNER_LG_NTSC_NEW_TAPC           39
            TUNER_HITACHI_NTSC               40
            TUNER_PHILIPS_PAL_MK             41
            TUNER_PHILIPS_ATSC               42
            TUNER_PHILIPS_FM1236_MK3         43
            TUNER_PHILIPS_4IN1               44  /* ATI TV Wonder Pro - Conexant */
            TUNER_MICROTUNE_4049FM5          45
            TUNER_LG_NTSC_TAPE               47
            TUNER_TNF_8831BGFF               48
================================================================================================
FINAL NOTE:
If your device isn't known, add it to usbvision_device_data and usbvision_table in usbvision.h.
You can speed up tuner detection, when adding "options tuner addr=your_addr" to /etc/modules.conf.
If your device isn't known, edit line (modprobe usbvision CustomDevice="0x0573 0x4D31 0 7113 3 PAL 1 1 1 5 -1 -1 -1 -1 -1")
in 'usbvision.rc' file then 'usbvision.rc start'
also edit "etc/rc.d/init.d/usbvision" if you use it
Please tell me your experience ([email protected]), or contact ([email protected]).
=============================================================
As described it is a PAL device.  There are options for TV included.
I am interested in single frame capture and video stream capture via the camera input connectors(NTSC-stereo audio).  My camera is a PIXERA and has video NTSC output.
The following is reference to the USBVISION tar.gz which seems to require ZORAN in the kernel.  It used to be called ZORAN/NOGATECH. 
It would seem necessary to enable ZORAN in the latest kernel in order to implement the device.  Other requirements are likely as well.
Perhaps a pkg could be built but certainly seems a big challenge!
My DVC80 is recognized in USB.
Hopefully, it can be done in arch!
EDIT:The tar.gz reference below:
file:///root/Desktop/usbvision-0.9.8.2.tar.gz

I use this one with Windows 7:http://www.chronos.com.tw/Product/E/2/USB%20Movie%20Editor/USB%20Movie%20Editor.htm
It worked bad with out of box Windows 7.
But after all updates it works very well and stable.
A nice thing is that it has little USB extender cable included. So it is less harmful for laptop usb port.

Similar Messages

  • Windows 7 no longer recognizes or allows ASIO drivers for my usb audio interfaces

    Hello All, last year I purchased a new version of Propellerheads Reason and the  Balance digital audio interface that came with the bundle.
    Everything was fine it all worked well, especially when I added asio4all drivers. (The Balance comes with its own asio driver).
    Super low latency on my keyboard and midi guitar.  I was using my midi guitar and set up at jams for several months last year and it was great!
    One day I was getting ready for the jam session and I noticed that the latency on my midi guitar became so bad that I could not play in time with the other musicians. 
    I checked out the preference/audio page in Reason and saw that my asio drivers were missing! I immediately went and down loaded asio4all again and installed it. It would show up in any of my music software. I have tried removing and re-installing
    the stock ASIO driver that came with Balance and no luck. 
    I suspect that shortly before this  huge problem ( my music software is basically useless without asio drivers) I allowed a windows update to my system. 
    I think that somehow during one of these "updates" something changed and windows 7 no longer allows asio drivers on my computer. This really sucks!
    Is there some way to get rid of the offending "update" that ruined my music system? 
    Thanks in advance!
    Don

      Thank you for your response  FangZhou Chen, unfortunately this problem started last fast, possible early November so I can't do a restore that far back.
    my best,
    Don

  • USB Human Interface Device

    Hi, I have an annoying yellow ! in my Device Manager for the USB Human Interface Device. Can anyone point me to the correct driver to remove it please?
    Pete

    Hi Laurent, I got your email with files and replied with my findings. However my email to you was bounced back to me as undeliverable, so I will reply on here.
    I tried the files you sent; but unfortunately they had no effect using 64 bit Windows. I have since gone back to 32 bit; but not because of the problem with the human interface; I have decided to go back because my printer and my scanner manufacturers do not and will not be providing 64 bit drivers, and not only that; there are still other things that 64 bit are just not ready for.
    So having said that; reverting back to 32 bit has enabled your previous version to work perfectly as expected. I do still have my 64 bit setup on a spare hard drive, so I can go back to that anytime if you wish me to try something else; being that it will be inevitable to use 64 bit Windows in the not too distant future.
    Regards
    Pete

  • Can anyone recommend a Windows 7 compatible USB audio/video interface for Adobe Media Live Encoder??

    Any suggestions?  Also, are they hardware appliances that replace Adobe Media Live Encoder?

    I use this one with Windows 7:http://www.chronos.com.tw/Product/E/2/USB%20Movie%20Editor/USB%20Movie%20Editor.htm
    It worked bad with out of box Windows 7.
    But after all updates it works very well and stable.
    A nice thing is that it has little USB extender cable included. So it is less harmful for laptop usb port.

  • Usb video card/interface

    My mini display port isnt working, is it possible to get a usb video card/interface to run my external monitor instead?

    No noise problems when the interface is plugged into other systems.. Only on the G5...
    And I tried plugging it into all the different USB ports on the G5, the one in front and the two in the back... All with the same result.
    Thank you for your reply.

  • Hello. I want to use my iphone as a viewing screen for a usb endoscope, (its a small camera on a long cable for inspecting down piping and such) with an app is it possible to attach the usb to my iphone using a adapter to watch the live video feed on th

    Hello. I want to use my iphone as a viewing screen for a usb endoscope, (its a small camera on a long cable for inspecting down piping and such) with your app is it possible to attach the usb to my iphone using a adapter to watch the live video feed on the iphone?
    Thankyou.

    Hello. I want to use my iphone as a viewing screen for a usb endoscope, (its a small camera on a long cable for inspecting down piping and such) with your app is it possible to attach the usb to my iphone using a adapter to watch the live video feed on the iphone?
    Thankyou.

  • Software needed for the USB device, "USB Interface Controller TEST2.0"

    My mother recently acquired a digital camera. She acquired it from a second-hand store, which did not include an interface cable or software. The manual (and the USB port on the camera) indicates that a male-male USB cable is necessary for photos to be copied to the hard drive.
    I was not successful in locating such a cable at any local electronics store (I assume such a cable is now out-of-date). I purchased one from a seller on eBay. The brand is "e circuit electronics".
    Upon powering up the camera with the cable connected to it and the computer, the following message appeared:
    "Software needed for the USB device "USB Interface Controller TEST2.0" is not available. Would you like to look for the software on the Internet?"
    I clicked "Yes". After an approximate two-minute wait, another message appeared stating:
    "Software Update is not able to connect to the Internet. Please check your configuration and try again."
    I deleted, "Software Update Preferences" in the Preferences folder inside the System Folder, without solving the problem. How do I solve the issue of allowing Software Update to connect to the Internet?

    Thank you for your continued assistance, BDAqua. Unfortunately, the driver you linked to does not seem to be compatible with the camera. It is a driver for the V20 model, whereas my model would correspond to be a V2755, as referenced from a list of other Vivicam models when during a search at the Open Drivers web site.
    From the system requirement about the card reader you gave me, it will not work, as this system is running 9.1. I am hesistant to upgrade this computer to 9.2, as I have experienced system unstability with that version, with even the 9.2.2 update applied.
    In the mean time, I have e-mailed Vivitar regarding this issue, but have as of yet received a reply.
    I am not certain as to other specifics to give you, in order to solve the Software Update problem. Please elaborate.
    Yes eww, the computer in question is able to fully connect to the Internet for all that I need. I am fully aware of the difference between a computer connecting to the Internet, and a computer connecting to a digital camera. I have 15 years of Macintosh experience.

  • Hello, I just wanted to know when an update would be available for my mac mini server os x lion to resolve the issues regarding my m-audio fastrack pro usb audio interface (no midi messages recognized)

    Hello, I just wanted to know when an update would be available for my mac mini server os x lion to resolve the issues regarding my m-audio fastrack pro usb audio interface (no midi messages recognized)

    Have you reported your problems to Apple?
    BugReporter
    <http://bugreporter.apple.com>
    Free ADC (Apple Developer Connection) account needed for BugReporter.
    Anyone can get a free account at:
    <http://developer.apple.com/programs/register/>
    And/Or
    Mac OS X Feedback<http://www.apple.com/feedback/macosx.html>

  • Hi.  I have a Macbook Pro Model 5,5 with one 800 firewire port.  I need to create two firewire 800 ports but only have an SD card slot (this is for video interface with 2 cameras).  Is this possible or do I have to have an express card slot in order to do

    Hi.  I have a Macbook Pro Model 5,5 with one 800 firewire port.  I need to create two firewire 800 ports but only have an SD card slot (this is for video interface with 2 cameras).  Is this possible or do I have to have an express card slot in order to do this?

    Hi Jessica,
    No, the SD slot will not work, you need an ExpressCard/34 slot.
    I do not know if it works with cameras, but with two or more HDs, if the first one has two FW ports, you can "daisy chain" one or more additional HDs from it.

  • PCI Video Interface Card for Mac Pro/FCP

    Could someone please recommend a PCI Video Interface card for my Mac Pro? I'm looking for something that will capture in Beta SP, as well as support HD-SDI (bnc connector) -- does such a card exist?
    Thanks!
    Message was edited by: Matinicus Rock

    Matrox:
    http://www.matrox.com/video/en/products/mac/mxo2_family/
    You are flush with options...
    Shane

  • USB/Firewire Interface for MIDI and audio (Garage Band)

    I want to connect a Roland Handsonic (electronic drum) and Shure microphone to a Mac Pro for recording in Garage Band. What is the best USB/firewire interface for MIDI and audio?
    Mac Pro desktop   Mac OS X (10.4.8)  

    If you click one of the links you can read all about it in depth.
    three guitarists
    That's not what you asked for B-)>
    Once you want more than 2 audio inputs, the prices start jumping up dramatically.
    would this be the best interface to use?
    If you really want "Best" then it's a simple answer:
    http://www.bulletsandbones.com/GB/FirePod.html

  • What is the BEST usb audio interface for the aluminum 2.4 ghz macbook

    i went to my local guitar center and ended up purchasing an m-audio interface. The thing blows, will not work with garage band at all. Drivers wont install correctly, and i have heard other mac users with this problem.
    Im going to return it tomorrow and purchase something different, any suggestions?

    There are no decent USB audio interfaces.
    FIREWIRE IS A MUST for audio. Unless you are positive you will never be recording more than one instrument at a time you should consider a Firewire multi-channel audio device. Some examples of when you might need such a unit include recording a jam session utilizing more than two mics or maybe recording a drum kit with more than two mics (common). A multi-channel device will allow for much more flexibility in the long run.
    All of the below audio manufacturers released NEW Firewire ONLY equipment in 2008.
    Digidesign
    Yamaha/Steinberg
    MOTU
    Lexicon
    PreSonus
    Apogee
    M-Audio
    TC Electronic
    Focusrite
    There are no USB to Firewire adapters. (Desperate aluminum Macbook owners are looking, but it can't be done.) USB can not "keep up" with Firewire.
    The NEW (early 2009) white Macbook has Firewire. (and the new NVIDIA graphics.)
    http://www.apple.com/macbook/white/

  • Can i use my usb audio interface with apple tv? For example Focusrite 2i2

    can i use my usb audio interface with apple tv? For example Focusrite 2i2

    Afraid not - AppleTV does not support USB audio devices.
    I assume you don't mean using the device as an optical input for the computer, connecting AppleTV's optical out to it.

  • Quickcam for Notebooks pro (new) and USB Video

    Hi,
    I have a new Logitech Quickcam for Notebooks pro camera, that supports
    the USB Video standard (as far as I know, at least the cameras id is mentioned
    on the USB Video for Linux driver at http://linux-uvc.berlios.de/ )
    As I read on the Apple USB Mailinglist, Tiger supports this standard. But unfortunately my camera isn't recognized as camera, just as generic USB device with the following ids:
    Produkt-ID: 0x08c3
    Hersteller-ID: 0x046d
    Does someone know, how this camera can be made working or has someone
    a USB Video standard conforming camera running on tiger 10.4.5?
    I know, there are two USB Webcam drivers, but they both don't support USB Video, as this support is built in with tiger, and neither one of them is working for me.
    Regards,
    Michael.

    I'd blame Apple for the lack of webcam support on Mac OS X. The software Apple makes that takes advantage of webcams (such as iChat) is only coded to use Firewire cameras. I assume they do this since they don't want any competitors to their iSight ($149).
    The manufacturers that have made USB webcams with Mac OS X drivers (such as http://www.logitech.com/index.cfm/products/details/US/EN,CRID=2204,CONTENTID=710 5) probably haven't had much success selling them since iChat and other Apple programs won't be able to use them even with the drivers.
    If Apple allowed non-Firewire cameras to work with their programs, I think that would give manufacturers more incentive to make their webcam products work with Mac OS X. I really wish Apple would change their stance on this since lack of hardware support is one of the major disadvantages of Mac OS X over Windows. There is even a petition here for this: http://www.petitiononline.com/iChatUSB/petition.html

  • Will there be any plug ins or separate enhancement packages for iMovie 8?

    Will Apple or 3rd parties offer new plug ins or Plus packages for iMovie 8 to restore themes, provide additional transitions, titles and special effects?

    .. got a mail from Bruce too (as a few forum members, frequent posters in this section, are on a single-digit adress list...) ...
    indeed, it looks like, Apple has 'forgotton' to include and document a kind of API/whatever, to allow 3rd party plug-ins...
    as we all know, iM was a very reliable horse, and those plug-ins tought it new tricks.. (horses, dogs.. got lost in the metaphors......). the actual numbers of 'effects' is even reduced to the ones preinstalled in iM6 ... we all speculated about some simple pic-in-pic for all you podcasters... the new 'Crop' tool would be perfect... but is for one clip only.. the User Interface avoids any 'layers' (no audio tracks anymore...), so probably, that now famous scuba diving technician has no need to show the shark AND his wife's face expression simultanously...
    iM08 seems to me an excellent fast 'movie video maker', with some astonishing, groundbraking, breathtaking User Interface Ideas.. (I still spread the fully fictitious rumor, Kai Krause has to do with it in some way )
    ... but is a totally new app, no iMovie/version ...

Maybe you are looking for

  • Disable/Hide Blog from Mysite in SharePoint 2013

    Hi All, Do we have any chance to Disable/Hide creating blog option in Mysite 2013? When user accessing Mysite for the first time a new site collection is creating, any chance to avoid this? Do we have any chance to restrict users to create a sub site

  • Shadow on Imac 20" screen

    Hi This happened about a year ago, but then stopped, but has start again recently. Intermittently, often, but not always, after it goes to sleep, or when turned on, there is a shadow on the screen that starts at the top, and gradually fades towards t

  • Why won't anyone tell me exactly what is, or is not, included in the 'typical' installation of Acrob

    this isnt blank. .... Acrobat XI Pro. this forum and all the other forums only have one entry for this, and for 2 years, no one has bothered to answer the question.

  • _Patch level in SAP HANA Note and _Build No in SAP HANA

    Hello Hana Gurus! I need to know where can I find the patch level in the SAP HANA and SAP HANA Notes For example, if I want to apply a note http://service.sap.com/sap/support/notes/1964428 there is specified: Software Component Support Package Patch

  • Activating QM, PM,PP, MM InfoCubes

    Hi SDNers, I need to activate, QM, PM, PP & MM InfoCubes, could anyone guide me through on this the exact steps especially on SPRO side like setup tables and so forth Thanks Zan Edited by: Muhd Rikhzan on Mar 9, 2009 1:31 PM