Built-in iSight produces heavy load (Tiger) using flash applications

On my MacBook the built-in iSight produces a heavy processor load when the camera is used in a flash application and the skype viedo beta.
The load is about 120% in Firefox, Safari and Skype, when the application connects to the iSight camera. In other applications (iChat, photoBooth) I don't have that problem. Under Windows, the same application in the same Browser (Firefox) works just fine with round about 11% processor load.
Does anyone else has this problem (maybe in other applications) ??
Mac Book 2Ghz 2Gb 100GB Mac OS X (10.4.7) BootCamp 1.1

I like the idea to put a camera in the computer.
I have not seriously used a macintosh since 1992, when I was in 2nd grade. Ever since I tinkered on my dad's mac now and then when he was not looking. But, I need to know where in the settings do I go to enable the built-in iSight camera to work on the web or any flash application
MacBook Pro   Mac OS X (10.4.10)  
MacBook Pro   Mac OS X (10.4.10)  
MacBook Pro   Mac OS X (10.4.10)  
MacBook Pro   Mac OS X (10.4.10)  

Similar Messages

  • Built in isight 'not connected' or 'being used by other app'

    i just bought a macbook pro (os x 10.4.5; 1.83 ghz; upgraded to 1gig ram) yesterday, and when i attempted to open Photobooth to take a pic with the built in isight camera, an error came up saying, "Photobooth cannot open because either no camera is attached or the camera is in use by another application." i literally took the machine out of the box, went through some of the setup, then shut it down again...did i do something wrong??

    it ended up being a hardware defect, so apple kindly replaced my system with no hassles! thanks apple!!

  • Built-in iSight requires reboot before every use

    It seems that I can use my iSight immediately after a reboot, but once I sleep & rewake my computer or run other applications (vmware, imovie - pretty much anything) the iSight stops working.
    Now, I get that rebooting seems to be a solid fix for this...but seriously...most of the time I want to use my iSight it is just SO not worth closing out all my apps and restarting - it's faster to go dig up my digital camera, take a pic, and upload it. Half the reason I bought a mac was so I wouldn't have to restart all the time.
    The iSight disfunctionality is a HUGE disappointment that would have seriously made me question whether I wanted to invest in a mac or not, had I known upfront. Oddly, I took it for granted because camera's really aren't complex or cutting edge devices...how has Apple failed to fix this so far?
    Is there ANY way I can "unplug" and "replug" (eg, restart) my built-in iSight WITHOUT rebooting my MBP?
    Please advise
    Thanks

    I have reset the PMU twice and have reset PRAM (holding down apple-option-p-r at startup),I have also repaired disk permissions on my startup disk.
    I can get access to the built-in isight for photobooth and other apple applications but as soon as I try to enable it in VMWare Fusion it stops the VMWare machine (Windows Vista) from booting until I disconnect the iSight from VMWare.
    The iSight then disappears from the available hardware in VMWare Fusion (so I cannot reconnect it in Fusion) and I cannot access the iSight in any Apple application.
    I have Applecare... I think I'll see if I can get any help there.

  • Built-in iSight not working-black screen with every application

    I have a MacBook laptop version 10.6.2 and just recently my built-in isight stopped working. i've had this laptop for about 2 years now and there have never been problems with the isight. i downloaded skype because i tried using ichat and my friends computer wouldn't video chat when i used ichat, but when i used skype it worked. so i've been using skype for about a month now... and just recently, i'd say like 2 weeks ago i went to use skype and the screen was completely black. the sound works, my friend said she could hear me she just couldn't see me. so i went into photo booth to see if the camera worked with that, and its a black screen on that app too! and when i take a picture it counts down like it normally would, but it doesn't even produce a picture, just a blank in the line of pictures at the bottom.. i also went into ichat and it has the same thing-black screen. i think the computer detects the camera, because it never said that it didn't... just the screen is always black.
    just some other info.... when i go to use an application that uses isight, the green light on the right side of the camera lights up.. nothing else really happens though.
    any information or diagnostic would be most appreciated!! thank you!

    http://support.apple.com/kb/HT2090
    my isight camera is not working-not recognized with photo booth or ichat

  • Videos won't play until fully loaded when using Flash Player

    Hello,
    When I try to play videos using flash player, it usually takes a very long time for them to start playing, because they do not start until the entire video is loaded. However, disabling flash player and using something like Quicktime allows me to start watching a video once enough of it has buffered.
    I'm currently using Windows 7 x64, and it happens across browses (Firefox, Chrome, IE). I've tried uninstalling/reinstalling the latest version of Flash player several times, but no luck. Any help would be appreciated, thanks!

    How video is played is determined from the content/server, not flash player itself.  Are you seeing this happen with YouTube?

  • Can Help be loaded into a flash application?

    I am looking for help solutions that will fit inside another
    application, a flex app, that would load inside a flash popup
    window. RoboHelp outputs a hybrid of flash and html, correct? Is
    there a way to output just swf format so it can be loaded into
    another application?

    RevJaySprout wrote:
    > I'm trying to make a bit of a digital magazine by taking
    PDFs of our print
    > version and loading them into a flash movie where the
    user can flip through the
    > pages pretty much like a photo gallery. Can I do this or
    will I have to convert
    > them to JPGs and provide links to download the PDFs if
    they want to print?
    >
    need to convert to jpg, there is no load of PDF yet.
    Best Regards
    Urami
    "Never play Leap-Frog with a Unicorn."
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Unable load jasperreports using java application

    I have created a report using jasperassistant.
    But i could'nt run the report using my java
    application.below given is the code sgment to call the
    report.
    try{
    String rFile="/root/Production.jasper";
    HashMap rptHash=null;
    FileInputStream fs=new FileInputStream(rFile);
    System.out.println("loading report file , read " +fs.available());
    JasperReport template=(JasperReport)JRLoader.loadObject(fs);
    System.out.println("Successfully created the report");
    JasperPrint report=JasperFillManager.fillReport(template,rptHash,conn);
    System.out.println("Report filled with data");
    }catch(JRException jex)
    System.out.println("Jasper Exception :"+jex.getMessage());
    System.out.println("Jasper Exception :"+jex.fillnStackTrace());
    System.out.println("Jasper Exception :"+jex.getStackTrace());
    System.out.println("Jasper Exception :"+jex.getLocalizedMessage());
    While running this application ,it throws into the
    exception section.
    Out put of the program is
    Loading report file ,read 15275
    Jasper Exception : Error loading object from InputStream
    Jasper Exception :net.sf.jasperreports.engine.JRException :Error loading object from InputStream Jasper Exception :[Ljava.lang.StackTraceElement;@e7b241
    Jasper Exception :Error loading object from InputStream
    I request you to go through my code and give me some help to solve this asap.
    thanking you

    Do you actually mean you want to make sure that only one instance of a GIVEN Java program is running at one time? If so then search this forum becuse this question comes up frequently.

  • How can I use the built-in Isight camera with an external camera (usb/firewire) at the same time?

    How can I use the built-in Isight camera and an external video camera at the same time?
    I'm wanting to stream over Oovoo/Skype/etc. using 2 cameras.
    Thanks

    Simple question with a not so simple answer.
    (a) If you mean that you want to run multiple apps simultaneously using a different camera with each app, you may encounter computing power limitations.  Digital video is processor intensive.  The only way to know if your Mac can do this it to try it.  If the video does not work together but each app works when it it the only app running, you are likely overloading your Mac's ability to process and/or move all the required data in your data bus.  You can get a better indication of whether this is the case by watching your Activity Monitor utility while running the apps you want to use.
    (b) If you mean that you want to have more than one compatible camera connected to your Mac simultaneously for ease of changing between video sources, some, but not necessarily all, apps you are using to operate your camera(s) allow you to select between your cameras.
    How you select among connected cameras depends on which application you are using. Here is how camera selection works in a few examples:
    (1) For iChat, you can choose which iSight you use in the "Camera:" choices bar in iChat > Preferences... > Audio/Video that appears when more than one compatible camera is connected. Although your camera choices will be different, the choices bar will look something similar to the Preferences settings shown here:
    If you cannot see the "Camera" choices bar, your Mac is recognizing only one (or none) of your cameras. In that case, consider the suggestions fromhttp://support.apple.com/kb/HT2090 for iSight problems or refer to your other camera's documentation for help.
    This particular choices bar solution applies ONLY to iChat. Most other applications also have settings that allow you to choose which camera to use. However, they do not all work the same way.
    (2) For instance, iMovie HD's camera choice is NOT set via Preferences. When you have more than one compatible camera connected, iMovie6 HD uses a drop-down menu choice something like this (depending on which version of iMovie you use):
    Note: Because I had no built-in iSight connected when I made this example, and because my external iSight was not connected, the drop-down menu showed only "Time Lapse." Because your Mac has a built-in iSight, your built-in iSight would show in the drop-down menu even when no other camera is connected. Connecting an additional Mac compatible webcam should allow you to choose either camera.
    Other iMovie versions work slightly differently.
    iMovie 9 (from iLife '11) uses a different camera choice button shown in this article:
      http://docs.info.apple.com/article.html?path=iMovie/9.0/en/mov39f84285.html
    iMovie 8 (from iLife '09) is slightly different as explained in this article:
      http://docs.info.apple.com/article.html?path=iMovie/8.0/en/10172.html
    In general, you can use your Mac's help for the application in use to find out how to select among more than one connected camera.
    (3) Photo Booth in Snow Leopard 10.6.x and later uses the Photo Booth > Camera menu command to select which camera to use.
    Note for readers with older Mac OS X: The previous version of Photo Booth that came with Tiger (10.4.x) is such a simple, basic app that it offers no menu selectable choice. Unless your built-in iSight is already occupied as the camera being used by some open application before you launch Photo Booth, Photo Booth will use ONLY your built-in iSight.
    However, you can use the trick from ¶ 4 of http://docs.info.apple.com/article.html?artnum=302781 to let Photo Booth use an external camera.
    (If you have an external Firewire camera connected, it may be used in preference to any USB webcam. If that is a problem for you, merely disconnect the problem Firewire device.)
    (4) For FaceTime, launch the app and click the Video menu item.
    If your Mac recognizes more than one connected compatible camera, a "Camera" section listing the cameras from which you can choose will appear there. Clicking on the desired camera name will let you select the one you want as shown in this image from my Mac Pro and LED Cinema Display:
    If your Mac recognizes only one compatible camera, the "Camera" section will not appear in the Video menu, but FaceTime will automatically use the connected camera that is recognized by OS X.
    (5) I do not use Skype oir Oovoo.  For those or other apps, see Help for each app for info on how to select your desired camera.
    Message was edited by: EZ Jim

  • Update 10.5.4 killed built-in iSight.

    I updated my MacBook Pro to update 10.5.4 and all seemed to work fine.... EXCEPT the built-in iSight is no longer showing up for applications (photo booth) or System Profiler. Anyone have any ideas. When I revert back to 10.5.2 (yes I do whole system updates when applying OS patches), the iSight is back. I used the full combo file patch.
    Any ideas or similar issues?
    Thanks,
    Tom

    atwood wrote:
    I just bought an isight and I'm having the same problem.
    Nothing registers my isight (photobooth, ichat...).
    The only information I've seen on blogs points to the 10.5.4 update.
    I'm trying a repair process that requires a regress to 10.5.1, upgrade to 10.5.2, then special upgrade to 10.5.4 (combo I believe it's called).
    P.S.
    Dear Apple,
    What's with all the software updates? I like you more when there were updates once a year. Now it's every week.
    No, it's not every week. Leopard was released last November and there have been 4 OS updates in those 9 months - less than one ever two months.
    The last OS update, 10.5.4 was released in June, several months ago.
    Tiger is up to version 11 last time I checked. Tiger was released in 2005, so that's about an update every three months.
    Also, nobody here works for Apple. You should phone or email them directly. This is a user-to-user forum.
    If you supplied more details about your issue we might be able to help. You probably did not need to reinstall Leopard.
    This post is about the built-in iSight, a completely different item. I suggest you start a new thread and repost your issue.
    Message was edited by: nerowolfe

  • Heavy Loading : Errors

    We've been dong some heavy load testing using WLS 51.sp8 on NT4 and Rational
    Performace Studio. Mostly it copes ok but we've had some odd errors. Can
    anyone explain what these 3 errors might be
    1) weblogic.rjvm.PeerGoneException ...with nested exception...Exception on
    send : weblogic.rmi.ConnectException: Unable to get socket or router to
    '5435608496654038531S172.16.7.14:[7001,7001,7002,7002,7001,-1]'
    2) ExecuteRequest failed. weblogic.rmi.ConnectException: Failed to create
    socket
    3) Connection to client for ClientContext - id: '#|myserver|0.986551116968',
    bound: 'true', dead: 'false' has been unexpectedly lost because
    weblogic.rjvm.PeerGoneException:
    - with nested exception: [java.io.EOFException]. Initiating hard
    disconnect.

    You require to use service pack 9 ,In this pack this bug is solved
    Ritesh
    "Mike Salway" <[email protected]> wrote in message
    news:[email protected]..
    We've been dong some heavy load testing using WLS 51.sp8 on NT4 andRational
    Performace Studio. Mostly it copes ok but we've had some odd errors. Can
    anyone explain what these 3 errors might be
    1) weblogic.rjvm.PeerGoneException ...with nested exception...Exceptionon
    send : weblogic.rmi.ConnectException: Unable to get socket or router to
    '5435608496654038531S172.16.7.14:[7001,7001,7002,7002,7001,-1]'
    2) ExecuteRequest failed. weblogic.rmi.ConnectException: Failed to create
    socket
    3) Connection to client for ClientContext - id:'#|myserver|0.986551116968',
    bound: 'true', dead: 'false' has been unexpectedly lost because
    weblogic.rjvm.PeerGoneException:
    - with nested exception: [java.io.EOFException]. Initiating hard
    disconnect.

  • Using a different webcam with Intel iMac with built-in isight cam.

    Hi...I hope someone can shed some light on this.
    I have an intel core duo iMac 20 with built-in isight.
    I use Yahoo Messenger (the new version) and have no problems getting my isight to work with it.
    For most circumstances, the built-in isight is fine... but sometimes having a camera with a zoom feature and the ability to pan further up or down would be most beneficial.
    I also own a usb Logitech (pro-4000) webcam (the last series for which they have Mac support) and have installed the latest Mac drivers for it. I can get the Logitec to run its built-in applications, but when I try to select a webcam to use for Yahoo (in the yahoo preferences webcam section), the only selection available to me is the built-in isight.
    Is there any way to get the option to choose between the Logitech and the isight?
    Thanks for any help you can give me...
    Intel Core Duo iMac 20"   Mac OS X (10.4.7)   2GHz/2GB 256VRAM

    http://webcam-osx.sourceforge.net/
    macam driver and macam component installation resolves this issue

  • Can u use a USB webcam on an iMac with built-in isight for Yahoo Messenge?

    Hi...I hope someone can shed some light on this.
    I have an intel core duo iMac 20 with built-in isight.
    I use Yahoo Messenger (the new version) and have no problems getting my isight to work with it.
    For most circumstances, the built-in isight is fine... but sometimes having a camera with a zoom feature and the ability to pan further up or down would be most beneficial.
    I also own a usb Logitech (pro-4000) webcam (the last series for which they have Mac support) and have installed the latest Mac drivers for it. I can get the Logitec to run its built-in applications, but when I try to select a webcam to use for Yahoo (in the yahoo preferences webcam section), the only selection available to me is the built-in isight.
    Is there any way to get the option to choose between the Logitech and the isight?
    I tried macam drivers, but that just gave me an application that allowed me to record video or snap pics from my Quickcam, Yahoo Messenger still does not recognize it as a source.

    http://webcam-osx.sourceforge.net/
    macam driver and macam component installation resolves this issue

  • How to use built-in iSight & external Firewire iSight simultaneously?

    The solutions I've found here and elsewhere, about launching iChat first so it "controls" the internal iSight and will force the firewire iSight to work, does not work. With Quicktime and Photo Booth, I stll get the feed from the internal camera.
    iChat has a dropdown menu showing "Built-in iSight" and "iSight". But when "iSight" is selected, the message "Camera is off" appears.
    What is the definitive method for using the built-in iSight and the firewire iSight simultaneously?  Thank you.

    Hi,
    Several answer to the implied questions.
    By Default iChat will choose the camera listed in the iChat menu > Preferences > Video section > camera drop down.
    (If there is only one camera this drop down does not appear)
    The External iSight may need it's iris opened if it is plugged in but you are being told it is Off.
    However also you may benefit from ticking the check box about an External Camera at the bottom of the same pane.
    As for "Simultaneously" http://b-l-a-c-k-o-p.com/CamCamX.html
    Other VJ type apps or that will do VJ type stuff are listed here under Movie Capture.
    10:18 PM      Saturday; June 25, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.7)
     Mac OS X (10.6.7),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Can I use built-in iSight camera with other apps?

    Can I use built-in iSight camera with other apps?
    How?
    doesn't work in imovie or image capture

    Hi Judson,
    THe built in iSight will actually work with iMovie if you have the version of iMovie which comes with iLife 6. (see http://docs.info.apple.com/article.html?artnum=61929 for a mention)
    There is a slightly clumsy "workaround" available for use with earlier versions of iMovie, but you need a dv cam to use it - see http://www.macosxhints.com/article.php?story=20051217210335199
    I gather that "EvoCam" - http://www.evological.com/evocam.html - will also work directly with the built in iSight.
    So too, should recent versions of QuicktimePro.
    As for other apps, tell us what you wish to do with it. We may be able to come up with some suggestions.
    Cheers
    Rod

  • Use external isight camera instead of built-in isight

    Is it possible to have an external isight camera be default instead of the built-in camera at the top of the monitor?  I'd like to use the external camera, which is more portable than the monitor, with such programs as Skype, but -(on Skype at least) I'm not given the option to choose anything except the built-in iSight cam.  Can the external iSight be the default cam?
    Thanks.
    Lee

     
    Not to sure if an external webcam (iSight) can be the "default" webcam.  Usually, the video app gives you choices of which webcam to use. 

Maybe you are looking for

  • Unable to install products via CCM because Bridge is running in the background

    asked to close Bridge.exe to complete download. Bridge was not open and can't find bridge.exe on search. Solution?

  • Making a Form to send to my email address

    Hey, I have no idea how to use scripts or what they mean. All im trying to do it make up a form with Name,email address and tick boxes as a whole form to be sent to my email address. Ive read in the other forms about how to do it but since i don't un

  • 2008 and 2014 side by side

    Hi Can we install SQL Server 2014 std on a server which already has 2008 std installed so we can migrate 2008 apps gradually? Thanks Regads

  • How can I get my InDesign keyboard shortcuts to work?

    Can anyone please tell me how to reset my InDesign defaults. They were working fine a while ago, but now my keyboard shortcuts don't respond. Eg Ctrl X, Ctrl V, Enter and my arrow keys. I have reset the preferences with Alt+Ctrl+Shift, and also renam

  • Volume Limit Error Code

    I cannot remember my password for my volume limit code. How do I reset or retrieve my old number? iPodNano   Other OS