QuickTime Screen Recording: Audio Omitted Until Screen Activity Starts

I'm using QuickTime Player 10.1 on a 2011 MacBook Air 13" running Lion. I'm trying to make screen recordings with audio. This is working apart from the fact that the start of the recording is delayed until there is some screen activity. This is very inconvenient.
While this strikes me as probably a bug, I guess it's worth asking if anyone has any ideas for how to correct this behaviour?
Thanks,
Peter

I would think soundflower could do this as screenium uses it to do just what you are saying. But I have not been able to do it natively on QT X

Similar Messages

  • Quicktime not recording audio in New Movie Recording

    Audio is not recorded when using an audio interface as the input in New Movie Recording, but records fine when in New Screen and Audio Recording. Using my laptop's internal microphone is fine, cannot work out what the problem is, as it has worked absolutely fine in the past, but has stopped.
    Sound can be heard and the volume meter in Quicktime responds to sound coming in, just doesn't record at all in that mode.

    Are you launching Captivate with Run As Administrator privilege?
    If one of your co-workers logs onto your PC with their user profile, does the same microphone that doesn't work for you work OK for them?

  • Is it possible to change the way QuickTime X records audio?

    Is it possible to change the settings from recording in stereo, to recording in mono? When doing a "New Audio Recording" in QuickTime X

    Try the QuickTime forum.

  • Quicktime video recording - audio delay

    If i try to record a video using quicktime and my built-in webcam, and have the audio volume turned up so i can monitor as i record, there is a delay.
    This is the only program that delays audio as i record. To be clear, the final video is not out of sync, its just the audio delays if i try to listen as i record (important if you are recording guitar like i do)
    Any way to make it not delay?

    JTBluesmaker, When you record the computer has to capture the video/audio and then convert the video/audio and then play it back. I believe Quicktime is monitoring the recoding and not the audio input. With that, I would say there going to be a slight delay.
    If you have something like Apple's GarageBand you should be able to monitor the audio input.

  • Not being able to hear application audio on quicktime screen recording when using headset

    Can someone tell me how to still hear the computer audio (like the application sound) on while using quicktime screen recording when using headset?
    Someone help me please or tell me another application to do this with.

    hi paula
    your problem could be hardware/software. lets hope its software issue first and i'd like you to do these:
    if you have personal files on volume c, copy/backup them. shut down your computer, press one key recover button to perform clean windows installation. then check if the issue still persists.
    if you don,t want to use okr, you can use windows restore to restore your computer to previous restore points but if it's windows/virus issue, it may not help.

  • Can you recover lost audio from QuickTime screen recording?

    I recorded a two hour interview on FaceTime using the screen recording feature on QuickTime. Video is great, but no sound. I really don't want to have to re-do the interview if at all possible. Is there a way to recover the audio?

    I recorded a two hour interview on FaceTime using the screen recording feature on QuickTime. Video is great, but no sound. I really don't want to have to re-do the interview if at all possible. Is there a way to recover the audio?
    The screen recorder does not "natively" record audio. So if you did not record audio through a microphone (poor quality) or install/use additional software to capture system audio, then there is no audio to "recover" in your recording.

  • Quicktime screen recording with audio

    i want to record audio that is played by a software running on Mac when recording the screen.
    there seems four microphone setting: none, built-in input, soundflower 16ch and 2ch. but none of them worked properly.
    i found a software called iShowU that can record audio but not free.
    is there anyway to record screen and audio with quicktime?

    I would think soundflower could do this as screenium uses it to do just what you are saying. But I have not been able to do it natively on QT X

  • How to capture screen activity? (screen&audio to video file)

    Hello,
    I have to capture video desktop activity (including audio) to a file using JMF. I spent hours and hours searching this... a have studied a lot of classes, examples BUT I don't know how to bind them... how to record the actvity. My project is to record screen activity, upload on a server and finally control my computer remotely from an applet (or from another java desktop application). I will use HTTP streaming (what I record I upload on a server, then stream it to the client)
    Can someone show me some hints or code for modifying JVidCap example from Sun? Someone else on Sun forum said he could do it but did not say how...
    I just want to modify the video capturing so that I get the screen actifity recorded. I read nearly all examples possible including Screen Grabber...
    Please help me!
    I also have those two classes to get the screen activity as datasource... from [Screen Grabber|http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/solutions/ScreenGrabber.html] example but I really don't understand how to implement them in my application because there is no method returning a datasource object... (or probably I don't know how to use them):
    (DataSource and LiveStream class)
    I hope someone can bind them or help me to go on on this project.... it is so important to me ...

    Thanks A LOT for info. I really apprectiate it. This is my code... many mistakes I think... I have a NullPointerException. I renamed DataSource class to CDataSource and instead of line: "stream = streams[0] = new LiveStream(getLocator());" I passed the media locator:"stream = streams[0] = new LiveStream(ml);"
    public class capture extends javax.swing.JFrame implements DataSinkListener{
        private DataSink dataSink;
        private Processor outputProcessor;
        CaptureDeviceInfo cdi;
        public capture() throws IOException, NoDataSourceException, NoPlayerException, CannotRealizeException, IncompatibleSourceException {
                    initComponents();
    // video DataSource
            MediaLocator sourceLocator = new MediaLocator("screen://352,264,320,240/5");
             * javax.media.NoDataSourceException: Cannot find a DataSource for: screen://352,264,320,240/5
            at javax.media.Manager.createDataSource(Manager.java:1037)
    at commented line bellow*/
           // CDataSource videoDS = (CDataSource) Manager.createDataSource(sourceLocator);
            CDataSource videoDS = new CDataSource(sourceLocator);
    // sound DataSource
             cdi = CaptureDeviceManager.getDevice("DirectSoundCapture");         
             MediaLocator soundMediaLocator = cdi.getLocator();
             DataSource soundDS = Manager.createDataSource(soundMediaLocator);
             //merge Data Sources - is it correct?
             DataSource ds = Manager.createMergingDataSource(new DataSource[]{videoDS, soundDS});
    //check them - NullPointerException here, so I think the video DataSource is not correct? or merging is not correct?
              * Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
            at com.ibm.media.protocol.MergingDataSource.getContentType(MergingDataSource.java:53)
            at com.ibm.media.protocol.MergingPushBufferDataSource.getContentType(MergingPushBufferDataSource.java:63)
              System.out.println("ds: \n" + ds.getContentType() + ":" +
                                    ((PushBufferDataSource) ds).getStreams()[0].getFormat() + "\n" +
                                    ((PushBufferDataSource) ds).getStreams()[1].getFormat());
    //save to video file
             saveFile(ds);
             //handler
                    addWindowListener(new WindowAdapter() {
                            @Override
                            public void windowClosed(WindowEvent e) {
                                    try {
                                            if(outputProcessor != null) {
                                                    outputProcessor.close();
                                            if(dataSink != null) {
                                                    dataSink.close();
                                                    dataSink.stop();
                                    } catch(IOException ex) {
                                            ex.printStackTrace();
                private void saveFile(DataSource ds) throws NotRealizedError {
                      ProcessorModel outputPM = new ProcessorModel(ds,
                            new Format[]{new VideoFormat(VideoFormat.JPEG),new AudioFormat(AudioFormat.LINEAR)},
                            new FileTypeDescriptor(FileTypeDescriptor.QUICKTIME)
                      //save file here
                    MediaLocator dest = new MediaLocator("file://C:/rec.mov");
                    try {
                            outputProcessor = Manager.createRealizedProcessor(outputPM);
                            DataSource newDS = outputProcessor.getDataOutput();
                            newDS.connect();
                            newDS.start();
                            dataSink = Manager.createDataSink(newDS, dest);
                            dataSink.open();
                            dataSink.start();
                            dataSink.addDataSinkListener(this);
                            //record to that file
                            outputProcessor.start();
                    } catch(Exception e) {
                            e.printStackTrace();
    }I a starter in JMF (but not in java)... However I read so much JMF these days... I hope I will be a pro one day... :)
    Can you tell me my mistakes please? Should I use Merge class? (from example). Is video datasource correct?

  • QuickTime Screen Recorder Very Slow in Mountain Lion

    Is anyone else having problems with the QuickTime screen recorder in Mountain Lion vs in Snow Leopard? I remember it being light in Snow Leopard, but now, it hogs CPU and GPU (I think) cycles. Most of the time, what I'm trying to record (even just Safari or Finder windows) slows down because of it. Is there a fix for this? My computer is perfectly capable of running Mountain Lion and is much more powerful than my older Mac, which could use the screen recorder just fine in Snow Leopard.
    I've also noticed that, if you choose to record audio from a mic, it doesn't start recording video until you make a detectable sound. I can tell by the bitrate meter it shows. This is stupid in my opinion... It should just start when I tell it to.

    File a bug report with Apple. Aside from that, I can't help.

  • Quicktime screen recording in Mavericks

    Hi, how can I know that quicktime screen recording is running with the new mavericks that stopped showing the quicktime red button screen, and only the black square in the menu bar, how also to pause. right now I am using automateor pause, thanks

    OK got it now. however it still crashes after awhile. Again today even with more memory now. 6 GB. 
    Process:         QuickTime Player [583]
    Path:            /Applications/QuickTime Player.app/Contents/MacOS/QuickTime Player
    Identifier:      com.apple.QuickTimePlayerX
    Version:         10.3 (727.4)
    Build Info:      QuickTimePlayerX-727004000000000~4
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [188]
    Responsible:     QuickTime Player [583]
    User ID:         504
    Date/Time:       2015-03-10 19:35:48.347 -0400
    OS Version:      Mac OS X 10.9.5 (13F1066)
    Report Version:  11
    Anonymous UUID:  680F1549-41C5-3E5E-3B9D-BD7EFEFFAAC0
    Crashed Thread:  15  Dispatch queue: opencl_runtime
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000610
    VM Regions Near 0x610:
    -->
        __TEXT                 000000010ab81000-000000010ad75000 [ 2000K] r-x/rwx SM=COW  /Applications/QuickTime Player.app/Contents/MacOS/QuickTime Player
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib         0x00007fff8a552a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8a551d18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff8f57df15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff8f57d539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff8f57ce75 CFRunLoopRunSpecific + 309
    5   com.apple.HIToolbox           0x00007fff8e8dca0d RunCurrentEventLoopInMode + 226
    6   com.apple.HIToolbox           0x00007fff8e8dc7b7 ReceiveNextEventCommon + 479
    7   com.apple.HIToolbox           0x00007fff8e8dc5bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    8   com.apple.AppKit               0x00007fff8dd5b24e _DPSNextEvent + 1434
    9   com.apple.AppKit               0x00007fff8dd5a89b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    10  com.apple.AppKit               0x00007fff8dd4e99c -[NSApplication run] + 553
    11  com.apple.AppKit               0x00007fff8dd39783 NSApplicationMain + 940
    12  libdyld.dylib                 0x00007fff9025e5fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff8a557662 kevent64 + 10
    1   libdispatch.dylib             0x00007fff8afb1421 _dispatch_mgr_invoke + 239
    2   libdispatch.dylib             0x00007fff8afb1136 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff8a556e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8d8e5f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff8d8e8fb9 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff8a556e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8d8e5f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff8d8e8fb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib         0x00007fff8a552a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8a551d18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff8f57df15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff8f57d539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff8f57ce75 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit               0x00007fff8defb05e _NSEventThread + 144
    6   libsystem_pthread.dylib       0x00007fff8d8e4899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff8d8e472a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff8d8e8fc9 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x00007fff8a552a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8a551d18 mach_msg + 64
    2   com.apple.audio.CoreAudio     0x00007fff89d1c00e HALC_Object_HasProperty + 106
    3   com.apple.audio.CoreAudio     0x00007fff89d1bf8d HALC_ProxyObject::HasProperty(AudioObjectPropertyAddress const&, bool&) const + 37
    4   com.apple.audio.CoreAudio     0x00007fff89d42428 HALC_ShellObject::HasProperty(unsigned int, AudioObjectPropertyAddress const&, bool&) const + 494
    5   com.apple.audio.CoreAudio     0x00007fff89d245dd HAL_HardwarePlugIn_ObjectHasProperty(AudioHardwarePlugInInterface**, unsigned int, AudioObjectPropertyAddress const*) + 88
    6   com.apple.audio.CoreAudio     0x00007fff89d24506 HALPlugIn::ObjectHasProperty(HALObject const&, AudioObjectPropertyAddress const&) const + 36
    7   com.apple.audio.CoreAudio     0x00007fff89d14238 HALObject::HasProperty(AudioObjectPropertyAddress const&) const + 120
    8   com.apple.audio.CoreAudio     0x00007fff89d24497 HALDevice::HasProperty(AudioObjectPropertyAddress const&) const + 447
    9   com.apple.audio.CoreAudio     0x00007fff89d13e26 AudioObjectGetPropertyData + 188
    10  com.apple.CoreMedia           0x00007fff9219162d fadcGetAnchorTime + 242
    11  com.apple.CoreMedia           0x00007fff92191cbd CMClockGetAnchorTime + 892
    12  com.apple.CoreMedia           0x00007fff92192bbb FigClockGetTransformRelativeToReferenceClock + 286
    13  com.apple.CoreMedia           0x00007fff92192dca FigClockGetTransformRelativeToHostTimeClock + 311
    14  com.apple.CoreMedia           0x00007fff92193cd4 figSyncGetPivotTransform + 719
    15  com.apple.CoreMedia           0x00007fff92194040 CMSyncConvertTime + 103
    16  com.apple.CMIOUnits           0x000000010f7e399f 0x10f715000 + 846239
    17  com.apple.CMIOUnits           0x000000010f7e7f0f 0x10f715000 + 864015
    18  com.apple.CMIOUnits           0x000000010f7e6f97 0x10f715000 + 860055
    19  com.apple.CMIOUnits           0x000000010f7ace4f 0x10f715000 + 622159
    20  com.apple.CMIOUnits           0x000000010f720447 0x10f715000 + 46151
    21  com.apple.CMIOUnits           0x000000010f7605fb 0x10f715000 + 308731
    22  com.apple.CMIOUnits           0x000000010f798d32 0x10f715000 + 539954
    23  com.apple.CMIOUnits           0x000000010f7b831e 0x10f715000 + 668446
    24  com.apple.CMIOUnits           0x000000010f720447 0x10f715000 + 46151
    25  com.apple.CMIOUnits           0x000000010f7b8b17 0x10f715000 + 670487
    26  com.apple.CMIOUnits           0x000000010f7613f5 0x10f715000 + 312309
    27  com.apple.CoreMediaIO         0x00007fff88d42c12 CMIOGraph::PullOutputUnits(bool, bool&, bool&, bool&) + 296
    28  com.apple.CoreMediaIO         0x00007fff88d43054 CMIOGraph::DoWork(unsigned int) + 342
    29  com.apple.CoreMediaIO         0x00007fff88d45cb2 CMIO::Thread::QueuedTWorkThread<unsigned int>::DoWork() + 120
    30  com.apple.CoreMediaIO         0x00007fff88d4eb9f CMIO::Thread::SignaledThread::ThreadLoop() + 129
    31  com.apple.CoreMediaIO         0x00007fff88d4eafb CMIO::Thread::SignaledThread::WorkQueuedThreadCallback(void*) + 159
    32  com.apple.CoreMedia           0x00007fff921a44aa figThreadMain + 382
    33  libsystem_pthread.dylib       0x00007fff8d8e4899 _pthread_body + 138
    34  libsystem_pthread.dylib       0x00007fff8d8e472a _pthread_start + 137
    35  libsystem_pthread.dylib       0x00007fff8d8e8fc9 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib         0x00007fff8a552a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8a551d18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff8f57df15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff8f57d539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff8f57ce75 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation       0x00007fff8f632811 CFRunLoopRun + 97
    6   com.apple.CMIOUnits           0x000000010f7aeb6a 0x10f715000 + 629610
    7   com.apple.CoreMedia           0x00007fff921a44aa figThreadMain + 382
    8   libsystem_pthread.dylib       0x00007fff8d8e4899 _pthread_body + 138
    9   libsystem_pthread.dylib       0x00007fff8d8e472a _pthread_start + 137
    10  libsystem_pthread.dylib       0x00007fff8d8e8fc9 thread_start + 13
    Thread 7:: com.apple.audio.IOThread.client
    0   libsystem_kernel.dylib         0x00007fff8a552a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8a551d18 mach_msg + 64
    2   com.apple.audio.CoreAudio     0x00007fff89d36828 HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned int, unsigned int, mach_msg_header_t*, bool, unsigned int) + 98
    3   com.apple.audio.CoreAudio     0x00007fff89d367b6 HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 42
    4   com.apple.audio.CoreAudio     0x00007fff89d34f3e HALC_ProxyIOContext::IOWorkLoop() + 950
    5   com.apple.audio.CoreAudio     0x00007fff89d34add HALC_ProxyIOContext::IOThreadEntry(void*) + 97
    6   com.apple.audio.CoreAudio     0x00007fff89d3499d HALB_IOThread::Entry(void*) + 75
    7   libsystem_pthread.dylib       0x00007fff8d8e4899 _pthread_body + 138
    8   libsystem_pthread.dylib       0x00007fff8d8e472a _pthread_start + 137
    9   libsystem_pthread.dylib       0x00007fff8d8e8fc9 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib         0x00007fff8a552a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8a551d18 mach_msg + 64
    2   libclh.dylib                   0x00000001108e8e69 0x1102dc000 + 6344297
    3   libclh.dylib                   0x00000001103a1972 0x1102dc000 + 809330
    4   libclh.dylib                   0x00000001108e9cb9 0x1102dc000 + 6347961
    5   libsystem_pthread.dylib       0x00007fff8d8e4899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8d8e472a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff8d8e8fc9 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib         0x00007fff8a552a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8a551d18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff8f57df15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff8f57d539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff8f57ce75 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation       0x00007fff8f632811 CFRunLoopRun + 97
    6   com.apple.CMIOUnits           0x000000010f81ac50 0x10f715000 + 1072208
    7   com.apple.CMIOUnits           0x000000010f80f15c 0x10f715000 + 1024348
    8   com.apple.CoreMedia           0x00007fff921a44aa figThreadMain + 382
    9   libsystem_pthread.dylib       0x00007fff8d8e4899 _pthread_body + 138
    10  libsystem_pthread.dylib       0x00007fff8d8e472a _pthread_start + 137
    11  libsystem_pthread.dylib       0x00007fff8d8e8fc9 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib         0x00007fff8a552a56 semaphore_wait_trap + 10
    1   libsystem_platform.dylib       0x00007fff96518451 _os_semaphore_wait + 16
    2   libdispatch.dylib             0x00007fff8afb5982 _dispatch_barrier_sync_f_slow + 310
    3   com.apple.opencl               0x00007fff8928cd00 clFlush + 80
    4   com.apple.CMIOUnits           0x000000010f820be5 0x10f715000 + 1096677
    5   com.apple.CMIOUnits           0x000000010f81d777 0x10f715000 + 1083255
    6   com.apple.CMIOUnits           0x000000010f80f16e 0x10f715000 + 1024366
    7   com.apple.CoreMedia           0x00007fff921a44aa figThreadMain + 382
    8   libsystem_pthread.dylib       0x00007fff8d8e4899 _pthread_body + 138
    9   libsystem_pthread.dylib       0x00007fff8d8e472a _pthread_start + 137
    10  libsystem_pthread.dylib       0x00007fff8d8e8fc9 thread_start + 13
    Thread 11:: com.apple.coremedia.JVTlib
    0   com.apple.VideoToolbox         0x00007fff9119a944 0x7fff91045000 + 1399108
    1   com.apple.VideoToolbox         0x00007fff9115eb89 0x7fff91045000 + 1153929
    2   com.apple.VideoToolbox         0x00007fff91160bc0 0x7fff91045000 + 1162176
    3   com.apple.VideoToolbox         0x00007fff91177676 0x7fff91045000 + 1255030
    4   com.apple.VideoToolbox         0x00007fff9117453a 0x7fff91045000 + 1242426
    5   com.apple.VideoToolbox         0x00007fff9114cd92 0x7fff91045000 + 1080722
    6   com.apple.VideoToolbox         0x00007fff9114ba1e 0x7fff91045000 + 1075742
    7   com.apple.VideoToolbox         0x00007fff91146a3a 0x7fff91045000 + 1055290
    8   com.apple.VideoToolbox         0x00007fff910e470b 0x7fff91045000 + 653067
    9   libsystem_pthread.dylib       0x00007fff8d8e4899 _pthread_body + 138
    10  libsystem_pthread.dylib       0x00007fff8d8e472a _pthread_start + 137
    11  libsystem_pthread.dylib       0x00007fff8d8e8fc9 thread_start + 13
    Thread 12:: com.apple.coremedia.formatwriter.qtmovie
    0   libsystem_kernel.dylib         0x00007fff8a556716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8d8e6c3b _pthread_cond_wait + 727
    2   com.apple.CoreMedia           0x00007fff921a3b56 WaitOnCondition + 11
    3   com.apple.CoreMedia           0x00007fff921a396a FigSemaphoreWaitRelative + 133
    4   com.apple.MediaToolbox         0x00007fff92835493 0x7fff92733000 + 1057939
    5   com.apple.CoreMedia           0x00007fff921a44aa figThreadMain + 382
    6   libsystem_pthread.dylib       0x00007fff8d8e4899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff8d8e472a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff8d8e8fc9 thread_start + 13
    Thread 13:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib         0x00007fff8a556746 __psynch_mutexwait + 10
    1   libsystem_pthread.dylib       0x00007fff8d8e7779 _pthread_mutex_lock + 372
    2   com.apple.GeForceTeslaGLDriver 0x00001234402efeb0 0x123440000000 + 3079856
    3   com.apple.GeForceTeslaGLDriver 0x0000123440305d8c 0x123440000000 + 3169676
    4   libGPUSupport.dylib           0x000000010f10085c gldCreateSampler + 88
    5   libGFXShared.dylib             0x00007fff9652ac50 gfxCreatePluginTexture + 136
    6   com.apple.opencl               0x00007fff8929980b 0x7fff8926a000 + 194571
    7   com.apple.opencl               0x00007fff892702e3 0x7fff8926a000 + 25315
    8   com.apple.opencl               0x00007fff892788d5 clCreateImageFromIOSurfaceWithPropertiesAPPLE + 748
    9   com.apple.opencl               0x00007fff892785d1 clCreateImageFromIOSurface2DAPPLE + 129
    10  com.apple.CMIOUnits           0x000000010f8122ee 0x10f715000 + 1037038
    11  libdispatch.dylib             0x00007fff8afaf28d _dispatch_client_callout + 8
    12  libdispatch.dylib             0x00007fff8afb1885 _dispatch_source_invoke + 413
    13  libdispatch.dylib             0x00007fff8afb0f87 _dispatch_root_queue_drain + 75
    14  libdispatch.dylib             0x00007fff8afb2177 _dispatch_worker_thread2 + 40
    15  libsystem_pthread.dylib       0x00007fff8d8e5ef8 _pthread_wqthread + 314
    16  libsystem_pthread.dylib       0x00007fff8d8e8fb9 start_wqthread + 13
    Thread 14:: com.apple.audio.IOThread.client
    0   libsystem_kernel.dylib         0x00007fff8a552a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8a551d18 mach_msg + 64
    2   com.apple.audio.CoreAudio     0x00007fff89d36828 HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned int, unsigned int, mach_msg_header_t*, bool, unsigned int) + 98
    3   com.apple.audio.CoreAudio     0x00007fff89d367b6 HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 42
    4   com.apple.audio.CoreAudio     0x00007fff89d34f3e HALC_ProxyIOContext::IOWorkLoop() + 950
    5   com.apple.audio.CoreAudio     0x00007fff89d34add HALC_ProxyIOContext::IOThreadEntry(void*) + 97
    6   com.apple.audio.CoreAudio     0x00007fff89d3499d HALB_IOThread::Entry(void*) + 75
    7   libsystem_pthread.dylib       0x00007fff8d8e4899 _pthread_body + 138
    8   libsystem_pthread.dylib       0x00007fff8d8e472a _pthread_start + 137
    9   libsystem_pthread.dylib       0x00007fff8d8e8fc9 thread_start + 13
    Thread 15 Crashed:: Dispatch queue: opencl_runtime
    0   libclh.dylib                   0x000000011038d45d 0x1102dc000 + 726109
    1   libclh.dylib                   0x000000011039795f 0x1102dc000 + 768351
    2   libclh.dylib                   0x000000011039784a 0x1102dc000 + 768074
    3   libclh.dylib                   0x000000011036bfed 0x1102dc000 + 589805
    4   libclh.dylib                   0x0000000110370552 0x1102dc000 + 607570
    5   libclh.dylib                   0x0000000110383e07 0x1102dc000 + 687623
    6   libclh.dylib                   0x00000001103ea9dd 0x1102dc000 + 1108445
    7   com.apple.GeForceTeslaGLDriver 0x00001234402e55f2 0x123440000000 + 3036658
    8   com.apple.GeForceTeslaGLDriver 0x00001234402e58bc gldExecuteKernel + 384
    9   com.apple.opencl               0x00007fff8926d6f3 0x7fff8926a000 + 14067
    10  com.apple.opencl               0x00007fff89289a55 0x7fff8926a000 + 129621
    11  com.apple.opencl               0x00007fff8928d140 0x7fff8926a000 + 143680
    12  libdispatch.dylib             0x00007fff8afaf28d _dispatch_client_callout + 8
    13  libdispatch.dylib             0x00007fff8afb1673 _dispatch_queue_drain + 451
    14  libdispatch.dylib             0x00007fff8afb29c1 _dispatch_queue_invoke + 110
    15  libdispatch.dylib             0x00007fff8afb0f87 _dispatch_root_queue_drain + 75
    16  libdispatch.dylib             0x00007fff8afb2177 _dispatch_worker_thread2 + 40
    17  libsystem_pthread.dylib       0x00007fff8d8e5ef8 _pthread_wqthread + 314
    18  libsystem_pthread.dylib       0x00007fff8d8e8fb9 start_wqthread + 13
    Thread 16:: Dispatch queue: com.apple.videotoolbox.compressionQueue
    0   com.apple.VideoToolbox         0x00007fff9115ebaa 0x7fff91045000 + 1153962
    1   com.apple.VideoToolbox         0x00007fff9115b8ce 0x7fff91045000 + 1140942
    2   com.apple.VideoToolbox         0x00007fff91175ec3 0x7fff91045000 + 1248963
    3   com.apple.VideoToolbox         0x00007fff91174624 0x7fff91045000 + 1242660
    4   com.apple.VideoToolbox         0x00007fff9114cd92 0x7fff91045000 + 1080722
    5   com.apple.VideoToolbox         0x00007fff9114ba1e 0x7fff91045000 + 1075742
    6   com.apple.VideoToolbox         0x00007fff91146a3a 0x7fff91045000 + 1055290
    7   com.apple.VideoToolbox         0x00007fff910e476d 0x7fff91045000 + 653165
    8   com.apple.VideoToolbox         0x00007fff910e448b 0x7fff91045000 + 652427
    9   com.apple.VideoToolbox         0x00007fff911497e5 0x7fff91045000 + 1066981
    10  com.apple.VideoToolbox         0x00007fff91146ee4 0x7fff91045000 + 1056484
    11  com.apple.VideoToolbox         0x00007fff9113da74 0x7fff91045000 + 1018484
    12  com.apple.VideoToolbox         0x00007fff9113c153 0x7fff91045000 + 1012051
    13  com.apple.VideoToolbox         0x00007fff9108f475 0x7fff91045000 + 304245
    14  com.apple.VideoToolbox         0x00007fff91046bae 0x7fff91045000 + 7086
    15  libdispatch.dylib             0x00007fff8afaf28d _dispatch_client_callout + 8
    16  libdispatch.dylib             0x00007fff8afb0146 _dispatch_barrier_sync_f_invoke + 39
    17  com.apple.VideoToolbox         0x00007fff91049336 VTCompressionSessionEncodeFrame + 3163
    18  com.apple.CMIOUnits           0x000000010f72e620 0x10f715000 + 103968
    19  com.apple.CMIOUnits           0x000000010f7309a6 0x10f715000 + 113062
    20  com.apple.CMIOUnits           0x000000010f730122 0x10f715000 + 110882
    21  com.apple.CMIOUnits           0x000000010f82ac6f 0x10f715000 + 1137775
    22  libdispatch.dylib             0x00007fff8afb21bb _dispatch_call_block_and_release + 12
    23  libdispatch.dylib             0x00007fff8afaf28d _dispatch_client_callout + 8
    24  libdispatch.dylib             0x00007fff8afb1673 _dispatch_queue_drain + 451
    25  libdispatch.dylib             0x00007fff8afb29c1 _dispatch_queue_invoke + 110
    26  libdispatch.dylib             0x00007fff8afb0f87 _dispatch_root_queue_drain + 75
    27  libdispatch.dylib             0x00007fff8afb2177 _dispatch_worker_thread2 + 40
    28  libsystem_pthread.dylib       0x00007fff8d8e5ef8 _pthread_wqthread + 314
    29  libsystem_pthread.dylib       0x00007fff8d8e8fb9 start_wqthread + 13
    Thread 17:
    0   libsystem_pthread.dylib       0x00007fff8d8e8fac start_wqthread + 0
    Thread 15 crashed with X86 Thread State (64-bit):
      rax: 0x00007fa6f28fd001  rbx: 0x0000000000000000  rcx: 0x0000000000000100  rdx: 0x0000000000000001
      rdi: 0x000000010fd4d000  rsi: 0x000060800017f680  rbp: 0x0000000111475160  rsp: 0x0000000111475150
       r8: 0x0000000000000001   r9: 0x00000000000000c0  r10: 0x0000000000000100  r11: 0x000000010fd4d5f0
      r12: 0x00007fa6f1c5b140  r13: 0x000060000002cca0  r14: 0x00007fa6f1c5b160  r15: 0x00007fa6f1c5b180
      rip: 0x000000011038d45d  rfl: 0x0000000000010202  cr2: 0x0000000000000610
    Logical CPU:     0
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x10ab81000 -        0x10ad74ff7  com.apple.QuickTimePlayerX (10.3 - 727.4) <F853E10F-D295-342D-B56F-766DBC0138E8> /Applications/QuickTime Player.app/Contents/MacOS/QuickTime Player
           0x10af2b000 -        0x10af56fff  com.apple.FWAVC (403.47 - 47) <20BAF98C-349A-38E1-ACE1-C0838546D248> /System/Library/PrivateFrameworks/FWAVC.framework/Versions/A/FWAVC
           0x10b072000 -        0x10b07aff3  libCGCMS.A.dylib (599.35.6) <09F33B9F-098A-340A-8717-E3BA6849470E> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
           0x10b083000 -        0x10b087ffd  com.apple.audio.AppleHDAHALPlugIn (2.6.3 - 2.6.3f4) <2EB88B27-FA19-3C0C-AA06-7FB8BC56694E> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x10b08c000 -        0x10b08fffa  libCGXType.A.dylib (599.35.6) <7DAB1A62-D475-37F1-8234-07649906E234> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
           0x10c80a000 -        0x10c832ffb  libRIP.A.dylib (599.35.6) <45A8594F-906E-3EAE-87D4-BA1DB091C690> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
           0x10ccd9000 -        0x10ccdfff7  libCGXCoreImage.A.dylib (599.35.6) <69BEB63E-93AF-3A32-BA27-EDC2B6649B2E> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCo reImage.A.dylib
           0x10cce9000 -        0x10cce9ffb +cl_kernels (???) <AFB2A7F0-59C6-480F-A791-39382F0FF097> cl_kernels
           0x10f0fa000 -        0x10f105fff  libGPUSupport.dylib (9.6.1) <23B64473-59E7-3AC2-B8C0-CFCFDDF3F8A3> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
           0x10f2e8000 -        0x10f3cefef  unorm8_bgra.dylib (2.3.58) <641EC871-01E8-301F-8695-B92993AD7E23> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x10f6e4000 -        0x10f70affb  com.apple.cmio.DAL.VDC-4 (408.0 - 4570) <AF4A15FF-A5F1-3E62-9663-4E23987C8DCB> /System/Library/Frameworks/CoreMediaIO.framework/Resources/VDC.plugin/Contents/ MacOS/VDC
           0x10f715000 -        0x10f87dff5  com.apple.CMIOUnits (408.0 - 4570) <99F0C7B3-7034-3C3A-9E6B-995418725ADE> /System/Library/Frameworks/CoreMediaIO.framework/Resources/CMIOUnits.bundle/Con tents/MacOS/CMIOUnits
           0x10f8a5000 -        0x10fa76fff  com.apple.audio.units.Components (1.10 - 1.10) <FF94282C-BC8B-32FD-9761-AAF1A9F76761> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
           0x10fcc9000 -        0x10fcc9fff +cl_kernels (???) <27CC8E9E-AAE3-4F09-9EE7-34C967771EB1> cl_kernels
           0x1102dc000 -        0x110a26ff7  libclh.dylib (4.0.3 - 4.0.3) <B39D7AC7-D305-3504-9CE0-3E99964CE958> /System/Library/Extensions/GeForceTeslaGLDriver.bundle/Contents/MacOS/libclh.dy lib
           0x113c79000 -        0x113e6ffff  com.apple.audio.codecs.Components (4.0 - 4.0) <FBBC70C1-FC67-3F46-A62C-41C86105FD8A> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
        0x123440000000 -     0x12344086dfff  com.apple.GeForceTeslaGLDriver (8.24.16 - 8.2.4) <2BC885F1-17E7-3582-A600-7FB1C777BF08> /System/Library/Extensions/GeForceTeslaGLDriver.bundle/Contents/MacOS/GeForceTe slaGLDriver
        0x7fff65981000 -     0x7fff659b4817  dyld (239.4) <7AD43B9B-5CEA-3C7E-9836-A06909F9CA56> /usr/lib/dyld
        0x7fff88d05000 -     0x7fff88d1dff7  com.apple.GenerationalStorage (2.0 - 160.3) <64749B08-0212-3AC8-9B49-73D662B09304> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff88d1e000 -     0x7fff88d6affe  com.apple.CoreMediaIO (408.0 - 4570) <72371044-3FF2-3538-8EE1-C7C20F7C60A0> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff88d6b000 -     0x7fff88d74fff  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <383FB557-E88E-3239-82B8-15F9F885B702> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff88dd7000 -     0x7fff88e28fff  com.apple.QuickLookFramework (5.0 - 622.7) <17685CEC-C94B-3F83-ADE1-B24840B35E44> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff88e92000 -     0x7fff88fc8ff5  com.apple.WebKit (9537 - 9537.78.2) <EB8D3D78-92E7-3B67-8AAF-B51A181461E0> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff88fc9000 -     0x7fff88fcaff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff89215000 -     0x7fff89216ffb  libScreenReader.dylib (333.11) <11D709B9-AA71-3B2C-9F06-F7CDD5B05574> /usr/lib/libScreenReader.dylib
        0x7fff89217000 -     0x7fff89269fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
        0x7fff8926a000 -     0x7fff892b8ff7  com.apple.opencl (2.3.59 - 2.3.59) <9F43F471-C3C3-352D-889D-EC418DC1F5B2> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff892c6000 -     0x7fff896f9ffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff89c01000 -     0x7fff89d07ff7  com.apple.ImageIO.framework (3.3.0 - 1044) <3BCCF2AE-CF1F-3324-A371-DF0A42C841A2> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff89d08000 -     0x7fff89d0cff7  libGIF.dylib (1044) <7E51DFC3-740A-3CD3-98A1-1EC510A4A055> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff89d0d000 -     0x7fff89d0dffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <68B21135-55A6-3563-A3D6-3E692A7DEB7F> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff89d0e000 -     0x7fff89d5fff7  com.apple.audio.CoreAudio (4.2.1 - 4.2.1) <BE13E840-FB45-3BC2-BCF5-031629754FD5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff89d60000 -     0x7fff89e31ff1  com.apple.DiskImagesFramework (10.9 - 371.1) <DCCAADEC-35D5-3968-8B39-358ACC56ADC4> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff89eb7000 -     0x7fff89f23fff  com.apple.framework.IOKit (2.0.1 - 907.100.14) <10932113-9F7E-38A0-A158-A019A555CAC3> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff89f24000 -     0x7fff89f3dff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff89f3e000 -     0x7fff8a000ff5  com.apple.CoreText (367.20 - 367.20) <B80D086D-93A9-3C35-860E-9C3FDD027F3B> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8a007000 -     0x7fff8a007fff  com.apple.Carbon (154 - 157) <EFC1A1C0-CB07-395A-B038-CFA2E71D3E69> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8a03e000 -     0x7fff8a0c9ff7  libCoreStorage.dylib (380.70.2) <BD993BC8-ED54-3DC1-B28B-3B6AC77E8E5C> /usr/lib/libCoreStorage.dylib
        0x7fff8a0cd000 -     0x7fff8a0d7ff7  libcsfde.dylib (380.70.2) <3ACB87D7-A81C-3C45-B648-AD27F1B9D841> /usr/lib/libcsfde.dylib
        0x7fff8a0d8000 -     0x7fff8a1bfff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
        0x7fff8a1ca000 -     0x7fff8a1eefff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
        0x7fff8a1ef000 -     0x7fff8a270fff  com.apple.CoreSymbolication (3.0.1 - 141.0.6) <B594EF34-A1A3-3631-914E-6FD129291983> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8a271000 -     0x7fff8a277fff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
        0x7fff8a278000 -     0x7fff8a279ff7  libSystem.B.dylib (1197.1.1) <70B235FC-BCED-367B-BA6C-67C299BAE7D9> /usr/lib/libSystem.B.dylib
        0x7fff8a27a000 -     0x7fff8a27cff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
        0x7fff8a27d000 -     0x7fff8a28cff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8a28d000 -     0x7fff8a29dffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
        0x7fff8a29e000 -     0x7fff8a2a6fff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
        0x7fff8a35d000 -     0x7fff8a36bfff  com.apple.opengl (9.6.1 - 9.6.1) <359D0ECB-D100-341B-B437-BDE56E27B74B> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8a36c000 -     0x7fff8a36dfff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
        0x7fff8a36e000 -     0x7fff8a378ff7  com.apple.AppSandbox (3.0 - 1) <9F27DC25-C566-3AEF-92D3-DCFE7836916D> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff8a4a8000 -     0x7fff8a500ff7  com.apple.Symbolication (1.4 - 129.0.2) <78AE8B21-BF15-373F-88C6-73BF740BFFFB> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8a52a000 -     0x7fff8a540fff  com.apple.geokit (2.2 - 2.2) <0FBE7EFC-5F0C-37F7-A9EE-FF95E8352BCF> /System/Library/PrivateFrameworks/GeoKit.framework/Versions/A/GeoKit
        0x7fff8a541000 -     0x7fff8a55dff7  libsystem_kernel.dylib (2422.115.10) <1A75B3AB-3FAE-3D26-922D-726FE6C99F4D> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8a55e000 -     0x7fff8a59cff7  libGLImage.dylib (9.6.1) <5E02B38C-9F36-39BE-8746-724F0D8BBFC0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8a5bc000 -     0x7fff8a657ff7  com.apple.PDFKit (2.9.2 - 2.9.2) <DF2CE219-6256-3A8A-BDB1-51EF556F5BC8> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8a6b1000 -     0x7fff8a6b7ff7  com.apple.XPCService (2.0 - 1) <2CE632D7-FE57-36CF-91D4-C57D0F2E0BFE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff8a6b8000 -     0x7fff8a6c5ff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff8a6d9000 -     0x7fff8a6e1ff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8a6e2000 -     0x7fff8a749ff7  com.apple.CoreUtils (2.0 - 200.34.4) <E53B97FE-E067-33F6-A9C1-D4EC2A20FB9F> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff8a74a000 -     0x7fff8a74eff7  libsystem_stats.dylib (93.90.3) <C588E082-D94B-3510-9F9A-7AD83B3402DE> /usr/lib/system/libsystem_stats.dylib
        0x7fff8a74f000 -     0x7fff8a757ff7  com.apple.AppleSRP (5.0 - 1) <ABC7F088-1FD5-3768-B9F3-847F355E90B3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff8a758000 -     0x7fff8aacfff6  com.apple.JavaScriptCore (9537 - 9537.78.1) <8623A109-9E9D-3E3B-A8E1-6EE447C0110C> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8ae5d000 -     0x7fff8ae5dfff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8ae78000 -     0x7fff8ae79ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8ae7a000 -     0x7fff8ae8afff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
        0x7fff8ae8b000 -     0x7fff8ae90ff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
        0x7fff8ae91000 -     0x7fff8af5cfff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8af9c000 -     0x7fff8afa8ff7  com.apple.HelpData (2.1.4 - 90) <BEA1C549-40D3-35BF-9204-CB679FCB0648> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
        0x7fff8afa9000 -     0x7fff8afadfff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
        0x7fff8afae000 -     0x7fff8afc8fff  libdispatch.dylib (339.92.1) <C4E4A18D-3C3B-3C9C-8709-A4270D998DE7> /usr/lib/system/libdispatch.dylib
        0x7fff8afc9000 -     0x7fff8b165ff3  com.apple.QuartzCore (1.8 - 332.3) <BD68AF62-D369-34CD-9EA2-B4A4325696FA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8b169000 -     0x7fff8b16bffb  libutil.dylib (34) <DAC4A6CF-A1BB-3874-9569-A919316D30E8> /usr/lib/libutil.dylib
        0x7fff8b2f3000 -     0x7fff8b422fef  com.apple.MediaControlSender (2.0 - 200.34.4) <FC24EC8D-2E46-3F76-AF63-749F30857B96> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff8b593000 -     0x7fff8b87dfff  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8bb20000 -     0x7fff8bb5eff7  com.apple.ShareKit (1.0 - 185.2) <AF0D2666-2700-3FE2-AD27-5ADAE70F7547> /System/Library/PrivateFrameworks/ShareKit.framework/Versions/A/ShareKit
        0x7fff8bb5f000 -     0x7fff8bb61ff7  com.apple.securityhi (9.0 - 55005) <9985032A-0EE1-3760-8D23-ADD3965A4D18> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8bb62000 -     0x7fff8bb6cff7  com.apple.CrashReporterSupport (10.9 - 539) <B25A09EC-A021-32EC-86F8-05B4837E0EDE> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8bb6d000 -     0x7fff8bb72ff7  com.apple.MediaAccessibility (1.0 - 43) <D309D83D-5FAE-37A4-85ED-FFBDA8B66B82> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff8bb86000 -     0x7fff8bbbbfff  libssl.0.9.8.dylib (52.8.1) <AE21E7AA-9CB1-3007-8A3F-D1AF367BBE5E> /usr/lib/libssl.0.9.8.dylib
        0x7fff8bbbc000 -     0x7fff8bc15fff  libTIFF.dylib (1044) <FBC5800B-7F34-3755-A44E-7B37B3E0B32E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8bc16000 -     0x7fff8bf16ff7  com.apple.Foundation (6.9 - 1056.17) <E0B0FAF6-5CA8-3EEB-8BF2-104C0AEEF925> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8bf17000 -     0x7fff8c07dfff  libGLProgrammability.dylib (9.6.1) <49F2FEFE-CEA2-3C30-A669-F55CC813EEFF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff8c07e000 -     0x7fff8c0bdfff  libGLU.dylib (9.6.1) <AE032555-3E2F-3DBF-A26D-EA4576061605> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8c0be000 -     0x7fff8c0beffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff8c0bf000 -     0x7fff8c393fc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8c394000 -     0x7fff8c420ff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8c421000 -     0x7fff8c446ff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff8c447000 -     0x7fff8c44afff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8c44b000 -     0x7fff8c475ff7  libsandbox.1.dylib (278.11.2) <A1933747-6A0F-3C93-8400-D441BB35B7A3> /usr/lib/libsandbox.1.dylib
        0x7fff8c476000 -     0x7fff8c506ff7  com.apple.Metadata (10.7.0 - 800.29) <6310AE28-EB99-3BB4-92F1-0C8BE6DEAD48> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8c507000 -     0x7fff8c566fff  com.apple.framework.CoreWLAN (4.3.3 - 433.48) <1F17FA12-6E84-309D-9808-C536D445FA6E> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8c5a1000 -     0x7fff8c651ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8c652000 -     0x7fff8c665ff7  com.apple.AppContainer (3.0 - 1) <BD342039-430E-39FE-BC2D-8F97B557548E> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
        0x7fff8c6da000 -     0x7fff8c87aff7  GLEngine (9.6.1) <EC1A6BE4-30FF-3DC4-96B9-F7F07B1FBF28> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundl e/GLEngine
        0x7fff8c87b000 -     0x7fff8c87ffff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8c880000 -     0x7fff8c8aaff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
        0x7fff8c8ab000 -     0x7fff8c90ffff  com.apple.datadetectorscore (5.0 - 354.5) <C9FAB401-3FE2-3221-B60C-E4F1841CA5F1> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8c910000 -     0x7fff8c914ff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
        0x7fff8cba7000 -     0x7fff8cbccff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8cbcd000 -     0x7fff8cc20fff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff8cc39000 -     0x7fff8cc4aff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
        0x7fff8cc5b000 -     0x7fff8d03cffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8d084000 -     0x7fff8d16efff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
        0x7fff8d172000 -     0x7fff8d17cff7  com.apple.ProtocolBuffer (1 - 182.1.3) <82E68598-A8AA-3AF1-843E-2A64F19472D4> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff8d17d000 -     0x7fff8d247fff  com.apple.LaunchServices (572.29 - 572.29) <15C7BB21-73FB-38E7-924F-E6C4DF49D440> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8d28e000 -     0x7fff8d292ff7  libheimdal-asn1.dylib (323.92.2) <979AEAA0-59B3-3E99-94B1-9BB9C6C45273> /usr/lib/libheimdal-asn1.dylib
        0x7fff8d293000 -     0x7fff8d527ff7  com.apple.RawCamera.bundle (5.07 - 760) <EA94F148-975D-32D7-8A20-B06017E5793B> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8d563000 -     0x7fff8d566fff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8d567000 -     0x7fff8d59cffc  com.apple.LDAPFramework (2.4.28 - 194.5) <4ADD0595-25B9-3F09-897E-3FB790AD2C5A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff8d59d000 -     0x7fff8d5a6ffb  libsystem_notify.dylib (121.20.1) <9B34B4FE-F5AD-3F09-A5F0-46AFF3571323> /usr/lib/system/libsystem_notify.dylib
        0x7fff8d5d9000 -     0x7fff8d69dff7  com.apple.backup.framework (1.5.4 - 1.5.4) <195DA868-47A5-37E6-8CF0-9BCF11846899> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8d69e000 -     0x7fff8d77bff7  libcrypto.0.9.8.dylib (52.8.1) <52B36740-372F-3AF6-99E4-B1A24A3C9954> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8d77c000 -     0x7fff8d77cfff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8d77d000 -     0x7fff8d793fff  com.apple.CoreMediaAuthoring (2.2 - 947) <F1886A05-1C29-3F88-88C0-4A1013530AD1> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff8d794000 -     0x7fff8d8d5fff  com.apple.QTKit (7.7.3 - 2826.24) <08E58C71-D16C-3357-989C-780A08994B27> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8d8d6000 -     0x7fff8d8e2ff7  com.apple.OpenDirectory (10.9 - 173.90.1) <F08601E8-F7E8-3222-AD05-6A26003779CF> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8d8e3000 -     0x7fff8d8eaff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
        0x7fff8d92d000 -     0x7fff8d934ff8  liblaunch.dylib (842.92.1) <A40A0C7B-3216-39B4-8AE0-B5D3BAF1DA8A> /usr/lib/system/liblaunch.dylib
        0x7fff8d998000 -     0x7fff8d99dfff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8d99e000 -     0x7fff8da0dff1  com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8da0e000 -     0x7fff8da3efff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff8da3f000 -     0x7fff8da51fff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8da52000 -     0x7fff8dcb3fff  com.apple.imageKit (2.5 - 774) <AACDE16E-ED9F-3B3F-A792-69BA1942753B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff8dcc1000 -     0x7fff8dd34fff  com.apple.securityfoundation (6.0 - 55122.3) <0FDC8F53-104C-3938-A852-5B33C30BAAD5> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8dd35000 -     0x7fff8dd35ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
        0x7fff8dd36000 -     0x7fff8dd36fff  com.apple.quartzframework (1.5 - 1.5) <3B2A72DB-39FC-3C5B-98BE-605F37777F37> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8dd37000 -     0x7fff8e8adff7  com.apple.AppKit (6.9 - 1265.21) <9DC13B27-841D-3839-93B2-3EDE66157BDE> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8e8ae000 -     0x7fff8eb58ff5  com.apple.HIToolbox (2.1.1 - 698) <26FF0E2C-1CD7-311F-ACF0-84F3D5273AD6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8eb59000 -     0x7fff8eb59fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8f2aa000 -     0x7fff8f462ffb  libicucore.A.dylib (511.35) <6F097DA7-147C-32A1-93D2-728A64CF0DC2> /usr/lib/libicucore.A.dylib
        0x7fff8f463000 -     0x7fff8f4beffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8f4bf000 -     0x7fff8f506fff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8f50d000 -     0x7fff8f6f2fff  com.apple.CoreFoundation (6.9 - 855.17) <729BD6DA-1F63-3E72-A148-26F21EBF52BB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8f7a2000 -     0x7fff8f7b4ff7  com.apple.MultitouchSupport.framework (245.13.1 - 245.13.1) <38262B92-C63F-35A0-997D-AD2EBF2F8338> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8f7b5000 -     0x7fff8fb8cfef  com.apple.CoreAUC (6.25.00 - 6.25.00) <2D7DC96C-BA83-3220-A03F-C790D50A23D8> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8fc0b000 -     0x7fff8fc3aff9  com.apple.GSS (4.0 - 2.0) <27FCA2B4-0767-3002-8755-862B19B5CF92> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8fc6c000 -     0x7fff8ff3dff4  com.apple.CoreImage (9.4.0) <2C636ECD-0F1A-357C-9EFF-0452476FDDF5> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8ff3e000 -     0x7fff8ff79fff  com.apple.bom (14.0 - 193.1) <EF24A562-6D3C-379E-8B9B-FAE0E4A0EF7C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8ff7a000 -     0x7fff8ffb3ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8ffb4000 -     0x7fff8ffc1ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
        0x7fff8ffc2000 -     0x7fff8ffc2fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8ffc3000 -     0x7fff8ffeaffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
        0x7fff8ffeb000 -     0x7fff90058fff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff90059000 -     0x7fff901f4ff8  com.apple.CFNetwork (673.5 - 673.5) <EF4DA617-D442-327A-9575-A75111A0A742> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff901f5000 -     0x7fff90242ff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff9025b000 -     0x7fff9025eff7  libdyld.dylib (239.4) <41077DD7-F909-3B8A-863E-72AE304EDE13> /usr/lib/system/libdyld.dylib
        0x7fff90261000 -     0x7fff902d8fff  com.apple.CoreServices.OSServices (600.4 - 600.4) <5A44F0B5-4A24-3875-ADE4-5B47D6C7E251> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff90377000 -     0x7fff90380ffd  com.apple.CommonAuth (4.0 - 2.0) <BD720379-757B-305C-A7BE-E00E680F8218> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff90388000 -     0x7fff903b7fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
        0x7fff903b8000 -     0x7fff904dafff  com.apple.avfoundation (2.0 - 651.12.1) <F82271D8-7859-322C-8BDD-4818825525AE> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff904db000 -     0x7fff90699fff  com.apple.GeoServices (1.0 - 702.15.12) <850DC458-20CC-3E16-BB50-7C9FDBA308D3> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff9076b000 -     0x7fff907b9fff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
        0x7fff907e1000 -     0x7fff9098ef27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
        0x7fff9098f000 -     0x7fff90a47ff7  com.apple.DiscRecording (8.0 - 8000.4.6) <CDAAAD04-A1D0-3C67-ABCC-EFC9E8D44E7E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff90a48000 -     0x7fff90a93fff  com.apple.ImageCaptureCore (5.0 - 5.0) <F529EDDC-E2F5-30CA-9938-AF23296B5C5B> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff90aab000 -     0x7fff90b99fff  libJP2.dylib (1044) <BE5FF765-5ECE-38B5-BF5D-BE806F5CAD18> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff90b9a000 -     0x7fff90b9bff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
        0x7fff90c49000 -     0x7fff90cb4ff7  com.apple.AVKit (1.0 - 117.5) <AD0F7E88-7624-3CC5-9CF8-837D3B4373C6> /System/Library/Frameworks/AVKit.framework/Versions/A/AVKit
        0x7fff90cf6000 -     0x7fff90d38ff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
        0x7fff90d39000 -     0x7fff90d3bfff  com.apple.Mangrove (1.0 - 1) <72F5CBC7-4E78-374E-98EA-C3700136904E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff90d67000 -     0x7fff90d74fff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff90d75000 -     0x7fff90d91fff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
        0x7fff90d92000 -     0x7fff90d92fff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff90db3000 -     0x7fff90db6ffc  com.apple.IOSurface (91.2 - 91.2) <4B2308B5-3F40-33BB-851C-A2A168343F6D> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff90db7000 -     0x7fff90dc0ff7  libcldcpuengine.dylib (2.3.58) <645ABD2F-C93B-3943-8B07-BBC08B904253> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
        0x7fff90e17000 -     0x7fff90e23ffb  com.apple.AppleFSCompression (56.92.1 - 1.0) <066255FD-DBD1-3041-8DDA-7AFC41C9096D> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff90e34000 -     0x7fff90e3ffff  libkxld.dylib (2422.115.10) <AD2E562E-BB12-3AFF-A443-6AD173F03977> /usr/lib/system/libkxld.dylib
        0x7fff90e40000 -     0x7fff90e41fff  libsystem_sandbox.dylib (278.11.2) <0C93EB23-7364-3670-B511-212A7A524695> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff90ebb000 -     0x7fff90f20ffb  com.apple.Heimdal (4.0 - 2.0) <C28DBCAE-01AC-363A-9046-3BD33F225526> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff90f23000 -     0x7fff90facfff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff90fad000 -     0x7fff90fc4ffa  libAVFAudio.dylib (32.2) <DAE7465E-DE8E-3900-84E7-F5DE72560E76> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff9102d000 -     0x7fff91044ff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <7BC0194E-1B40-3FCA-ACD2-235CE5D65DFA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff91045000 -     0x7fff91493fef  com.apple.VideoToolbox (1.0 - 1273.54) <4699BB55-7387-3981-9217-869215F00CA9> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff916d0000 -     0x7fff916f4ff7  libJPEG.dylib (1044) <BE0ED4E1-F7FC-3038-86D3-0456DD173FCB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff91741000 -     0x7fff91768ff7  com.apple.shortcut (2.6 - 2.6) <A62BC973-6782-3893-B014-EC6503AB7EAD> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
        0x7fff91769000 -     0x7fff91784ff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
        0x7fff9179f000 -     0x7fff917acff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
        0x7fff91835000 -     0x7fff9183cffb  libcopyfile.dylib (103.92.1) <CF29DFF6-0589-3590-834C-82E2316612E8> /usr/lib/system/libcopyfile.dylib
        0x7fff9183d000 -     0x7fff9184eff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
        0x7fff9184f000 -     0x7fff91878fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff918d1000 -     0x7fff919c0fff  libFontParser.dylib (111.1.2) <25C4548B-A2DE-30BE-9FAF-DDA161DADB16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff919e0000 -     0x7fff919fdff7  com.apple.framework.Apple80211 (9.4 - 940.60) <043C7CFD-B57B-3F9D-B0FE-CA4B97C43968> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff919fe000 -     0x7fff91a25ff7  libsystem_network.dylib (241.4) <0D630D53-C772-3EC5-8257-EFB0ACCE3153> /usr/lib/system/libsystem_network.dylib
        0x7fff91a26000 -     0x7fff91a28fff  com.apple.SecCode

  • Quicktime Screen Recording

    I have Quicktime and have now downloaded Quicktime Pro. In my file pull down menu I can not choose screen recording and that's what I want to do. Do I need additional upgrade to Quicktime to record screen activity?

    What options do you have in the File menu ?.
    Not these ?.

  • Quicktime screen recording doesn't work anymore!

    Hi,
    I'm running 10.8.4 on my MacBook Pro.
    Quicktime screen, audio, and movie recording doesn't work anymore.
    I repaired my Permissions, and it didn't fix the bug.
    What is wrong?
    Thanks,
    Chris.

    I am having this problem too. I've never used QuickTime 10.2 (build 603) to do this, but when I try today, it doesn't work.
    I launch QT, then choose "Record Screen" from the FILE menu. The black "record" window appears, but it is not clickable, nor does it do anything.
    I can quit QT via the cmd-tab shortcut, but otherwise it is not selectable. odd.
    To the devs: can this bug be fixed and a new QT installer generated... I am guessing that many of us would prefer not having to wait for an entire OS upgrade to have this fixed -- thanks!
    (note: I have no special soundcard or any other mods to this MacBook Pro 13" running OSX10.8.5)

  • Quicktime Screen Recording - Higher quality missing

    Everywhere I've read that Quicktime screen recording has a medium and a higher quality setting, but when I try to do a screen recording, it doesn't give me any quality options. It just has options for the microphone. See the attached photo.
    How can I get it to give me an option for high quality screen recording? The default seems to be lower quality, which I can't use. Thanks in advance for any help!!

    I have the same question, and have looked at the answers here. I am not trying to answer your question, just add to it.
    I have used snapz pro x and find that I like that way quicktime displays whats on your screen with the same amount of lag that will be in the finished video, while snapz does not. surely there is a way, deep in preferences or maybe even in terminal, that will enable me to take higher quality images in my screen recordings. I find the audio is fine but the image is what I have a problem with. I dont have the 100+ dollars to spend on other screen recording software, and would really appreciate some help.
    thanks,
    hemmy1416

  • When using quicktime screen recorder, the recording changes colors

    Please help me out!! So I've had my macbook air for a while now and I've used the quicktime screen recorder multipul times, but latley something changed. When I go to record my screen everything works fine, and once its finished and I've saved it it's still normal. But once I go to import it into imovie the entire recording turns red, I can still see the recording but everything is just red! Everywhere else the recording looks fine, but its only when I try to put it into imovie that it changes colors. Its never done this before and all of my past screen recordings work fine.
    Does anyone know what I can do to fix it?
    Any advice would be greatly appreciated!
    Thank you

    Hello meaganmarie,
    I am assuming you have quicktime up to date (10.3)
    When recording a game window,
    - select quicktime
    - go to file > New Movie Recording
    - select your game window like a rectangular marquee selection (drag and make a rectangle filling only your game window
    - stop when done and save
    This way the endtire screen (including youe desktop) won't be seen, just your selected game window.
    Regards,
    Asevenc

  • Quicktime screen recording error.

    Hey, I was wondering if there is a fix for Quicktime screen recording, because almost everytime I use screen recording, Quicktime crashes within two minutes. Before mountain lion quicktime was fine, but now the screen recording doesn't work, because of a "kernal" error. If anyone can help, that would be awesome.

    peljmies
    You have resurrected an ancient thread by posting in it, and since there was no answer in IT, it may be that your Question would benefit from starting an New Question!!
    I would title it something like "  QT screen recording crashing with alert "The operation couldn’t be completed. (OSStatus error -536870186.)"  "
    (Before you post, double check the error alert message text)
    Include as much of the following as possible:
    Quoted from  Apple's "How to write a good question"
       To help other members answer your question, give as many details as you can.
    Include your product name and specs such as processor speed, memory, and storage capacity. Please do not include your Serial Number, IMEI, MEID, or other personal information.
    Provide the version numbers of your operating system and relevant applications, for example "iOS 6.0.3" or "iPhoto 9.1.2".
    Describe the problem, and include any details about what seems to cause it.
    List any troubleshooting steps you've already tried, or temporary fixes you've discovered.
    CCC

Maybe you are looking for

  • File sharing afp:// address not computer name

    Just setting up my new iMac and the file sharing afp:// address does not match the computer's name (Brute Squad), it's pulled in my old PowerBook's name (Alumen). I'm assuming it came from my Apple/iCloud account since that was the only computer I ha

  • Is there a way to do batch watermark within iPhoto?

    I often upload my photos to pBase using the excellent iPhoto2pBase plugin. But due to the growing issue of photo thefts on the web, I would like to watermark them first. After doing a search on this site, I found recomendations for iWatermark. It's a

  • Can I create a dynamic dictionary object in WF using SPD?

    I am creating a list of task in a loop. I need to store the taskIDs in a dictionary object. How can I do this? The loop looks like: Loop N times-->Create a task-->Add Task1-TaskID to Dictionary object-->Loop Example of how the dictionary object shoul

  • PSE 9 Actions

    Can someone please tell me how to install actions into PSE 9

  • Tif merge to HDR camera raw

    I just created a 32bit TIF from three raw files using Merge to HDR from Bridge - no other changes applied. The resulting save as TIF file cannot be opened (no menu item to allow it in bridge) in ACR. If I take just one of the original raw files and c