Recording video of Skype video chat. Android. Rooted (newb)

For CPS court I desperately need to record the video chats I have with my children. Any help is welcome.

For CPS court I desperately need to record the video chats I have with my children. Any help is welcome.

Similar Messages

  • Question for Ralph Johns, recording video chat?

    Ralph,
    I noticed that on one of the thread you said that you could record video chat using Quicktime pro. How do you do that, I have been looking and looking on the ichat pref and quicktime pro pref menu, can't seem to see how to setup recording of ichat????
    Thanks

    Hi Fredericlang,
    Sorry my fault. I was partially remembering some of the work by EZ Jim who used to post here and who has given me a copy of his Blog. http://www.ralphjohnsuk.dsl.pipex.com/EZJim/EZJimpage7.html
    Quicktime Pro does not record the Desktop.
    2:15 PM Saturday; October 14, 2006

  • How to use Quicktime to record video chats (Skype, Google  Hangouts)?

    Hi, all,
    I'm making a movie that includes an interview of someone who lives out of state.  Thanks to modern technology, I can interview her without either of us having to travel farther than our computers.  But, thanks to modern technology, shouldn't there also be a way for me to record this interview for my movie?
    I've figured out how to use QuickTime Player to take a screen recording that includes the audio from the computer, but there are several problems with this.
    I downloaded Soundflower, set the Sound Output to "Soundflower (2ch)" in my System Preferences, then went to QuickTIme, where I started a screen recording and set the Microphone to "Soundflower (2ch)".  With a test run using music, I was able to capture the moving playhead and the audio.  The audio was pretty good, but not quite as good as if I were just listening to the music normally.
    However, this process won't work for an interview setting.  While I was recording, I wasn't able to hear the music on my headphones.  Only afterwards was I able to hear the music.  This means that if I were interviewing someone, Quicktime would be recording her voice but I wouldn't be able to hear what she was saying until after I replayed the video.  Also, I have no idea if the person on the other end of the video chat would be able to hear me (I did leave the sound Input to "Internal microphone" with no trouble from Quicktime).
    Is there a way to have Quicktime record the video and audio and for me to hear what's going on at the same time?
    If not, what [free] software does this?
    Thanks!
    P.S.  Does Quicktime have a limit to screen recording time?

    Great info, thanks for the post!

  • How do you import a recorded video chat into iMovie 09?

    I recorded a video chat, and I have tried to import it a few times, but every time it never imports and says there are no clips in the event. What do I do?
    thanks, Paige

    Hi,
    I am having the same problem. The video I took appears as a .MOV file and nothing seems strange about it (plays in iTunes and iPhoto). I tried copying it to the desktop and importing, and that says nothing to import. It also does not appear in the iPhoto Movie browser in iMovie. Is there some sort of security setting that wouldn't allow an iChat video clip to appear in iMovie?
    I am using iChat 5.0.3 (745) and iMovie 8.0.6 (821).
    Regards,
    Keith
    Message was edited by: altbeast1

  • Recording video chat

    Hi, Is it possible to record a video chat? I chat with my daughter everyday during work and would love to capture some for when she is older.
    Thanks

    Hi Kim,
    There is also http://www.ambrosiasw.com/utilities/snapzprox/
    Although this one cost a little more.
    Ralph

  • Recording video chats

    just wondering if there's a way i can set up a default setting to automatically record any ichat video session i'm in. i tend to forget to click 'record' and so don't keep a record of my video chats. my aMSN has such as setting whereby it records all video chats.
    rick

    i have the same problem. file not found also in the "movies" folder in itunes. im almost sure its never saved to disc!

  • Recorded video chats always open iTunes at conclusion

    not only this, but the video file is copied and saved into a "Movie" folder in my iTunes folder. I have check all the prefs in ichat and iTunes and cannot figure out how to stop this. I record ichats several times a week so this is very annoying.
    Any help appreciated.
    Waddo

    Hi,
    Annoying as this is I am not sure there is another way to do this in Snow Leopard.
    Previously the Ecamm boys did Conference Recorder but it no longer works in Snow Leopard.
    http://www.ecamm.com/mac/conferencerecorder/
    I cannot remember my Leopard version of iChat (ichat 4.x) opening iTunes on completion but it is a very long while since I did it.
    7:26 PM Friday; March 19, 2010
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • Video Chat on Android very slow !

    Hi everyone,
    I'm developing an audio/video chat Android application. On my Android device (Samsung Galaxy S), all works... but it is very very slow !!
    I launch the application (release version) on my phone and then I launch this application from my computer (from Flash Builder)
    Each applications are connected to the Cirrus server and streams are sent/received. On my computer, no problem. But on my phone, the CPU usage grows immediatly (>90 % !) and the app finish to crash.
    Before I click on the "connect" button : RAM 26 mb / CPU 0.33% (great !)
    When I publish my audio/video via NetStream : RAM 42 mb / CPU 64%
    When I publish AND receive an audio/video NetStream : RAM 48 mb / CPU 94%
    By the way, my phone is getting hot...
    I know that this could be done without such performance problems on Android. The proof : http://coenraets.org/blog/2010/07/video-chat-for-android-in-30-lines-of-code/
    Yes, LCCS is use here by C. Coenraets, but LCCS is nothing but a NetConnection/NetStream and a RTMFP solution... So what am i doing wrong ? Any help would be very appreciated.
    I paste here the code (firstView of the ViewNavigatorApplication) :
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
                        xmlns:s="library://ns.adobe.com/flex/spark" title="HomeView" xmlns:mx="library://ns.adobe.com/flex/mx" actionBarVisible="false">
              <fx:Script>
                        <![CDATA[
                                   * Tezqa | [email protected] | www.tezqa.com
                                  private var SERVER:String = "rtmfp://p2p.rtmfp.net/";
                                  private var KEY:String = "CIRRUS DEVELOPER KEY";
                                  private var netConnection:NetConnection;
                                  private var netStreamPublisher:NetStream;
                                  private var netStreamSubscriber:NetStream;
                                  private var groupSpecifier:GroupSpecifier;
                                  private var camera:Camera;
                                  private var microphone:Microphone;
                                  private var videoPublisher:Video;
                                  private var videoSubscriber:Video;
                                  private var username:String;
                                  private var budyname:String;
                                  [Bindable] private var connected:Boolean = false;
                                  private function startStop():void {
                                            if (connected) {
                                                      disconnect();
                                            } else {
                                                      username = usernameInput.text;
                                                      budyname = budynameInput.text;
                                                      connect();
                                  private function connect():void {
                                            netConnection = new NetConnection();
                                            netConnection.addEventListener(NetStatusEvent.NET_STATUS, netStatus);
                                            netConnection.connect (SERVER, KEY);
                                  private function onConnect():void {
                                            connected = true;
                                            groupSpecifier = new GroupSpecifier ("com.tezqa.mobilecam");
                                            groupSpecifier.multicastEnabled = true;
                                            groupSpecifier.postingEnabled = true;
                                            groupSpecifier.serverChannelEnabled = true;
                                            netStreamPublisher = new NetStream (netConnection, groupSpecifier.groupspecWithAuthorizations());
                                            netStreamPublisher.addEventListener (NetStatusEvent.NET_STATUS, netStatus);
                                            attachCamera();
                                            attachMicrophone();
                                            netStreamPublisher.publish ("stream_" + username, "live");
                                            videoPublisher = new Video(uic1.width, uic1.height);
                                            videoPublisher.attachCamera(camera);
                                            uic1.addChild(videoPublisher);
                                            netStreamSubscriber = new NetStream (netConnection, groupSpecifier.groupspecWithAuthorizations());
                                            netStreamSubscriber.addEventListener (NetStatusEvent.NET_STATUS, netStatus);
                                            netStreamSubscriber.play ("stream_" + budyname);
                                            videoSubscriber = new Video(uic2.width, uic2.height);
                                            videoSubscriber.attachNetStream(netStreamSubscriber);
                                            uic2.addChild(videoSubscriber);
                                  public function attachMicrophone():void {
                                            microphone = null;
                                            netStreamPublisher.attachAudio (null);
                                            microphone = Microphone.getEnhancedMicrophone();
                                            if (!microphone) microphone = Microphone.getMicrophone();
                                            if (microphone) {
                                                      microphone.codec = SoundCodec.SPEEX;
                                                      microphone.framesPerPacket = 1;
                                                      microphone.setSilenceLevel(0, 3000);
                                                      microphone.gain = 100;
                                                      microphone.rate = 22;
                                                      netStreamPublisher.attachAudio (microphone);
                                  public function detachMicrophone():void {
                                            netStreamPublisher.attachAudio (null);
                                            microphone = null;
                                  public function attachCamera(cameraPosition:String = "auto"):Camera {
                                            camera = null;
                                            netStreamPublisher.attachCamera(null);
                                            if (cameraPosition == "auto") {
                                                      camera = Camera.getCamera();
                                            } else {
                                                      if (Camera.names.length == 1) {
                                                                camera = Camera.getCamera();
                                                      } else {
                                                                var tmpCamera:Camera = null;
                                                                for (var i:uint = 0; i < Camera.names.length; i++) {
                                                                          tmpCamera = Camera.getCamera(Camera.names[i]);
                                                                          if (tmpCamera.position == cameraPosition) {
                                                                                    camera = tmpCamera;
                                                                                    break;
                                            if (camera) {
                                                      camera.setMode (640, 480, 15, true);
                                                      camera.setQuality (15000, 0); // 30000, 0 (adobe settings)
                                                      netStreamPublisher.attachCamera (camera);
                                                      return camera;
                                            } else {
                                                      return null;
                                  public function detachCamera():void {
                                            netStreamPublisher.attachCamera (null);
                                            camera = null;
                                  private function disconnect():void {
                                            detachCamera();
                                            detachMicrophone();
                                            netStreamPublisher.close();
                                            netStreamSubscriber.close();
                                            netStreamPublisher.removeEventListener(NetStatusEvent.NET_STATUS, netStatus);
                                            netStreamSubscriber.removeEventListener(NetStatusEvent.NET_STATUS, netStatus);
                                            netConnection.removeEventListener(NetStatusEvent.NET_STATUS, netStatus);
                                            netStreamPublisher = null;
                                            netStreamSubscriber = null;
                                            netConnection = null;
                                            videoPublisher.clear();
                                            videoPublisher.attachCamera(null);
                                            videoSubscriber.clear();
                                            uic1.removeChild(videoPublisher);
                                            uic2.removeChild(videoSubscriber);
                                            videoPublisher = null;
                                            videoSubscriber = null;
                                            connected = false;
                                  private function netStatus(e:NetStatusEvent):void {
                                            switch(e.info.code) {
                                                      case "NetConnection.Connect.Success":
                                                                onConnect();
                                                                break;
                                                      default:
                                                                break;
                        ]]>
              </fx:Script>
              <s:VGroup width="100%" height="100%">
                        <s:HGroup width="100%" height="100%">
                                  <mx:UIComponent id="uic1" width="50%" height="100%"/>
                                  <mx:UIComponent id="uic2" width="50%" height="100%"/>
                        </s:HGroup>
                        <s:Label text="Connected : {connected}" paddingLeft="10"/>
                        <s:HGroup width="100%" horizontalAlign="center" verticalAlign="middle" paddingBottom="10">
                                  <s:TextInput id="usernameInput" prompt="Enter your name" text="lug" width="35%"/>
                                  <s:TextInput id="budynameInput" prompt="Enter budy name" text="kat" width="35%"/>
                                  <s:Button label="{connected?'Disconnect':'Connect'}" click="startStop()"/>
                        </s:HGroup>
              </s:VGroup>
    </s:View>

    Ok my microphone and camera settings were bad.
    I comment out these lines :
                                                      microphone.codec = SoundCodec.SPEEX;
                                                      microphone.framesPerPacket = 1;
                                                      microphone.setSilenceLevel(0, 3000);
                                                      microphone.gain = 100;
                                                      microphone.rate = 22;
    //camera.setMode (640, 480, 15, true);
                                                      //camera.setQuality (15000, 0); // 30000, 0 (adobe settings)
    Then the application works better, but still use CPU at 80-90% after a while... And finish to crash. Any idea ?

  • Record Video in iChat no longer available

    Trying to help my Dad with this problem.
    He owns a MacBook Air, and recently upgraded to Snow Leopard (now on 10.6.3). Before, in Leopard, he was able to record iChat sessions in "Video-> Record Chat" with the same computer. For some reason, now that option is grayed out.
    Under "Video -> Connection Doctor -> Capabilities", it lists "Insufficient CPU" next to "Record Video Chat".
    I had him delete all of his iChat preferences in his Home->Library->Preferences folder (which subsequently fixed the problem of me not being able to share his screen). However, it did not fix the record video problem.
    Did Apple take out this feature for certain processors with the advent of Snow Leopard? How can he get it back short of taking 10.6 off of his system? Seems very strange to me that this is not working when it used to.

    Answered in iChat 3
    9:09 PM Wednesday; April 21, 2010
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • Can't find saved video chat anywhere?

    Where does iChat save the recorded video chats?
    Its not in Downloads, its not in iTunes, and its not in the Documents/iChats folder. Where could it possibly be? My friend tried recording it on her computer, and can't find it either. Help?!?

    Also look in Movies
    Are you sure it is not in iTunes after you have closed the Chat window ?
    10:02 PM Monday; June 14, 2010
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • Recording a Skype video chat?

    I have an iMac with built-in iSight and I want to record a Mac-to-PC video chat through Skype.
    Does anyone know how I can do this with Skype? iChat to AIM/PC has been very lame. So I use Skype.
    Is there a third party program that makes this video chat into an .mov?
    Thanks,
    Panther

    http://www.ecamm.com/mac/callrecorder/
    9:09 PM Friday; November 23, 2007

  • Video chat not working in enjoy 10 (skype and ym)

    i just bought enjoy 10 for my wife. i'm working in another country. when they are using skype or ym the video chat is not working. my daughter said that a message about compatibility is showing. can someone help me on this. Thanks. 

     OK, you have already Tested your iSight to ensure it is functional, and you have determined that your real problem is with iChat AV.
    You are right to be suspicious of the iChat AV 3 error messages. Sometimes all they do is confirm that you cannot connect. As in your case, it is not unusual that the error message obviously does NOT report the real error condition.
    The suggestions in How to get iChat AV working again will help you get going. Sometimes the fix is as simple as adjusting your QuickTime Streaming Speed as suggested in the "Help for iChat AV 3 Problems" link there.
    I do not use any of the add-ons that you mention. For questions about iGlasses, Power Boost, and Conference Recorder, I suggest that you visit the ecamm.com respective web pages for each product. If the "faq" links for each app do not help, you can contact ecamm tech support for help with their apps.

  • Isight not recognized by Skype, Google Video Chat, Logitech VID and ichat.

    MacBook4,1 Firewire
    Leopard 10.5.8
    Skype 2.8.0.866
    Quicktime Plug in 7.6.9
    QUictime player MIA
    Here is my story. I will try and make it as brief as possible.
    The other day, I put a rented DVD into my dvd drive, and it didn't load. I checked for updates for Mac or quicktime. Nothing available. I did some googlin, and someone suggested I zap pram, repair permissions. I blindly obeyed. That didn't help. Then I messed around with quicktime. Not sure what I did. Finally, I had to download the latest version of VLC to watch my movie. I have no idea of my problems with QT have anything to do with my isight issues with Skype and the like, but I mentioned it just in case.
    The next morning, when I went to skype, my video wasn't sending. I'm not sure if my chat partners video was working, we usually only do it one way. Me sending.
    I checked to see if my video was working in photobooth. Indeed it was (and still does).
    I have to date:
    Downloaded the latest version of QT (7.6.9 for Leopard)- the web plug-in for watching QT online is installed and running properly.
    After install, the QT player does not show up in applications, or anywhere else on the hard drive.
    I Messed around with QT in ways I can't describe. Trying to install older versions, removing who knows what files. Installing again.
    zapped PRAM
    Cleared preferences for Skype by removing skype plist
    download latest version skype
    deleted all skype files I could find
    reinstall Skype
    repaired permissions (FIRST THING I DID)
    Put your Mac to sleep
    Wake the computer after it has gone to sleep.
    Restart your Mac by by choosing the Apple
    Shut down your Mac
    Start up mac
    Shutting down, disconnecting power supply, taking out batter, putting dumte mac together again
    changed permissions on skype specifically to make sure all accounts were read/write
    tried setting using skype with a new account
    tried using skype, google video and logitech using wifi at my work
    uninstalled PREY video security app plug in
    removed and uninstalled divx
    removed and uninstalled perian
    Checked Preferences>Video show a black screen that says "No Video Camera Connected" and does not show ANY cameras in the video camera chooser drop down"
    NOTE: Google Video Chat does show the isight cam, but a black screen. Logitech just has a black screen and asks "where in the interweb is your cam buddy?
    I have searched and failed to find CamCamX5.component
    Tested video in Google Chat and Logitech VID chat. built-in isight not recognized
    Tested video in iChat - I chat crashed when opening. (i posted the crash report at the end of this post)
    I'm sure I'm missing some.......
    SOME THINGS I HAVE NOT YET TRIED
    ROSETTA - in the Skype info pane, Rosetta is greyed out. I don't know if I have it, don't know where to get it. Don't know if I need.
    Installing Skype while playing Stairway to Heaven backwards
    Reset SMC or PMU
    Done disk repair - I'm not sure how to do that, I used to have a disc for my old mac for that
    Deleted iPhotoPhotocast and/or QuartzComposer.
    Closing Firefox and starting Skype
    install older version of skype
    ICHAT CRASH REPORT
    Model: MacBook4,1, BootROM MB41.00C1.B00, 2 processors, Intel Core 2 Duo, 2.4 GHz, 2 GB
    Graphics: kHW_IntelGMA965Item, GMA X3100, spdisplays_builtin, 144 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x88), Broadcom BCM43xx 1.0 (5.10.91.21)
    Bluetooth: Version 2.1.9f10, 2 service, 1 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: FUJITSU MHY2160BH, 149.05 GB
    Parallel ATA Device: HL-DT-ST DVDRW GSA-S10N
    USB Device: Built-in iSight, (null) mA
    USB Device: Apple Internal Keyboard / Trackpad, (null) mA
    USB Device: IR Receiver, (null) mA
    USB Device: Bluetooth USB Host Controller, (null) mA
    Process: iChat [191]
    Path: /Applications/iChat.app/Contents/MacOS/iChat
    Identifier: com.apple.iChat
    Version: ??? (???)
    Build Info: iChat-6220000~1
    Code Type: X86 (Native)
    Parent Process: launchd [67]
    Interval Since Last Report: 7034092 sec
    Crashes Since Last Report: 37
    Per-App Interval Since Last Report: 0 sec
    Per-App Crashes Since Last Report: 2
    Date/Time: 2011-01-17 20:32:51.126 -0800
    OS Version: Mac OS X 10.5.8 (9L31a)
    Report Version: 6
    Anonymous UUID: A12CF9D7-D5A7-4ED6-8488-B9B5FD597DC4
    Exception Type: EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread: 0
    Application Specific Information:
    * Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Couldn't load DefaultDefaults'
    Thread 0 Crashed:
    0 com.apple.CoreFoundation 0x9313ae94 __TERMINATING_DUE_TO_UNCAUGHT_EXCEPTION__ + 4
    1 libobjc.A.dylib 0x92f2ae3b objcexceptionthrow + 40
    2 com.apple.CoreFoundation 0x9313adcb +[NSException raise:format:arguments:] + 155
    3 com.apple.Foundation 0x9530ef35 -[NSAssertionHandler handleFailureInFunction:file:lineNumber:description:] + 101
    4 iChatCommonGUI 0x009e135d RegisterDefaults + 232
    5 com.apple.iChat 0x0013c10c 0x1000 + 1290508
    6 com.apple.iChat 0x0000341e 0x1000 + 9246
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0xa03560f0 ebx: 0x92f2ae1c ecx: 0xa03551a0 edx: 0x00a2a000
    edi: 0x00000000 esi: 0x009f71b0 ebp: 0xbffffa38 esp: 0xbffffa38
    ss: 0x0000001f efl: 0x00000282 eip: 0x9313ae94 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x0231e000
    Binary Images:
    0x1000 - 0x23cfef com.apple.iChat 4.0.9 (622) <deb92a6fd826a5eb82f1d8991748ef59> /Applications/iChat.app/Contents/MacOS/iChat
    0x2b1000 - 0x326ff7 com.apple.Bluetooth 2.1.9 (2.1.9f10) <d70a88066ebf7eb8071781f686caced3> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x375000 - 0x391fff com.apple.IMFramework 4.0.8 (584) <49551f914cd1c3ba154f15f3765803a9> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x3aa000 - 0x4ddff6 com.apple.viceroy.framework 363.57 (363.59) <3de89d35cae265ca45b876897be26679> /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x54e000 - 0x58dfff com.apple.vmutils 4.1 (104) <9009c24d9279b0794970d8eea4134201> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x5af000 - 0x6b6ff7 com.apple.WebKit 5533.19 (5533.19.4) <9299024ba5d2d796781e6d7312fae16a> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x76a000 - 0x783fff com.apple.frameworks.preferencepanes 12.2 (12.2) <090decd2f1c3f48031e43fdf2171469f> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x79d000 - 0x79fffd com.apple.CrashReporterSupport 10.5.7 (161) <ccdc3f2000afa5fcbb8537845f36dc01> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7a6000 - 0x7d8fff com.apple.remotedesktop.screensharing 1.0.3 (1.0.3) <a6a5cd9d317cc6606b6b02c96df076fb> /System/Library/PrivateFrameworks/ScreenSharing.framework/Versions/A/ScreenShar ing
    0x7eb000 - 0x7ffff7 com.apple.ScreenSaver 2.2 (2.2) <e8b7c717976f8af3ec1f255c5ad04caf> /System/Library/Frameworks/ScreenSaver.framework/Versions/A/ScreenSaver
    0x810000 - 0x823fff com.apple.IMUtils 4.0.8 (584) <2105663d09d2bee0d8742159d0581a3e> /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x832000 - 0x850fe3 libexpat.1.dylib ??? (???) <eff8a63a23a7d07af62b36fdb329e393> /usr/lib/libexpat.1.dylib
    0x858000 - 0x86ffff com.apple.datadetectors 1.0.1 (66.2) <b4676446cca8a1e4c28ca911026b7ceb> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x883000 - 0x8d1ff3 com.apple.datadetectorscore 1.0.2 (52.14) <bd3bfe061091be75ce6a27172b988702> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x902000 - 0x975fff com.apple.iLifeMediaBrowser 2.1.5 (368) <3026150475335424dd1532739ded6fb0> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x9c3000 - 0x9f5ff7 iChatCommonGUI ??? (???) <eaba5e1e294f518db1b573b7fee6ff87> /System/Library/PrivateFrameworks/iChatCommonGUI.framework/iChatCommonGUI
    0xa20000 - 0xa22fff com.apple.BezelServicesFW 1.4.9212 (1.4.9212) /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x1110000 - 0x1c0afff com.apple.WebCore 5533.19 (5533.19.4) <9b91bb00c553ec746fdbe51abca306af> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <458eed38a009e5658a79579e7bc26603> /usr/lib/dyld
    0x90003000 - 0x90032fe3 com.apple.AE 402.3 (402.3) <b13bfda0ad9314922ee37c0d018d7de9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x90036000 - 0x901b6fff com.apple.AddressBook.framework 4.1.2 (702) <f9360f9926ccd411fdf7550b73034d17> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x901b7000 - 0x901befe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x901bf000 - 0x90218ff7 libGLU.dylib ??? (???) <a3b9be30100a25a6cd3ad109892f52b7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90219000 - 0x90253fe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x90254000 - 0x902a2fe3 com.apple.AppleVAFramework 4.1.17 (4.1.17) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x902a3000 - 0x90427fef com.apple.MediaToolbox 0.484.2 (484.2) <32bf3254fafd942cf8f2c813960217fd> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x905b8000 - 0x905b8fff com.apple.Carbon 136 (136) <27d42531a2cbeb05a7f4d05a28281bd7> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x905b9000 - 0x90633ff8 com.apple.print.framework.PrintCore 5.5.4 (245.6) <03d0585059c20cb0bde5e000438c49e1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x90634000 - 0x90673fef libTIFF.dylib ??? (???) <a5991d757f0c17a9bb8b1bcb14ab9ec0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x90674000 - 0x90724fff edu.mit.Kerberos 6.0.14 (6.0.14) <673f107cdae80c084774a27bc7bc46c1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x90725000 - 0x90769feb com.apple.DirectoryService.PasswordServerFramework 3.0.4 (3.0.4) <45d0af6eed184b278990175527a0d3fa> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x9076a000 - 0x90779ffe com.apple.DSObjCWrappers.Framework 1.3 (1.3) <09deb9e32d0d09dfb95ae569bdd2b7a4> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9077a000 - 0x90804ff7 com.apple.DesktopServices 1.4.9 (1.4.9) <f5e51a76d315798371b3dd35a4d46d6c> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90805000 - 0x9093dfe7 com.apple.imageKit 1.0.2 (1.0) <00d03cf7f26e1b6023efdc4bd15dd52e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x9093e000 - 0x90940ff5 libRadiance.dylib ??? (???) <276f13ab6429e05b093a8dda251e3b53> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x90941000 - 0x90c6cff6 com.apple.QuickTime 7.6.9 (1680.9) <024f122335016a54f8e59ddb4c79901d> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x90c6d000 - 0x90e3eff3 com.apple.security 5.0.6 (37592) <0b25e1e4cc34431630f01edb3fdf54d1> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x90e3f000 - 0x90e88fef com.apple.Metadata 10.5.8 (398.26) <e4d268ea45379200f03cdc7c8bedae6f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x90e89000 - 0x90e89ffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x90e8a000 - 0x90f1dfff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x90f1e000 - 0x915befef com.apple.CoreGraphics 1.409.7 (???) <7b65edcce394f39b6a1954d5e30bc34c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x915bf000 - 0x91726ff3 libSystem.B.dylib ??? (???) <c8f52e158bf540cc000146ca8a705958> /usr/lib/libSystem.B.dylib
    0x91727000 - 0x9172cffc com.apple.KerberosHelper 1.1 (1.0) <c6b942d705fa0460ace11af01f316db1> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x9172d000 - 0x917c0ff3 com.apple.ApplicationServices.ATS 3.8 (???) <e61b0945da6ab368348a927f7428ad67> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x917c1000 - 0x917cefe7 com.apple.opengl 1.5.10 (1.5.10) <5a2813f80c9441170cc1ab8a3dac5038> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x917cf000 - 0x917d3fff com.apple.OpenDirectory 10.5 (10.5) <7d9ff71c60ad73f4c82a638abc233bf0> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x917d4000 - 0x91b90ff4 com.apple.VideoToolbox 0.484.2 (484.2) <46c37a5fead4e4f58501f15a641ff476> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x91b91000 - 0x91e6bff3 com.apple.CoreServices.CarbonCore 786.16 (786.16) <60b518e4ad02b91826240199a6311286> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x91e6c000 - 0x91e6cff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91e6d000 - 0x91eabfff libGLImage.dylib ??? (???) <a6425aeb77f4da13212ac75df57b056d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x91eac000 - 0x91f39ff7 com.apple.LaunchServices 292 (292) <a41286c7c1eb20ffd5cc796f791070f0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x91f3a000 - 0x922d7fef com.apple.QuartzCore 1.5.8 (1.5.8) <a28fa54346a9f9d5b3bef076a1ee0fcf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x922d8000 - 0x922d8ffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x922d9000 - 0x9234bfff com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x9234c000 - 0x923feffb libcrypto.0.9.7.dylib ??? (???) <d02f7e5b8a68813bb7a77f5edb34ff9d> /usr/lib/libcrypto.0.9.7.dylib
    0x923ff000 - 0x9247cfef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9247d000 - 0x92487feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92488000 - 0x9248cfff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x9248d000 - 0x92c8bfef com.apple.AppKit 6.5.9 (949.54) <4df5d2e2271175452103f789b4f4d8a8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x92c8c000 - 0x92ca8ff3 com.apple.CoreVideo 1.6.1 (48.6) <186cb311c17ea8714e918273c86d3c13> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x92ca9000 - 0x92cebfef com.apple.NavigationServices 3.5.2 (163) <91844980804067b07a0b6124310d3f31> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92cec000 - 0x92d93feb com.apple.QD 3.11.57 (???) <35f058678972d42b88ebdf652df79956> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x92d94000 - 0x92db1ff7 com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x92db2000 - 0x92efaff7 com.apple.ImageIO.framework 2.0.7 (2.0.7) <acf821a3c418fdc86ef02b654366f5f6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x92efb000 - 0x92efffff libGIF.dylib ??? (???) <36f7b0255a81d97c7b360c3b11b4e462> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x92f00000 - 0x92f16fff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x92f21000 - 0x93001fff libobjc.A.dylib ??? (???) <7b92613fdf804fd9a0a3733a0674c30b> /usr/lib/libobjc.A.dylib
    0x93002000 - 0x9304dfe1 com.apple.securityinterface 3.0.4 (37213) <16de57ab3e3f85f3b753f116e2fa7847> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9304e000 - 0x93181fe7 com.apple.CoreFoundation 6.5.7 (476.19) <a332c8f45529ee26d2e9c36d0c723bad> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x93182000 - 0x93182ff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93183000 - 0x93541fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9356b000 - 0x936a4ff7 libicucore.A.dylib ??? (???) <f2819243b278259b9a622ea111ea5fd6> /usr/lib/libicucore.A.dylib
    0x936a5000 - 0x936f0ff7 com.apple.CoreMediaIOServices 130.0 (935) <e7c6d794bbec49f9d1ee8261c3f9ff0e> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x936f1000 - 0x936f9fff com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x936fa000 - 0x93756ff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93757000 - 0x93763ffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x93764000 - 0x9384cff3 com.apple.CoreData 100.2 (186.2) <44df326fea0236718f5ed64084e82270> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9384d000 - 0x9385dffc com.apple.LangAnalysis 1.6.5 (1.6.5) <d057feb38163121ffd871c564c692804> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9385e000 - 0x9385effa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x949f9000 - 0x94a09fff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <06d8fc0307314f8ffc16f206ad3dbf44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x94a0a000 - 0x94a59fff com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x94a5a000 - 0x94e6afef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x94e6b000 - 0x94e8affa libJPEG.dylib ??? (???) <d23f3f3b9d168bf32f89449f83fa07f7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x94e8b000 - 0x94eaffeb libssl.0.9.7.dylib ??? (???) <5b29af782be5894be8b336c9c73c18b6> /usr/lib/libssl.0.9.7.dylib
    0x94eb8000 - 0x94ecdffb com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x94ece000 - 0x94ed3fff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x94ed4000 - 0x94f7bfec com.apple.CFNetwork 438.16 (438.16) <dbf00ca36a09edfae60ec44f9d7a9ef9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x94f7c000 - 0x95003ff7 libsqlite3.0.dylib ??? (???) <3334ea5af7a911637413334154bb4100> /usr/lib/libsqlite3.0.dylib
    0x95004000 - 0x95004ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x95005000 - 0x9500cffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x9500d000 - 0x95047ffe com.apple.securityfoundation 3.0.2 (36131) <39663c9b6f1a09d0566305d9f87cfc91> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x95048000 - 0x950c7ff5 com.apple.SearchKit 1.2.2 (1.2.2) <3b5f3ab6a363a4d8a2bbbf74213ab0e5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x950c8000 - 0x950cefff com.apple.print.framework.Print 218.0.3 (220.2) <5b7f4ef7c2df36aff9605377775781e4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x950cf000 - 0x95106fff com.apple.SystemConfiguration 1.9.2 (1.9.2) <8b26ebf26a009a098484f1ed01ec499c> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x95131000 - 0x95133fff com.apple.securityhi 3.0 (30817) <31baaf7ea27b41480604ffc910fe827f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x95134000 - 0x951effe3 com.apple.CoreServices.OSServices 228.1 (228.1) <76fdc146b4d9937f9c5cbaa1512e0023> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x951f0000 - 0x951f0ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x951f1000 - 0x9546dfe7 com.apple.Foundation 6.5.9 (677.26) <c68b3cff7864959becfc7fd1a384f925> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x95480000 - 0x95481ffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x95482000 - 0x95563ff7 libxml2.2.dylib ??? (???) <b3bc0b280c36aa17ac477b4da56cd038> /usr/lib/libxml2.2.dylib
    0x95571000 - 0x95769fff com.apple.JavaScriptCore 5533.19 (5533.19.1) <a099821bc9203b1bba37aee855280e28> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x958a1000 - 0x958aafff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <73cf6b3c5ddf94d7ce9ae2c81c1b558c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x958ab000 - 0x958fcfeb com.apple.framework.familycontrols 1.0.4 (1.0.4) <e76b4fa1c25673c8e0fb183b6c0e8eaf> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x959c7000 - 0x959d6fff libsasl2.2.dylib ??? (???) <0ae9f3c08d8508d9dba56324c60ceb63> /usr/lib/libsasl2.2.dylib
    0x959d7000 - 0x95a00fff libcups.2.dylib ??? (???) <2b0ab6b9fa1957ee940835d0cfd42894> /usr/lib/libcups.2.dylib
    0x95a0d000 - 0x95a0dffe com.apple.quartzframework 1.5 (1.5) <4b8f505e32e4f2d67967a276401f9aaf> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x95a0e000 - 0x95a26fff com.apple.openscripting 1.2.8 (???) <572c7452d7e740e8948a5ad07a99602b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x95a27000 - 0x95a38ffe com.apple.CFOpenDirectory 10.5 (10.5) <39d48cd00b8f9ca3fcdd251715cc74d5> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x95ade000 - 0x95ae3fff com.apple.DisplayServicesFW 2.0.2 (2.0.2) <cb9b98b43ae385a0f374baabe2b71764> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x95ae4000 - 0x95b24fef com.apple.CoreMedia 0.484.2 (484.2) <81221976abdc19f30723c81c5669bbc9> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x95b25000 - 0x95ce1ff3 com.apple.QuartzComposer 2.1 (106.13) <40f034e8c8fd31c9081f5283dcf22b78> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x95ce2000 - 0x961b3fbe libGLProgrammability.dylib ??? (???) <7f18294a7bd0b6afe4319f29187fc70d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x961b4000 - 0x96211ffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x96212000 - 0x96263ff7 com.apple.HIServices 1.7.1 (???) <ba7fd0ede540a0da08db027f87efbd60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x96264000 - 0x96267fff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x96268000 - 0x96268ffe com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <a2b462be6c51187eddf7d097ef0e0a04> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x96269000 - 0x9629bfff com.apple.LDAPFramework 1.4.5 (110) <bb7a3e5d66f00d1d1c8a40569b003ba3> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9629c000 - 0x963eeff3 com.apple.audio.toolbox.AudioToolbox 1.5.3 (1.5.3) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x963f7000 - 0x966fffe7 com.apple.HIToolbox 1.5.6 (???) <eece3cb8aa0a4e6843fcc1500aca61c5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x96700000 - 0x9672bfe7 libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
    0x9672c000 - 0x96876feb com.apple.QTKit 7.6.9 (1680.9) <fe987e6adf235d5754399dcdae6e5a8e> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x96877000 - 0x96895ff3 com.apple.DirectoryService.Framework 3.5.7 (3.5.7) <b4cd561d2481c4162ecf0acdf8cb062c> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x96896000 - 0x9689bfff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x9689c000 - 0x968c0fff libxslt.1.dylib ??? (???) <0a9778d6368ae668826f446878deb99b> /usr/lib/libxslt.1.dylib
    0x968c1000 - 0x96988ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x96989000 - 0x96997ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x96998000 - 0x969c9ffb com.apple.quartzfilters 1.5.0 (1.5.0) <22581f8fe9dd2cb261f97a897407ec3e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x969ca000 - 0x96a24ff7 com.apple.CoreText 2.0.5 (???) <5483518a613464d043455ac661a9dcbe> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x96a25000 - 0x96a43fff libresolv.9.dylib ??? (???) <a8018c42930596593ddf27f7c20fe7af> /usr/lib/libresolv.9.dylib
    0x96a44000 - 0x96a5fff3 libPng.dylib ??? (???) <c0791798fb92acc136c250a373449359> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x96a60000 - 0x96a60ffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x96a61000 - 0x96a8efeb libvDSP.dylib ??? (???) <b232c018ddd040ec4e2c2af632dd497f> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x96a8f000 - 0x96b0cfeb com.apple.audio.CoreAudio 3.1.2 (3.1.2) <782a08c44be4698597f4bbd79cac21c6> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x96b0d000 - 0x96b9aff7 com.apple.framework.IOKit 1.5.2 (???) <7a3cc24f78f93931731203854ae0d891> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x96b9b000 - 0x96c66fef com.apple.ColorSync 4.5.3 (4.5.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib
    I know this is a lot of info. I hope I didn't miss anything. I use skype with three people. Three very important people. Two of which, meh, the video isn't important. ONe where the video option is paramount.
    I'm just a little frustrated. Thanks in advance for any help.

    Hi,
    We will come back to iChat if required.
    It does prefer an Screen Name to be added as you go through the Start Up Screens (First Run) but you can click through these and just access the iChat > Preferences > Video Section to view a Preview.
    I must admit to not seeing a Crash Log when the known chosen Mic/Audio Input has not been listed.
    However if the External Audio was Firewire connected that may explain things.
    NOTE:-
    mAudio and other Firewire Audio Devices do tend to need the Most up-to-date drivers to work properly.
    Sometimes it pays not to do a COMBO or other Software Update until you know the drivers are ready for it.
    With any OS update above the 10.x.1 point will also have a COMBO version.
    The COMBO then includes all the updated items between the base level OS and the latest Update.
    So for 10.6 there is only what is called a Delta for 10.6.1
    There is a delta (10.6.1 to 10.6.2 only) and a COMBO (10.6 to 10.6.2) for the next update and this is repeated through 10.6.6
    The Deltas only include those things that are Updated on that occasion (As in the 10.6.1 to 10.6.2 example - 10.6.5 to 10.6.6 would not include the stuff in 10.6.4 or earlier)
    COMBOs can be installed "Over-the-Top" of what you have already installed.
    It is certainly needed when you Re-install something (Apple apps/Files etc) from the Install Disk you have when your OS has been updated beyond that point.
    Some apps like iChat Get their Updates in the OS Updates and need to "Match" the progression.
    The 10.5.8 COMBO (Your specs say 10.5.8) is Here
    For others the 10.6.5 COMBO is here
    and 10.6.6 COMBO IS here
    <hr>
    Quicktime.
    The Download and Install should be all the parts of Quicktime.
    Internet Plug-ins for Browsers, various System Files to make Quicktime work for other apps, various Components to play various formats and of course the Player itself.
    The Player should be in the Applications Folder with this icon:-
    The OS 10.6 version (Quicktime X has a big blue X icon)
    If you mean it has disappeared from the DOCK you can Drag the Application back to the DOCK to make the icon (and link to app) again (The app stays in the Applications folder the OS just makes an icon and links it for you by doing this)
    One of the biggest causes of many apps not working is turning Off/Disabling certain Fonts the apps need.
    Follow the Link in this Users Tip by Kurt Lang. Make sure that the Correct System Fonts are ON.
    9:53 PM Tuesday; January 25, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • I'm trying to video chat on Facebook and Skype they can hear me but not see me how do I fix that?

    trying to video chat on Facebook and Skype but they both don't work with the camera people can just hear me

    There is a certain minimum data rate your Internet service must support to do Video.
    The little pilot light next to the camera will come on when the camera comes on. You can test out the camera with Photo Booth.

  • Really Apple? OSX 10.8.5 disables built-in camera functionality with third party apps such as Skype and Gmail video chat. I do not have time machine on my 2013 MB Air. How can I get back to 10.8.4?

    Really Apple?
    With the release OSX 10.8.5 Apple has once again showed its true colors, and continued its efforts to create a closed Apple system, which eliminates third party vendors, unless, one can only assume... they pay.
    Included in this OSX update is the disabling of the built-in camera to work with third party applications such as Skype and Gmail video chat. No surprise the camera works just fine with Apple apps such as Facetime and Photobooth.
    The answer I got on my call to AppleCare to ask for assistance in reinstalling 10.8.4, so that I may Skype again, was we can not do that. You can not go back unless you have a time machine bkup.
    Can anyone help me get back to to 10.8.4 on my 2013 MB Air?
    I do not have a time machine bkup as this computer is not used to store important documents.
    Thank you.

    Read this post: 10.8.5 Broke Camera Usage For 3rd Party Apps Like Skype
    Another: isight not recognized in Skype after 10.8.5 upgrade
    Don't panic. Skype simply needs to update its app.

Maybe you are looking for

  • File Space check error while installing 11.5.8 trial version

    hi every body when i am trying to install oracle 11i trial version i am getting this error my system configuration is 512 MB RAM and 50 GB HDD and windows 2000 on Pentium 4 File Space Check Disk space on system acceptable: Database ORACLE_HOME = c:\o

  • Getting a Photo Album off my iPhone

    I have an album on my iPhone (iOS5) containing photos and videos. The photos are not in my camera roll. I want to get the photos off my phone (where they are preventing iCloud sync because the videos are so big) and onto my computer for storage. Howe

  • How to get the split period wage type amount in payslip?

    How to get the split period wage type amount in payslip? Payroll period for 01.01.09 to 31.01.09. 1.     Employee is active from 1.1.09 to 10.01.09 2.     Employee is inactive from 11.01.09 to 20.01.09 3.     Employee is again active from 21.01.09 to

  • Fixed tool bar in Java Web dyn pro

    Hi, I need to fix a toolbar at the top of screen, that should not scroll up when the page scrolls up. This needs to be done in JAVA Webdynpro. The scroll bars should nt scroll the toolbar upp while rest of the page is scrolled up. The user can scroll

  • Variable and Variant

    Hi, What is the difference between a variable and a variant. Thanks, JB