Installed Web Cam; still no signal

I just installed a Logitech Quickcam 8. It seems to work just fine on stand-alone; however, when I open iChat and go to preferences, the video tab indicates that there is "no video camera attached to the computer". It is doing the same also when
I open iMovie: "no camera connected". How can I get my programs to recognize?
Thanks in advance!
Cheers.
Message was edited by: Black Akres

You will probably need this and a Mac Driver for this cam. (See this Camera List from Ecamm as well.)
I don't actually recognise the Camera model number you list.
If you are on OS 10.4.9 or above you will not need a Mac Driver if the camera is UVC (USB Video Class) compliant.
12:57 PM Saturday; March 8, 2008

Similar Messages

  • How to install web cam in my man mini?

    Hi,
    I have added usb external its type it has 4pins and I added an ordinary usb webcam, how can i used this in my yahoo messenger? If I'll start my web cam in ym it says no camara connected.
    Any help pls?
    Thanks.
    Arnel

    AndyO
    You are absolutely correct - iSights are expensive (here in the UK they are about £100) Using a camcorder is a good solution for occassional use except that they have the annoying habit of powering down at unexpected times when they are not actually recording. On the plus side they tend to have better lenses than even the iSight so work better in low light level indoors. There are also reports of regular use damaging the recording heads through spinning on a tape that is not moving. Not all camcorders now have firewire - a large number seem to only have USB.
    There are some USB webcams that claim to work with Macs - not many - my understanding though is that they don't work with iChat only with Yahoo. This might also be the case with the drivers available at the site in my previous post.
    At the end of the day individuals have to decide how much use they will make of a webcam and on which system then look at what is available or what they already have. The important thing is to do some homework before spending any money and check that new hardware will work with a mac and for what purposes.
    While I agree that the iSight is seriously overpriced it is the best solution if starting from scratch as they are well designed, work flawlessly with a Mac and there are quite a few other applications that can use it too - iStopMotion, Delicious Library etc.
    Me - in this case I'd keep checking out the drivers before spending anymore money.

  • Web-cam is not detected yet installed

    Hi!
    I m doing a program tat can capture movie from available video capturing devices, i hav installed web-cam, but while searching for the devices available(Detecting the device) , it is not identifing the device. And still if i m giving direct the device info to the program("vfj//0")then movie is captured from web-cam.
    Program is listed below which is not detecting the web-cam:
    public void setMainSource(){
    setProcessing(false);
    VideoFormat vidformat = new VideoFormat(VideoFormat.YUV);
    Vector devices = CaptureDeviceManager.getDeviceList(vidformat);
    CaptureDeviceInfo di = null;
    if (devices.size() > 0) di = (CaptureDeviceInfo) devices.elementAt(0);
    else {
    /* I got exception here */
    JOptionPane.showMessageDialog(parent,
    "Your camera is not connected", "No webcam found", JOptionPane.WARNING_MESSAGE);
    return;
    try {
    ml = di.getLocator();
    setMainCamSource(Manager.createDataSource(ml));
    } catch (Exception e) {
    JOptionPane.showMessageDialog(parent,
    "Exception locating media: " + e.getMessage(), "Error", JOptionPane.WARNING_MESSAGE);
    return;
    Output:
    Web cam not found....
    So wht shd be the problem , nyone please explain the problem how to overcome from it.
    Thank you

    First of all sorry for spelling mistake i write ("vfj//0") rather then "vfw://0"
    Yeh! i read your code n your code is also giving the same error
    like
    Web cam not detected/installed(like something this).
    But still i hav attached cam n capturing movie from the code shown below:
    //This will not detect the webcam n directly captures the movie, try it out so now wht to do so tat will detect the webcam properly....
    CODE:
    import javax.media.*;
    import javax.media.util.*;
    import javax.media.format.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.media.control.*;
    class testing extends JFrame implements ControllerListener,ActionListener
         //Variables for gui
         public JButton play=new JButton("Play");
         public JButton stop=new JButton("Stop");
         public JPanel p1=new JPanel();
         public JPanel p2=new JPanel();
         Container c;
         //Variables for videocapturing
         boolean stateTransitionOK = true;
         Object waitSync = new Object();
         Processor p;
         ///Variables required to store the movie
         DataSink sink;
         MediaLocator dest = new MediaLocator("save_video.wav");
         ///methods
         public testing()
              super("Video Capture Demo");
              setupvideocapture();
              setupgui();
         public void setupgui()
              c.add(play);
              c.add(stop);
              addWindowListener(new WindowHandler());
              stop.addActionListener(this);
              play.addActionListener(this);
              setSize(350,350);
              setVisible(true);
              show();
         public void actionPerformed(ActionEvent ae)
              String str;
              str=ae.getActionCommand();
              if(str=="Play")
                   try
                        //Before starting capturing store the movie to the HDD
                        p.start();
                        sink = Manager.createDataSink(p.getDataOutput(), dest);
                        sink.open();
                        sink.start();
                   catch(Exception e)
              else if(str=="Stop")
                   try
                   //     sink.stop();
                        p.stop();
                   catch(Exception e)
         public void setupvideocapture()
              c=getContentPane();
              c.setLayout(new FlowLayout());
              try
                   p = Manager.createProcessor(new MediaLocator("vfw://0"));
                   p.addControllerListener(this);
                   p.configure();
                   waitForState(p.Configured);
                   p.setContentDescriptor(null);
                   p.prefetch();
                   waitForState(p.Prefetched);
                   c.add(p.getVisualComponent());
                   ///Intializing the saving procedure
              catch(Exception e)
                   System.out.println(e);
              public void controllerUpdate(ControllerEvent evt)
                   if (evt instanceof ConfigureCompleteEvent || evt instanceof RealizeCompleteEvent || evt instanceof PrefetchCompleteEvent)
                        synchronized (waitSync)
                             stateTransitionOK = true;
                             waitSync.notifyAll();
                   else if (evt instanceof ResourceUnavailableEvent)
                        synchronized (waitSync)
                        System.out.println("ResourceUnavailable");
                        stateTransitionOK = false;
                        waitSync.notifyAll();
                   else if (evt instanceof EndOfMediaEvent)
                        p.close();
                        System.exit(0);
              boolean waitForState(int state)
                   synchronized (waitSync)
                        try
                             while (p.getState() != state && stateTransitionOK)
                                  waitSync.wait();
                        catch (Exception e) {}
                   return stateTransitionOK;
         //Entry point
         public static void main(String args[])
              testing t=new testing();
    class WindowHandler extends WindowAdapter
         public void windowClosing(WindowEvent e)
              System.exit(0);
    This is working properly........ so plz if other option plz notify me.
    Thank you for helping me.......

  • Satellite R630-14J - after Skype update web cam has disappeared

    Update to Skype 6.6. the Webcam disappeared. not visible in device Manager. multiple Downloads of web cam Drivers don't execute. checked bios. Rebooted machine multiple times.
    What to do to install web cam Software again?

    Hi
    To be honest I cannot understand why webcam device disappears from device manager list after skype update.
    I mean even if there would be a software problem (compatibility issues), the webcam should be listed in device manager even as an unknown device.
    However, by default, certain devices are not shown in the list. To include hidden devices in Device Manager display, click View and select Show Hidden Devices.
    However, I assume you are using Win 7 system.
    > multiple downloads of webcam drivers don't execute
    On Toshiba EU driver page you can find the webcam software.
    Maybe new Skype version damage something in registry. Would recommend uninstalling the Skype firstly. Download and install the repair tool like CCleaner. Clean registry and reboot the notebook. Now try to install the webcam software once again. Reboot the unit and check if you can use the webcam using installed webcam too.

  • Skype and cyberlink Web Cam

    . I can see the other person during a skype call, but they can't see me.  I have a new HP Pavillion Touchsmart 23

    Hello pfierrobb:
                You have to enable it in SKYPE.  Open up Sykpe click on tools then select options . When that windows opens select video settings. Then you well see select webcam click on White box select your web cam choices. Windos 7 HP computers it is called HP web camra filter. I just close out the filter stuff if I am not using it during chat session. Some HP computers call it cybrlink web cam.  If your web cam isn't listed yet the web cam still works in other applications your Skype software might be corrupted. Just uninstall Sykpe and reinstated it back with a new copy download  http://www.skype.com/en/download-skype/skype-for-computer/   If you are still having issues please let us know. Thank you frrw. 

  • Iphone 5- Won't show up in itunes. Error message " Device drivr software was not successfully installed. Please consult with your device manufacturer for assistance getting this device installed. Digital Still Camera- Failed" HELP!

    Error message  " Device driver software was not successfully installed. Please consult with your device manufacturer for assistance getting this device installed. Digital Still Camera- Failed" HELP!

    Hi, I was able to reformat my iPod and that worked. I read it on one of the threads and I am copy pasting the method below:
    I opened the "My Computer" window and right-clicked on my ipod, and then selected "Format". I select "Yes" to format since I don't have anything on the nano to delete anymore.
    I then Eject my nano from the computer and did a restart while the nano is disconnected from the computer.
    Once Windows finish loading I reconnect the USB to the nano(back of computer) which automatically pulls up iTune. It asked me to name the new ipod detected and created a playlist for that specific ipod name.
    Pasted from <http://discussions.apple.com/thread.jspa?threadID=1050784&tstart=15>
    Thanks!

  • Need help on how to install external web cam on a macbook?????

    Hi , does anyone have any idea if you can install and use an external webcam and how to install it on a macbook 13.3 in, black, 10.4.11 with intel processor. I have tried like months and months to connect my logitech web cam with no success what so ever. I been racking my brains trying to figure it out. I even called tech support by phone and they weren't really any help. They just said it can be done. I tried downloading the drivers that came in a cd with the logitech and nothing. Every time I try and use my external logitech on a site the built in one on the macbook comes on instead. There has to be a way to bypass the built on one. I know there has to be people out there using external webcams on macbooks. Any help would be appreciated.

    Centaur3 wrote:
    Hi , does anyone have any idea if you can install and use an external webcam and how to install it on a macbook 13.3 in, black, 10.4.11 with intel processor. I have tried like months and months to connect my logitech web cam with no success what so ever. I been racking my brains trying to figure it out. I even called tech support by phone and they weren't really any help. They just said it can be done. I tried downloading the drivers that came in a cd with the logitech and nothing. Every time I try and use my external logitech on a site the built in one on the macbook comes on instead. There has to be a way to bypass the built on one. I know there has to be people out there using external webcams on macbooks. Any help would be appreciated.
    I can't advise on your Logitech webcam, but I am using [this webcam|http://www.bestbuy.com/site/Dynex%26%23174%3B-+1.3MPWebcam/8703094.p?id=1199495403693&skuId=8703094]. First used on a iMac G5, OSX 10.4, then later moved to a Mac Mini OSX 10.5 (and now OSX 10.6.2 on the Mini.) I got it not because it's the best webcam, but because it was one of the few that said it worked with OSX 10.4. (Other webcams I had needed 10.5.) I have tested it on my Macbook Pro (OSX 10.5 and upgraded to 10.6) and it works, but I don't normally use it there.

  • Web Cam Not ditect after instaling Windows 8- HP ENVY15-3040nr

    I installed windows 8 for my HP ENVY15-3040nr.
    installed as a press instalation (formated my HDD)
    downloaded and intalled all compatible drivers and software form HP support site.  But my web cam is not ditected.
    At the device manager I can see two deices not installed
       unknown device
       USB-IF xHCI Host Controller
    Please help me to solve this issue

    Have you used the HP Support Assistant to search for any missing drivers or driver updates? If not, I would downloading it and running it to see if it can find anything. I would also recommend that you check and make sure all of your Windows Updates are installed. Try that and let me know if it helps find the missing drivers for you. 
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

  • Having installed lion i find the built in web cam  does not work

    After having installed lion i find the built in web cam (on my mac book pro) does not work, it maybe it just does not work anymore and it is a coincedence that i was changing the OS at the time . Are there any issues with this? i have looked at the discussions but no one seems to have this problem.

    After having installed lion i find the built in web cam (on my mac book pro) does not work, it maybe it just does not work anymore and it is a coincedence that i was changing the OS at the time . Are there any issues with this? i have looked at the discussions but no one seems to have this problem.

  • Firefox Mobile Version currently Rolls itself up. you can no longer view the web page re installed mobile version still firefox rolls it self up even in full screen mode

    Firefox Mobile Version currently Rolls itself up. you can no longer view the web page re installed mobile version still firefox rolls it self up even in full screen mode.
    "Firefox mobile and Firefox installed on my PC both do exactly the same thing BTW."

    That is a legitimate Mozilla newsletter. As it says in the email:
    You're receiving this email because you subscribed to receive email newsletters and information from Mozilla. If you do not wish to receive these newsletters, please click the Unsubscribe link below.
    Unsubscribe https://www.mozilla.org/en-US/newsletter/existing/ad9febcf-65ac-41fd-810b-798945f448f3/
    Modify your preferences https://www.mozilla.org/en-US/newsletter/existing/ad9febcf-65ac-41fd-810b-798945f448f3/ "

  • Hp web cam drivers are not installed

    hey i got problem,in device manger my hp web cam drivers are not installed ...from where should i download the drivers of hp web cam..thank u 

    Hi  
    HP Universal Camera Driver

  • Install latest drivers for web cam from hp

    im trying to  installdriver download for latest Web cam drivers from hp. i have a  HPg60

    Hi swoope69,
    Welcome to the HPCommunity, I hope you enjoy your experience! To help you get the most out of the HP Forums I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More.
    I will be happy to find the latest software for your webcam. However, I will need some additional information as HP g60 isn't enough. Can I get the operating system that you are running and the product number for your notebook, please?
    Thank you,
    Please click “Accept as Solution ” if you feel my post solved your issue.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Thank you,
    BHK6
    I work on behalf of HP

  • I am looking to purchase a monitor for a Power Mac G4 OR a Web cam that is compatible with the the Power Mac G4.

    I have a G4 Power Mac without the original monitor - I am using a monitor from a PC that does not have a built in webcam. I have also tried a "Blue" brand webcam that was received as a gift for me that does not work...and went to best buy to buy a compatable one and they had none that they thought would work w/ the G4 power mac  What are my options? Ideally the cheapest would be a compatable webcam. any thoughts/suggestions? or thoughts about where to get a replacement original monitor.
    thanks!

    HI,
    ON the cam front.
    The OS will support UVC compliant camera (USB Video Class) since 10.4.9  in iChat (Slightly earlier in other apps)
    The issue for older G4 macs is that these are always USB 2.0 cameras (Used to be marked "Vista Ready" or "Certified" as Windows went USB 2.0 about the same time).
    I have a G4/1ghz Dual Processor tower (So called Mirrored Doors)
    This can have extra PCI cards and have installed one with 4 USB 2.0 ports  (Remove blank, insert and secure with screw and away it went)
    Nowadays virtually any USB webcam will be UVC compliant and USB 2.0  (Meaning no Windows or Mac Drivers to download and Install)
    The abilities of the Drivers in the OS do vary between Windows and Macs of this age.  (Lion on Intels does bring face tracking).
    Anyways, once you solve the USB 2.0 input issue then virtually any USB 2.0 camera will work including the X-Box 360 cam or a PalyStation 3 one
    Firewire
    The Original External iSight was of course Firewire.
    There were a number of other around the same time (Until USB cameras took over).
    This means that some DV convertors that use Firewire to get Analogue CamCorders signals into a Mac will work (some digital camcorders may not produce a DV signal as such and will need a convertor)
    The camera may have options on it's playback that mean it can be in 4:3 ratio if used with iChat.  It also cannot be HDV (or any propriatary form)  (You have to have an Intel and Lion/iChat 6 for HD).
    Of course some DV camcorders  do use Firewire to connect to a computer  (although this has dropped off as USB 2.0 is actually slightly faster)
    iMovie will accept many more formats than iChat will but you were talking about Web Cams.
    NOTES 
    You may find sites still trading the external iSight.  They are going to be at least 8 years old now and you will need to check so how that they are working
    USB 1.1
    If you can find a USB 1.1 Camera for sale or tucked in a drawer  it will need two things:-
    1) A Mac Driver
    2) This Utility for iChat http://www.ecamm.com/mac/iusbcam/
    Some manufacturers did have web sites with Downloads.
    The Camera Guide page at Ecamm shows the links to two third Party Drivers from macam and IOXperts.
    You will note the first Ecamm page says that iUSBCam does not work in Snow Leopard but you specs do say you are using Leopard (10.5)
    Back to Screens
    My tower has a card that supports two monitors.
    The one I bought with my Tower was the Studio Display (Same Acrylic type surround to the screen as the Tower).  (It does have USB 1.1 ports on the back)
    This used the then Apple Display Connector (ADC)
    It also had a DVI output.
    Ergo any DVI Screen will work.
    As to whether a  DVI screen/display with a camera can use that DVI connector to feed the Camera to the Mac I don't know.
    9:27 PM      Saturday; December 24, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • How do i use my FaceTime camera as a web cam?

    I am trying to figure out how to use the facetime camera on my macbook pro as a web cam with non apple users. Please help.

    If you are trying to use Flash based web sites that you open in your browser, there is no difference in operation regardless of whether your webcam is being viewed by a PC or by another Mac user.  However, if you are having problems with Flash sites, verify that your Flash plug-in is the latest one that is compatible with your system.
      • You can find the latest Flash version that works with your OS X 10.7.3 using this page:
          http://www.adobe.com/software/flash/about/
    If you need to update, use your Mac's Disk Utility to repair permissions.  Then follow Adobe's instructions here: http://kb2.adobe.com/cps/908/cpsid_90893.html
    Be sure to uninstall your current Flash player before installing the new one.
    Repair permissions again immediately following installation of the updated Flash player.
      • Be aware that the current Flash Player Preferences can  be configured in your
         Lion Mac's  > System Preferences... These settings may be blocking Flash on a system-wide basis.
      •  Individual Flash settings are still configured in the same way as older versions:
          http://tinyurl.com/5kjv3
    Message was edited by: EZ Jim
    Mac OSX 10.7.3

  • How to enable multiple access to a web cam?

    Hi... I am using JMF to develop an online monitoring web page with Java Applet.
    However, as i tried it just now, when one browser is rendering that page, others can not even lauch the web cam.
    I am using Logitech QuickCam. Is it because of the web cam is possessed by one application, and others have to wait? Or the client should also install JMF in order to view the page successfully?
    Can anyone please tell me?
    Thanks in advace.

    Let me get this straight. You have a web application that uses spring framework and hibernate to access the database. You want the user to be able to select the database that he wants to access using spring and hibernate.
    Hopefully you are using the Spring Framework Hibernate DAO. I know you can have more that one spring application context. You can then trying to load a seperate spring application context for each database. Each application context would have it's own configuration files with the connection parameters for each datasource. You could still use JNDi entries in the web.xml for each datasource.
    Then you would need a service locater so that when a user selected a datasource he would get the application context for that datasource which he would use for the rest of his session.
    I think it is doable. It means a long load time. And you'll need to keep the application contexts as small as possible to conserve resources.

Maybe you are looking for

  • Safari, itunes, and Adobe Reader wont start up on iBook G4

    I have an iBook G4 that I purchased from a friend a few months ago that seemed to be working fine up until two days ago. Now for almost no reason at all, Safari, itunes and Adobe reader will not open anymore. Can someone please help me?

  • Captivate 4 - Use the mouse and keyboard at the same time.

    Hello, good people. There is a way, in C4, to use the mouse and the keyboard at the same time? An example, in software simulation: "Hold the Shift key and click with the mouse in the other object to select it too..."

  • Movies in Help File not playing

    Hi We have released software with a .chm help file. The help file contains embedded Captivate movies. Some users are having trouble playing the movies, they see a blank screen where the movie should be. Clearing the IE cache has a helped some users b

  • A bogus "Apple Security Center" has taken over my Firefox browser

    I was using the Firefox browser on my Apple computer and had just used Google to look up someone on the web, and suddenly a message appeared that I had a serious security problem and started to do a scan of my system, even though I didn't request it

  • Why the DBID is same?

    I have Installed 2 databases on a same host(WinXP-32bits). They are: db_name:orcl6, orcl7 services: orcl6, orcl7 sid: orcl6, orcl7 But when I use follow command,I find the DBIDs are same. SELECT DBID, NAME FROM V$DATABASE; (display follows): DBID NAM