Video CC problem in 5.5: only last line shows up

Using Captivate 5.5.  My slide has imported slide video and I want to caption the narration contained in the video.  There is no other slide audio.
I can enter the caption text in the Slide Notes rows as expected, and I check the Video CC box for each row.
However, when I preview the slide, only the last row of text appears on-screen.  It appears right at the beginning of the slide and doesn't go away.
Any ideas why the first line of the captions doesn't appear?
Thanks!

It could be that your eMac is covered under Apple's eMac Repair Extension Program for Video and Power Issues. You can read more about it here:
http://www.apple.com/support/emac/repairextensionprogram/
It could be a coincidence that you started having problems after installing Mac OS X 10.4.7. Let us know if your eMac falls within the serial number ranges on the repair site.

Similar Messages

  • Printing in only last line item printing in main window

    Hi All,
    My requiremnet is to print same data in two blocks for F110 payment cheque
    Iam using 2 main windows to print same data if block exceeds it will go to next page
    iam calling the windows as shown below
    CALL FUNCTION 'WRITE_FORM'
          EXPORTING
            window   = 'MAIN00'
            element  = hlp_ep_element
            function = 'APPEND'
          EXCEPTIONS
            window   = 1
            element  = 2.
        IF sy-subrc EQ 2.
          err_element-fname = t042e-zforn.
          err_element-fenst = 'MAIN00'.
          err_element-elemt = hlp_ep_element.
          err_element-text  = text_525.
          COLLECT err_element.
        ENDIF.
        CALL FUNCTION 'WRITE_FORM'
          EXPORTING
            window   = 'MAIN01'
            element  = hlp_ep_element
            function = 'APPEND'
          EXCEPTIONS
            window   = 1
            element  = 2.
        IF sy-subrc EQ 2.
          err_element-fname = t042e-zforn.
          err_element-fenst = 'MAIN01'.
          err_element-elemt = hlp_ep_element.
          err_element-text  = text_525.
          COLLECT err_element.
        ENDIF.
    Iam getting only last line item printing in main window
    Please provide the inputs.
    Thanks,
    Kamalakar.
    Please use code tags.
    Edited by: Rob Burbank on Nov 25, 2011 11:51 AM

    Hi,
    My requirement was to print same block twice in cheque printing of F110.
    I have used the function module  'WRITE_FORM_LINES' to print more than one line item in secondary window in the script .
    fill the Lines internal table as shown below.
    Example :
        lines-tdformat = 'TM'.
        CONCATENATE regup-xblnr ',,' w_date ',,'  w_bsak-sgtxt ',,' w_gross ',,' w_dis ',,'
        w_net INTO lines-tdline.
    APPEND lines.
    CALL FUNCTION 'WRITE_FORM_LINES'
          EXPORTING
           function                       = 'APPEND'
           header                         =  header_t
           type                           = 'BODY'
           window                         = 'MAIN01'
        IMPORTING
          FROMPAGE                       =
          PENDING_LINES                  =
          TABLES
            lines                          = lines
         EXCEPTIONS
           function                       = 1
           type                           = 2
           unopened                       = 3
           unstarted                      = 4
           window                         = 5
           bad_pageformat_for_print       = 6
           spool_error                    = 7
           codepage                       = 8
           OTHERS                         = 9
        IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
      ENDIF.

  • Running iTunes 11.0.3 64bit Windows 7. The "join Tracks" line has disappeared from the box that opens when you click "options" after inserting a CD. Only 2 lines show up: "Get track names" and "Submit CD Track names". Where did "Join Tracks" go?

    Running iTunes 11.0.3 64bit Windows 7. The "join Tracks" line has disappeared from the box that opens when you click "options" after inserting a CD. Only 2 lines show up: "Get track names" and "Submit CD Track names". Where did "Join Tracks" go?

    i have the same problem no radio stations at all bit shabby hate technolgy now adays

  • Cannot retrieve all vector objects - reading only last line .. Please help

    <pre>
    When I test the vector in the method that adds the elements, each line is returned. Testing the vector in the method getData(), all items are returned within the while loop, but the test returns only the last line of in the vector. Can anyone help me out and let me know what I'm doing wrong.
    Here's a summary of what I'm doing and the code follows.....
    My bean class:
    - creates a vector and adds several lines to the vector
    - using StringTokenizer and Enumeration, parses the data and checks to see if the line has the required amount of tokens (which is 4). If so, then the string is passed to my main class
    In the main class, the string is parsed into its appropriate attribute and then the required ones are displayed in the browser.
    //Vector class bean
    public SpecBean()
    public Vector addData()
    vecdata.addElement ("3|4||");
    vecdata.addElement ("2|3||1200");
    vecdata.addElement ("1|2|Q|");
    vecdata.addElement ("4|2|U|4356");
    return vecdata;
    public String getData()
    StringTokenizer st;
    String record = new String();
    Enumeration enumdata = vecdata.elements();
    while (enumdata.hasMoreElements())
    record = enumdata.nextElement().toString();
    System.out.println (record);
    st = new StringTokenizer( record, "|");
    int numberOfTokens = st.countTokens();
    if (numberOfTokens < 4)
    record = "Incomplete Data";
    return record;
    // end class...
    //begin main class -- this is a servlet which is why the
    //out.println statements are there
    try {
    SpecBean specs = new SpecBean();
    specs.getItemListing();
    token = new StringTokenizer ((String)specs.getData(), "|");
    out.println ("<table width=\"100%\" border=1>");
    out.println("<tr>");
    out.println ("<td width=\"40%\">");
    while (token.hasMoreTokens())
    String id = token.nextToken();
    String orderNum = token.nextToken();
    String name = token.nextToken();
    String confNum = token.nextToken();
    out.println (title + "</td>");
    out.println ("<td width=\"20%\" align=\"right\">" + "$" + price + "</td>");
    out.println ("<td width=\"40%\">" + notes);
    //end main class
    Thank you.

    <pre>
    My apologies. What I was looking to do was return EVERY line from the vector that had an equivalent of 4 tokens and no less. I just realized that the sample data I had entered into the vector only had one line w/ 4 tokens. When this is modified and there are 2+ lines that contain 4 tokens, the only line that is retrieved is the very last line. So if the data in the vector was:
    public Vector addData()
    vecdata.addElement ("3|4|rtd|222");
    vecdata.addElement ("2|3||1200");
    vecdata.addElement ("1|2|QsT|");
    vecdata.addElement ("4|2|U|4356");
    return vecdata;
    public String getData()
    StringTokenizer st;
    String record = new String();
    Enumeration enumdata = vecdata.elements();
    while (enumdata.hasMoreElements())
    record = enumdata.nextElement().toString();
    System.out.println (record);
    st = new StringTokenizer( record, "|");
    int numberOfTokens = st.countTokens();
    if (numberOfTokens < 4)
    record = "Incomplete Data";
    return record;
    The output to the browser is
    4 2 U 4356
    and not
    3 4 rtd 222
    4 2 U 4356
    I did some print statements throughout addData() and getData() to see if all of the objects in the vector were still there and everything checked out until I hit the end of the getData(). Before 'return record' the print statement returned '4 2 U 4356' only. I'm not sure what I have missed to have the getData() method return only one matching line and not all of them.
    Your help is appreciated. Thank you.

  • Only last slide showing when recording a Software Simulation in CP5

    I'm working on a series of lessons about a database application.  I've recorded 3 lessons with no problems.  Of course today is different.  I've set CP5 up to record a new set of screens and when I finish recording only the last slide is showing up on the filmstrip.  I've checked and it isn't on FMR.  Any ideas.  I've ran through the simulation 3 times making sure I've clicked somewhere on each screen I want it to capture and no luck.
    Thanks for any and all help.
    Susan

    I have the sound turned down since I work in a cubical.
    The problem resolved when I rebooted the computer.
    Thanks
    Susan Wright (Equilady)
    Remember, the mighty oak was just a nut that held its ground.
    http://www.equilady.com

  • How can I enable auto-sizing for forms? Only 1 line shows at a time.

    The form I use to enter calendar information (in Microsoft SharePoint) used to show the whole form. Now when I try to create a new calendar entry I get one line visible. There is a vertical scroll bar to the right which allows me to see the whole form - one line at a time. This was not the case last May (which may have been the last time I was making new calendar entries). I've tried disabling all plug-ins, but that doesn't affect anything with the calendar entry.

    There are a few issues here, ie
    "uid=jwalker, ou=People, ou=test1,o=test.com.cn" has no parent.
    Did you create ou=People, ou=test1,o=test.com.cn before you tried to create above dn?
    Also, your suffix naming is very poor and will result in more problems later on especially since you want to create sub suffices.
    you should use the DC notation, ie dc=test,dc=com,dc=cn that way you can easily attach o=test1,dc=test,dc=com,dc=cn
    This way you would be able to keep your separate suffices inside separate database files and you will have less headaches when you try to replicate and do bulk re-initialisations.

  • Text Area Problem. Last Line not displayed

    HI,
    I am using TextArea component in the MXML script. We are having the problem of not displaying the last line in textarea. The textarea has scroll also. But, when scrolling only last line is not displayed and we have to see only by moving the mouse to component. We want to see all the text only by scrolling the bar. Please help me to resolve this issue.
    Thanks,
    Krishna

    Hi,
    Please check once your transport log, wether it was tranported correctly or not.
    Regards,
    Kumar

  • Old IMac 17'' video sync problem at boot

    Hi,
    A friend has brought his IMac 17'', which has a video sync problem. At boot, all screen lines are out of sync, but I can more or less recognize the apple logo, which disappears later. Something happens at least, there is a boot processing going on I think.
    I tried to reset the parameter ram, it does not help.
    I have heard of a power supply problem that can cause that problem. Is that right? The computer serial is: W8446APAPP7.
    Can anyone help?
    Thanks!
    Philippe

    Here's a simple test case I've made, it's just a bunch of lines drawn in an orthographic OpenGL view. When you scroll horizontially with scrollbars or by space+dragging, the effect is very noticeble.
    The .app and source are available here:
    http://www.johnpsimons.com/mac/TestApp.tgz
    http://www.johnpsimons.com/mac/TestSource.tgz
    I believe this is the same problem as with the Apple homepage Flash thing. It's not just a problem with Flash.

  • Justification with last line center

    Hello all,
    I am using textLayout_1.0.0.595.swf.
    I have problem with setting justification with last line center style to paragraph .
    Here is code snippet
    var textLayoutFormat:TextLayoutFormat = new TextLayoutFormat(null);
    textLayoutFormat.textAlign = TextAlign.JUSTIFY;
    textLayoutFormat.textAlignLast=TextAlign.CENTER;
    var editManager:EditManager = currentSelectedTextFlow.interactionManager as EditManager;
    editManager.applyFormat(textLayoutFormat,textLayoutFormat,null);
    Thanks,
    Vikram

    I would suggest that you simplify your code slightly and just call applyParagraphFormat, since the change you are making is to the paragraph.
    When you call applyParagraphFormat, it will apply the format based on the current selection. If you add this line:
         currentSelectedTextFlow.interactionManager.selectRange(0, 0);
    Then the format should be applied to the first paragraph. To see what the selection is, you can look at the interactionManager's absoluteStart and absoluteEnd. Values of -1 means there is no selection and no changes will be applied.
    Hope this helps,
    - robin

  • After download and installation of PS PE12 I have problems starting the programm. After selecting video and new project nothing happens, only the colorbar below new project is showing

    New computer.
    After download and installation of PS PE12
    I have problems starting the programm, double clicking on the icon.
    After selecting video and new project nothing happens, only the colorbar below new project is showing, nothing happens.
    (expected was to activate the program and the sarting the PE12)
    PSE12 runs fine
    System:
    WIN8.1 / i7 /16GB RAM

    New computer.
    After download and installation of PS PE12
    I have problems starting the programm, double clicking on the icon.
    After selecting video and new project nothing happens, only the colorbar below new project is showing, nothing happens.
    (expected was to activate the program and the sarting the PE12)
    PSE12 runs fine
    System:
    WIN8.1 / i7 /16GB RAM

  • My phone battery can only last an hour. Problem started a week ago while I was in Argentina. I am back in the country now, this morning I left the house with a full battery and when I got to work the phone had shut down. Phone is 7 months old. Why?

    Dear Apple Family,
    I have been using an iPhone since I lost interest with Nokia phones. I fell in love with Apple's innovation, design and technology.  However, I am beginning to lose interest wth the product as well.
    I have an iPhone 5, my phone's battery can only last an hour and the phone is 7 month old.  The problem started last week while I was in Argentina. I had a bad holiday due to this, as I could not make use of the technology because my phone was off most of the time and I had nowehere to charge except to go back to the hotel.  I could not even share pictures on Instagram.  Has anyone ever experienced such a problem?  If so, why and how was the problem fixed?  I am starting to engage in a debate that I have been trying to avoid with my friends.  They say that Samsung is striving and I now tend to agree, and if the problem persists I will gladly join the Samsung family. They seem to make reliable phones.  Sadly, I never experienced this problem with iPhone 3GS & iPhone 4S.
    With Gratitude,
    Thapelo

    Hello,
    If you're in a country where there's an apple shop (unfortunately not mine), go check it and ask the employee about it: he's gonna check your Iphone on a "device"
    I've got an iphone 5 and it's working very well with me but I have to admit that its battery lasts (slower) than my Ipad 2.
    Still i can help with some tips that may improve your iohone's battery by an hour in addition (hopefully):
    - close all apps by multitasking....
    - do NOT keep the brightness to the max
    Believe me you're gonna regret changing your phone to a samsung
    Hope i've helped and sorry for my bad english (has english as 3rd language)

  • Imovies keeps crashing when I try to import video from my sony handy cam. only started with last update. anyone know a solution?

    Imovies keeps crashing when I try to import video from my sony handy cam. only started with last update. anyone know a solution?

    Sorry. I thought I copied everything when I hit select all.
    Process:         iMovie [3255]
    Path:            /Applications/iMovie.app/Contents/MacOS/iMovie
    Identifier:      com.apple.iMovieApp
    Version:         9.0.8 (1778)
    Build Info:      iMovieApp-1778000000000000~2
    App Item ID:     408981434
    App External ID: 10440451
    Code Type:       X86 (Native)
    Parent Process:  launchd [134]
    Date/Time:       2013-01-03 10:15:20.966 -0700
    OS Version:      Mac OS X 10.7.5 (11G63b)
    Report Version:  9
    Crashed Thread:  27  com.apple.bdplayback-DDPTask
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000004121532b
    VM Regions Near 0x4121532b:
        MALLOC_LARGE (reused)  000000000e728000-000000000e929000 [ 2052K] rw-/rwx SM=PRV 
    -->
        __TEXT                 0000000070000000-0000000070142000 [ 1288K] r-x/rwx SM=COW  /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    Application Specific Information:
    objc[3255]: garbage collection is OFF
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x90a0bc5e semaphore_wait_trap + 10
    1   com.apple.AVCHDPlugin                   0x0b4bec9a semaphore_wait(viona_semaphore_t*) + 42
    2   com.apple.AVCHDPlugin                   0x0b4cb8c8 WinPort::DoMessage(long, long) + 248
    3   com.apple.AVCHDPlugin                   0x0b47ce33 _ZL10OpenPlayerP3VDRRK12DiskItemNamebRP17CDDiskPlayerClassP11DDPDiskInfo + 675
    4   com.apple.AVCHDPlugin                   0x0b47d17d DDP_OpenPlayerWithPath + 77
    5   com.apple.AVCHDPlugin                   0x0b59262d CDVDManager::OpenPlayer(CDVDContentFormat, unsigned char) + 429
    6   com.apple.AVCHDPlugin                   0x0b59ae10 CMediaManager::OpenMediaFileWithURL(__CFURL const*) + 530
    7   com.apple.AVCHDPlugin                   0x0b4e26e6 DVDOpenMediaFile + 198
    8   com.apple.AVCHDPlugin                   0x0b4d3393 AVCHDOpenMedia + 99
    9   com.apple.AVCHDPlugin                   0x0b417d29 -[AVCHD openMedia:] + 408
    10  com.apple.AVCHDPlugin                   0x0b418346 -[AVCHD pathIsValidVolumeMainThread:] + 122
    11  com.apple.CoreFoundation                0x97bcdd11 -[NSObject performSelector:withObject:] + 65
    12  com.apple.Foundation                    0x95837e0c __NSThreadPerformPerform + 503
    13  com.apple.CoreFoundation                0x97b4513f __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
    14  com.apple.CoreFoundation                0x97b44af6 __CFRunLoopDoSources0 + 246
    15  com.apple.CoreFoundation                0x97b6e9c8 __CFRunLoopRun + 1112
    16  com.apple.CoreFoundation                0x97b6e1dc CFRunLoopRunSpecific + 332
    17  com.apple.CoreFoundation                0x97b6e088 CFRunLoopRunInMode + 120
    18  com.apple.HIToolbox                     0x97714543 RunCurrentEventLoopInMode + 318
    19  com.apple.HIToolbox                     0x9771b7d6 ReceiveNextEventCommon + 168
    20  com.apple.HIToolbox                     0x9771b71a BlockUntilNextEventMatchingListInMode + 88
    21  com.apple.AppKit                        0x95b3eee8 _DPSNextEvent + 678
    22  com.apple.AppKit                        0x95b3e752 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113
    23  com.apple.iMovieApp                     0x0007cf3e 0x2d000 + 327486
    24  com.apple.AppKit                        0x95b3aac1 -[NSApplication run] + 911
    25  com.apple.AppKit                        0x95dcbac5 NSApplicationMain + 1054
    26  com.apple.iMovieApp                     0x0002f35a 0x2d000 + 9050
    27  com.apple.iMovieApp                     0x0002eec5 0x2d000 + 7877
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x90a0db5e __select_nocancel + 10
    1   libdispatch.dylib                       0x9391acbd _dispatch_mgr_invoke + 642
    2   libdispatch.dylib                       0x93919853 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x90a0e02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x94e83ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x94e856fe start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib                  0x90a0e02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x94e83ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x94e856fe start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x90a0e02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x94e83ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x94e856fe start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib                  0x90a0e02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x94e83ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x94e856fe start_wqthread + 30
    Thread 6:
    0   libsystem_kernel.dylib                  0x90a0e02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x94e83ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x94e856fe start_wqthread + 30
    Thread 7:
    0   libsystem_kernel.dylib                  0x90a0e02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x94e83ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x94e856fe start_wqthread + 30
    Thread 8:
    0   libsystem_kernel.dylib                  0x90a0e02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x94e83ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x94e856fe start_wqthread + 30
    Thread 9:
    0   libsystem_kernel.dylib                  0x90a0e02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x94e83ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x94e856fe start_wqthread + 30
    Thread 10:
    0   libsystem_kernel.dylib                  0x90a0e02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x94e83ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x94e856fe start_wqthread + 30
    Thread 11:
    0   libsystem_kernel.dylib                  0x90a0e02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x94e83ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x94e856fe start_wqthread + 30
    Thread 12:
    0   libsystem_kernel.dylib                  0x90a0bc22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x90a0b1f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x97b659da __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x97b6eb04 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x97b6e1dc CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x97b7ef01 CFRunLoopRun + 129
    6   com.apple.FWAVCPrivate                  0x0200d763 _ZN3AVSL27AVCVideoServicesThreadStartEPNS_28AVCVideoServicesThreadParamsE + 254
    7   libsystem_c.dylib                       0x94e81ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x94e856de thread_start + 34
    Thread 13:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x90a0db42 __select + 10
    1   com.apple.CoreFoundation                0x97bbce15 __CFSocketManager + 1557
    2   libsystem_c.dylib                       0x94e81ed9 _pthread_start + 335
    3   libsystem_c.dylib                       0x94e856de thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x90a0d83e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94e85e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x94e85f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x9431b3a7 TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore          0x9431b11d TSWaitOnSemaphoreCommon + 490
    5   com.apple.CoreServices.CarbonCore          0x9431af2e TSWaitOnSemaphoreRelative + 24
    6   com.apple.QuickTimeComponents.component          0x9c3a016a 0x9bdb3000 + 6213994
    7   libsystem_c.dylib                       0x94e81ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x94e856de thread_start + 34
    Thread 15:: com.apple.audio.IOThread.client
    0   libsystem_kernel.dylib                  0x90a0bc22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x90a0b1f6 mach_msg + 70
    2   com.apple.audio.CoreAudio               0x9973b9d6 HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned long, unsigned long, mach_msg_header_t*, unsigned int) + 122
    3   com.apple.audio.CoreAudio               0x9973ba42 HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, unsigned int) + 60
    4   com.apple.audio.CoreAudio               0x99733e37 HALC_ProxyIOContext::IOWorkLoop() + 1145
    5   com.apple.audio.CoreAudio               0x997338fe HALC_ProxyIOContext::IOThreadEntry(void*) + 136
    6   com.apple.audio.CoreAudio               0x99733870 __HALC_ProxyIOContext_block_invoke_6 + 20
    7   com.apple.audio.CoreAudio               0x997337f5 HALB_IOThread::Entry(void*) + 69
    8   libsystem_c.dylib                       0x94e81ed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x94e856de thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib                  0x90a0bc5e semaphore_wait_trap + 10
    1   com.apple.QuickTimeComponents.component          0x9c87bee4 0x9bdb3000 + 11308772
    2   com.apple.QuickTimeComponents.component          0x9c410345 0x9bdb3000 + 6673221
    3   com.apple.QuickTimeComponents.component          0x9c87be17 0x9bdb3000 + 11308567
    4   libsystem_c.dylib                       0x94e81ed9 _pthread_start + 335
    5   libsystem_c.dylib                       0x94e856de thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib                  0x90a0d83e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94e85e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x94e85f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x9431b3a7 TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore          0x9431b11d TSWaitOnSemaphoreCommon + 490
    5   com.apple.CoreServices.CarbonCore          0x9431af2e TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore          0x9434de53 AIOFileThread(void*) + 1019
    7   libsystem_c.dylib                       0x94e81ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x94e856de thread_start + 34
    Thread 18:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x90a0d83e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94e85e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x94e2d82a pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x9c4c2467 0x9bdb3000 + 7402599
    4   libsystem_c.dylib                       0x94e81ed9 _pthread_start + 335
    5   libsystem_c.dylib                       0x94e856de thread_start + 34
    Thread 19:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x90a0d83e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94e85e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x94e2d82a pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x9c4c2467 0x9bdb3000 + 7402599
    4   libsystem_c.dylib                       0x94e81ed9 _pthread_start + 335
    5   libsystem_c.dylib                       0x94e856de thread_start + 34
    Thread 20:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x90a0d83e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94e85e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x94e2d82a pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x9c4c2467 0x9bdb3000 + 7402599
    4   libsystem_c.dylib                       0x94e81ed9 _pthread_start + 335
    5   libsystem_c.dylib                       0x94e856de thread_start + 34
    Thread 21:
    0   libsystem_kernel.dylib                  0x90a0d83e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94e85e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x94e3642c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.Foundation                    0x95844be8 -[NSCondition wait] + 304
    4   com.apple.Foundation                    0x958377f0 -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 1236
    5   com.apple.Foundation                    0x95837286 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 160
    6   com.apple.AVCHDPlugin                   0x0b4182af -[AVCHD pathIsValidVolume:] + 159
    7   com.apple.proapps.MIO                   0x0abb1642 -[PluginLockPair mountPath:] + 290
    8   com.apple.proapps.MIO                   0x0abb13d6 -[PluginLockPair scanPaths] + 363
    9   com.apple.Foundation                    0x95842e25 -[NSThread main] + 45
    10  com.apple.Foundation                    0x95842dd5 __NSThread__main__ + 1582
    11  libsystem_c.dylib                       0x94e81ed9 _pthread_start + 335
    12  libsystem_c.dylib                       0x94e856de thread_start + 34
    Thread 22:
    0   libsystem_kernel.dylib                  0x90a0d83e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94e85e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x94e85f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x958753c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9583b7d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9583b6a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proapps.MIO                   0x0abb1487 -[PluginLockPair scanPaths] + 540
    7   com.apple.Foundation                    0x95842e25 -[NSThread main] + 45
    8   com.apple.Foundation                    0x95842dd5 __NSThread__main__ + 1582
    9   libsystem_c.dylib                       0x94e81ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x94e856de thread_start + 34
    Thread 23:
    0   libsystem_kernel.dylib                  0x90a0bc22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x90a0b1f6 mach_msg + 70
    2   com.apple.framework.IOKit               0x9048f23d io_connect_method + 465
    3   com.apple.framework.IOKit               0x9043fa9d IOConnectCallMethod + 559
    4   com.apple.framework.IOKit               0x9043fd97 IOConnectCallStructMethod + 84
    5   com.apple.iokit.SCSITaskLib             0x0bd533a5 MMCDeviceUserClientClass::ModeSense10(unsigned char, unsigned char, unsigned char, unsigned char, void*, unsigned short, SCSITaskStatus*, SCSI_Sense_Data*) + 235
    6   com.apple.iokit.SCSITaskLib             0x0bd529eb MMCDeviceUserClientClass::sModeSense10(void*, unsigned char, unsigned char, unsigned char, unsigned char, void*, unsigned short, SCSITaskStatus*, SCSI_Sense_Data*) + 81
    7   com.apple.DiscRecording                 0x9a9b2aae DRDevicePlugIn::ExecuteMMCDeviceTask(DRExecuteSCSITaskParam*, __DRSenseInfo*) + 876
    8   com.apple.DiscRecording                 0x9a9b264a DRDevicePlugIn::ExecuteSCSITask(DRExecuteSCSITaskParam*, __DRSenseInfo*) + 68
    9   com.apple.DiscRecording                 0x9a9b24aa DROpticalDevice::ExecuteSCSITask(DRExecuteSCSITaskParam*, __DRSenseInfo*) + 252
    10  com.apple.DiscRecording                 0x9a9b2163 DROpticalDevice::ModeSense10(unsigned char, void*, unsigned short*) + 351
    11  com.apple.DiscRecording                 0x9a9b1fc4 DROpticalDevice::GetCDCapabilitiesPage(__CDCapabilitiesPage*) + 102
    12  com.apple.DiscRecording                 0x9a9b0d98 DROpticalDevice::InitializeState() + 1048
    13  com.apple.DiscRecording                 0x9a9ab7dd DROpticalDevice::Initialize(void*, __CFData const*, __CFString const*) + 225
    14  com.apple.DiscRecording                 0x9a9ab3ff _DRDeviceCreate(void*, __CFData const*, __CFString const*, __CFDictionary const*) + 185
    15  com.apple.DiscRecording                 0x9a9ab321 -[DRDevice(InternalBridgeMethods) initWithRegistryPath:forGUID:usingProfile:] + 46
    16  com.apple.DiscRecording                 0x9a9ab2ee -[DRDevice(InternalBridgeMethods) initWithRegistryPath:forGUID:] + 55
    17  com.apple.DiscRecording                 0x9a9f2733 _DRDeviceCreate + 218
    18  com.apple.DiscRecording                 0x9a9aab50 DROpticalDevice::Create(__CFData const*, __CFString const*) + 24
    19  com.apple.DiscRecording                 0x9a9aaa8f DRDeviceManager::RegisterAuthoringDevice(__CFData const*, __CFString const*) + 57
    20  com.apple.DiscRecording                 0x9a9aa9d1 DRDeviceManager::IOCDDeviceMatched(DRDeviceManager*, unsigned int) + 205
    21  com.apple.DiscRecording                 0x9a9aa63e DRDeviceManager::DRDeviceManager() + 376
    22  com.apple.DiscRecording                 0x9a9aa4ac DRDeviceManager::Create() + 30
    23  com.apple.DiscRecording                 0x9a9a8f9d DRAutoInit::Initialize() + 739
    24  com.apple.DiscRecording                 0x9a9a8ad5 DRDeviceCopyDeviceForBSDName + 173
    25  com.apple.MPEG2PSRADPlugin              0x0ad6567d FenwayIsFolderSupported + 613
    26  com.apple.MPEG2PSRADPlugin              0x0ad58c71 -[FenRAD pathIsValidVolume:] + 120
    27  com.apple.proapps.MIO                   0x0abb1642 -[PluginLockPair mountPath:] + 290
    28  com.apple.proapps.MIO                   0x0abb13d6 -[PluginLockPair scanPaths] + 363
    29  com.apple.Foundation                    0x95842e25 -[NSThread main] + 45
    30  com.apple.Foundation                    0x95842dd5 __NSThread__main__ + 1582
    31  libsystem_c.dylib                       0x94e81ed9 _pthread_start + 335
    32  libsystem_c.dylib                       0x94e856de thread_start + 34
    Thread 24:: com.apple.bdplayback-DVDEventCallbackThread
    0   libsystem_kernel.dylib                  0x90a0bc5e semaphore_wait_trap + 10
    1   com.apple.AVCHDPlugin                   0x0b4bec9a semaphore_wait(viona_semaphore_t*) + 42
    2   com.apple.AVCHDPlugin                   0x0b4cc2bd WinPortServer::ProcessMessages() + 133
    3   com.apple.AVCHDPlugin                   0x0b4be300 ST20Thread::Run(PThreadRunParams*) + 38
    4   libsystem_c.dylib                       0x94e83f05 _pthread_body + 72
    Thread 25:: com.apple.bdplayback-TFThread
    0   libsystem_kernel.dylib                  0x90a0d83e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94e85e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x94e3642c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.AVCHDPlugin                   0x0b5dc58c WindowsEvent::Wait(int) + 86
    4   com.apple.AVCHDPlugin                   0x0b60c4e1 _ZL14IdleFiberEntryPv + 305
    5   com.apple.AVCHDPlugin                   0x0b4be300 ST20Thread::Run(PThreadRunParams*) + 38
    6   libsystem_c.dylib                       0x94e83f05 _pthread_body + 72
    Thread 26:: com.apple.bdplayback-OSXMessageThread
    0   libsystem_kernel.dylib                  0x90a0bc5e semaphore_wait_trap + 10
    1   com.apple.AVCHDPlugin                   0x0b4bec9a semaphore_wait(viona_semaphore_t*) + 42
    2   com.apple.AVCHDPlugin                   0x0b4cc2bd WinPortServer::ProcessMessages() + 133
    3   com.apple.AVCHDPlugin                   0x0b4be300 ST20Thread::Run(PThreadRunParams*) + 38
    4   libsystem_c.dylib                       0x94e83f05 _pthread_body + 72
    Thread 27 Crashed:: com.apple.bdplayback-DDPTask
    0   com.apple.AVCHDPlugin                   0x0b573160 CCPI::fromMEM(unsigned char const*) + 26
    1   com.apple.AVCHDPlugin                   0x0b576979 CClipInformationFile::fromMEM(unsigned char const*) + 551
    2   com.apple.AVCHDPlugin                   0x0b540296 CPlaybackControlEngine::InitClipObject(CClipObject&, unsigned short, unsigned short, CPlayItem&) + 1032
    3   com.apple.AVCHDPlugin                   0x0b541c1c CPlaybackControlEngine::GenerateClipObjects() + 4036
    4   com.apple.AVCHDPlugin                   0x0b4ee596 BDMVDiskPlayerClass::Init(WinPortServer*, GenericProfile*, DVDDiskType, BDMVFileSystem*, unsigned char) + 562
    5   com.apple.AVCHDPlugin                   0x0b42a7ed BDMVDiskPlayerFactory::CreateDiskPlayer(WinPortServer*, VDR*, GenericProfile*, DVDDiskType, BDMVFileSystem*, unsigned char, CDDiskPlayerClass*&) + 113
    6   com.apple.AVCHDPlugin                   0x0b477e51 DDPScheduler::Message(long, long) + 511
    7   com.apple.AVCHDPlugin                   0x0b4cb0c2 WinPort::ServeNow(WinPortMessage*, int, unsigned int, long, long, long) + 136
    8   com.apple.AVCHDPlugin                   0x0b4cbfe5 WinPortMessage::ServeNow() + 77
    9   com.apple.AVCHDPlugin                   0x0b4cc3b2 WinPortServer::ProcessMessages() + 378
    10  com.apple.AVCHDPlugin                   0x0b479bc1 ScheduleRoutine + 81
    11  com.apple.AVCHDPlugin                   0x0b4be300 ST20Thread::Run(PThreadRunParams*) + 38
    12  libsystem_c.dylib                       0x94e83f05 _pthread_body + 72
    Thread 28:
    0   libsystem_kernel.dylib                  0x90a0d876 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x94e806af pthread_mutex_lock + 633
    2   com.apple.DiscRecording                 0x9a9a8cf3 DRAutoInit::Initialize() + 57
    3   com.apple.DiscRecording                 0x9a9aa86e DRDiskArbitor::DiskAppearedCallback(__DADisk*, void*) + 30
    4   com.apple.DiskArbitration               0x966a0cf2 _DADispatchCallback + 221
    5   com.apple.DiskArbitration               0x966a0960 _DASessionCallback + 328
    6   com.apple.CoreFoundation                0x97b35d0a __CFMachPortPerform + 346
    7   com.apple.CoreFoundation                0x97b35b91 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 49
    8   com.apple.CoreFoundation                0x97b357bb __CFRunLoopDoSource1 + 155
    9   com.apple.CoreFoundation                0x97b6ee01 __CFRunLoopRun + 2193
    10  com.apple.CoreFoundation                0x97b6e1dc CFRunLoopRunSpecific + 332
    11  com.apple.CoreFoundation                0x97b7ef01 CFRunLoopRun + 129
    12  com.apple.DiscRecording                 0x9a9aa0be DRWorkLoop::WorkLoop() + 274
    13  com.apple.DiscRecording                 0x9a9a9f95 DRWorkLoop::WorkLoopEntry(DRWorkLoop*) + 17
    14  com.apple.DiscRecording                 0x9a9a9d04 DRThreadObject::StartRoutine(DRThreadObject*) + 142
    15  com.apple.DiscRecording                 0x9a9a9c75 DRThreadObject::SymbolRoutine(DRThreadObject*) + 17
    16  libsystem_c.dylib                       0x94e81ed9 _pthread_start + 335
    17  libsystem_c.dylib                       0x94e856de thread_start + 34
    Thread 29:
    0   libsystem_kernel.dylib                  0x90a0bc22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x90a0b1f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x97b659da __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x97b6eb04 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x97b6e1dc CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x97b6e088 CFRunLoopRunInMode + 120
    6   com.apple.CoreMediaIO                   0x9a697ba2 CMIO::DAL::RunLoop::OwnThread(void*) + 160
    7   com.apple.CoreMediaIO                   0x9a68d70d CAPThread::Entry(CAPThread*) + 123
    8   libsystem_c.dylib                       0x94e81ed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x94e856de thread_start + 34
    Thread 30:
    0   libsystem_kernel.dylib                  0x90a0bc22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x90a0b1f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x97b659da __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x97b6eb04 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x97b6e1dc CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x97b6e088 CFRunLoopRunInMode + 120
    6   com.apple.CoreMediaIOServices           0x0acc18fa CMIO::DAL::RunLoop::OwnThread(void*) + 160
    7   com.apple.CoreMediaIOServices           0x0acb7b39 CAPThread::Entry(CAPThread*) + 123
    8   libsystem_c.dylib                       0x94e81ed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x94e856de thread_start + 34
    Thread 31:
    0   libsystem_kernel.dylib                  0x90a0d83e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x94e85e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x94e3642c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.Foundation                    0x95844be8 -[NSCondition wait] + 304
    4   com.apple.Foundation                    0x958377f0 -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 1236
    5   com.apple.Foundation                    0x95837286 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 160
    6   com.apple.iMovieApp                     0x0003f0a1 0x2d000 + 73889
    7   com.apple.Foundation                    0x95842e25 -[NSThread main] + 45
    8   com.apple.Foundation                    0x95842dd5 __NSThread__main__ + 1582
    9   libsystem_c.dylib                       0x94e81ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x94e856de thread_start + 34
    Thread 32:
    0   libsystem_kernel.dylib                  0x90a0bc5e semaphore_wait_trap + 10
    1   com.apple.AVCHDPlugin                   0x0b4bec9a semaphore_wait(viona_semaphore_t*) + 42
    2   com.apple.AVCHDPlugin                   0x0b4cc2bd WinPortServer::ProcessMessages() + 133
    3   com.apple.AVCHDPlugin                   0x0b4be300 ST20Thread::Run(PThreadRunParams*) + 38
    4   libsystem_c.dylib                       0x94e83f05 _pthread_body + 72
    Thread 33:
    0   libsystem_kernel.dylib                  0x90a0bc5e semaphore_wait_trap + 10
    1   com.apple.AVCHDPlugin                   0x0b4bec9a semaphore_wait(viona_semaphore_t*) + 42
    2   com.apple.AVCHDPlugin                   0x0b4cc2bd WinPortServer::ProcessMessages() + 133
    3   com.apple.AVCHDPlugin                   0x0b4be300 ST20Thread::Run(PThreadRunParams*) + 38
    4   libsystem_c.dylib                       0x94e83f05 _pthread_body + 72
    Thread 34:: com.apple.bdplayback-CPresentationEngine
    0   libsystem_kernel.dylib                  0x90a0bc5e semaphore_wait_trap + 10
    1   com.apple.AVCHDPlugin                   0x0b4bec9a semaphore_wait(viona_semaphore_t*) + 42
    2   com.apple.AVCHDPlugin                   0x0b4cc2bd WinPortServer::ProcessMessages() + 133
    3   com.apple.AVCHDPlugin                   0x0b4be300 ST20Thread::Run(PThreadRunParams*) + 38
    4   libsystem_c.dylib                       0x94e83f05 _pthread_body + 72
    Thread 27 crashed with X86 Thread State (32-bit):
      eax: 0x85cdcd0c  ebx: 0x85cdccfc  ecx: 0xbb53e32b  edx: 0xbb53e32b
      edi: 0x85cd7000  esi: 0xbb53e32c  ebp: 0xb0bfeb88  esp: 0xb0bfeb70
       ss: 0x00000023  efl: 0x00010286  eip: 0x0b573160   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
      cr2: 0x4121532b
    Logical CPU: 1
    Binary Images:
       0x2d000 -   0x4b3fef  com.apple.iMovieApp (9.0.8 - 1778) <8B088F1A-C83A-3009-BCDA-03F2292C7A8F> /Applications/iMovie.app/Contents/MacOS/iMovie
      0x574000 -   0x58aff3  com.apple.iLifeFaceRecognition (1.0 - 21.1) <B06AF65E-3188-3361-BD75-3EE9B2DF4A68> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/iLifeFaceRecognition
      0x598000 -   0x599ff3  com.apple.Helium (3.1.0 - 18567.3) <72A242AC-3BA7-3DD5-A043-000C7A9DCD11> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Helium
      0x5a0000 -   0x5cefe3  com.apple.MPEG2TSDecoder (1.0 - 84) <7E230E93-F7F6-34A2-8B60-E6F79E353426> /Applications/iMovie.app/Contents/Frameworks/Mpeg2TsDecoder.framework/Versions/ A/Mpeg2TsDecoder
      0x606000 -   0x607ff7 +com.bensyverson.dvmatte.autopicker (1.0 - 1.0) <EB13CAE4-1A5F-7C8E-F4FA-39C5B0A22636> /Applications/iMovie.app/Contents/Frameworks/DVMAutopick.framework/Versions/A/D VMAutopick
      0x610000 -   0x611fff +eOkaoCom.dylib (??? - ???) <2DE16B47-23E7-73DB-1297-C928E40DFC31> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoCom.dylib
      0x615000 -   0x63aff2 +eOkaoPt.dylib (??? - ???) <831D49D0-43A0-21A0-2662-2207E3BE0FF6> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoPt.dylib
      0x642000 -   0x676fe7 +eOkaoDt.dylib (??? - ???) <5693A28E-8C94-0F5F-150E-3B17CF753F64> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoDt.dylib
      0x67f000 -   0x7e6fff +eOkaoFr.dylib (??? - ???) <E355FB47-C5EF-50CF-621A-9B17A50E2850> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoFr.dylib
      0x7ec000 -   0x9effeb  com.apple.Helium.HeliumRender (2.1.0 - 18567.3) <A20BE37C-2987-3BB8-AA52-0607FE7CCF8C> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumRender.framework/Versions/A/HeliumRender
      0xa45000 -   0xac6fe7  com.apple.Helium.Heliumfilters (2.1.0 - 18567.3) <3DCC7DCF-8734-31A0-9B6F-0139CC6CB71C> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumFilters.framework/Versions/A/HeliumFilters
      0xdfe000 -   0xfbbfeb  com.apple.Helium.HeliumSensoCore (2.0.2 - 18567.3) <BFA19728-C6DD-3D2D-BFF5-1099CBB20679> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumSensoCore.framework/Versions/A/HeliumSensoCore
    0x2009000 -  0x2039ff7  com.apple.FWAVCPrivate (52.47 - 47) <8E724EF3-79D6-3B0D-8A57-6E13DA3EACB5> /System/Library/PrivateFrameworks/FWAVCPrivate.framework/FWAVCPrivate
    0x2138000 -  0x213afff  com.apple.AddressBook.LocalSourceBundle (1.5 - 1091) <7A218EB1-111E-3E5C-8FC0-3300D232D7F6> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x213f000 -  0x2142ffe  com.apple.DirectoryServicesSource (1.5 - 1091) <2DB6EF39-C50C-318D-9F7A-7A9EE37C1FE2> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
    0x3670000 -  0x36cbfff  com.apple.AddressBook.CardDAVPlugin (10.7.2 - 200) <B5CA94A3-383B-371A-BB8C-F7142EB4FF6B> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
    0x36e9000 -  0x3728fff  com.apple.ExchangeSource (1.5 - 1091) <64F057B1-B86E-353E-B4C7-705B5EA0A8D2> /System/Library/Address Book Plug-Ins/Exchange.sourcebundle/Contents/MacOS/Exchange
    0x6b10000 -  0x6c98ff9  GLEngine (??? - ???) <84549EEF-900F-397A-AABC-47DD261F40BE> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x6ccf000 -  0x6e39ffb  libGLProgrammability.dylib (??? - ???) <169ED314-B937-3877-A7D7-4AFB96D8C561> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x6e68000 -  0x7104ff3  com.apple.ATIRadeonX3000GLDriver (7.32.12 - 7.3.2) <86BEF6D7-D130-36AB-8939-5AB20C0681FE> /System/Library/Extensions/ATIRadeonX3000GLDriver.bundle/Contents/MacOS/ATIRade onX3000GLDriver
    0x7139000 -  0x7145ffb  libGPUSupport.dylib (??? - ???) <A4467427-9E43-3F03-96E7-B09BBD5F0A6D> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
    0x714c000 -  0x7179ff0  GLRendererFloat (??? - ???) <B72FCE8D-7A5E-35F3-8A9F-0D139F8921AB> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x7182000 -  0x718bff6  libcldcpuengine.dylib (2.0.19 - compatibility 1.0.0) <95A88DC8-E5EE-363F-9275-214D5AB7A2EF> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0x7192000 -  0x7194fff  libCoreFSCache.dylib (??? - ???) <9E7CBE71-566C-36E9-A49F-C5FF6956D76F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0x721d000 -  0x7373ff9  com.apple.iLMBAperture31Plugin (2.6.4 - 288.4.6) <DADA8260-5B52-3809-AA1A-F65C2ED80250> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperture31Plugin
    0x73bb000 -  0x73c2ff4  com.apple.iLMBAperturePlugin (2.6.4 - 288.4.6) <FF4D4456-FE0D-38EB-9BB2-6BE4147B646D> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperturePlugin
    0x73c9000 -  0x756dff5  com.apple.iLMBAperturePlugin2012 (2.6.4 - 288.4.6) <A06DA00C-9F21-3855-B043-16E18F0057CD> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperturePlugin2012
    0x75c7000 -  0x75c7fff  com.apple.iLMBAppDefPlugin (2.6.4 - 288.4.6) <72B8DECB-9CB6-345E-8739-BC65FF59FFE3> /Library/Application Support/iLifeMediaBrowser/*/iLMBAppDefPlugin
    0x75cc000 -  0x75d5ffb  com.apple.iLMBFinalCutPlugin (2.6.4 - 288.4.6) <903BA9A1-BCDB-392F-90EE-D9FDD775891E> /Library/Application Support/iLifeMediaBrowser/*/iLMBFinalCutPlugin
    0x75db000 -  0x75dcfff  com.apple.iLMBFolderPlugin (2.6.4 - 288.4.6) <FD20A467-5D44-3073-80B8-71508DC08B4F> /Library/Application Support/iLifeMediaBrowser/*/iLMBFolderPlugin
    0x75e1000 -  0x75e4fff  com.apple.iLMBGarageBandPlugin (2.6.4 - 288.4.6) <3B8CBDAF-6359-38E8-B2DF-CC7307F04F19> /Library/Application Support/iLifeMediaBrowser/*/iLMBGarageBandPlugin
    0x75ea000 -  0x75f5ff2  com.apple.iLMBiMoviePlugin (2.6.4 - 288.4.6) <C9D4201A-DDD4-3C7B-9E01-510A2C7396EA> /Library/Application Support/iLifeMediaBrowser/*/iLMBiMoviePlugin
    0x75fe000 -  0x7611ff7  com.apple.iLMBiPhoto8Plugin (2.6.4 - 288.4.6) <F14BF337-D4DA-356C-82EE-2BBD6ABE138D> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhoto8Plugin
    0x7619000 -  0x7772ff9  com.apple.iLMBiPhoto9Plugin (2.6.4 - 288.4.6) <55261E40-5CB1-360D-920C-ED95258C46E6> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhoto9Plugin
    0x77ba000 -  0x77c2ff2  com.apple.iLMBiPhotoPlugin (2.6.4 - 288.4.6) <668E3D87-6E61-3596-B875-327501C31889> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhotoPlugin
    0x77c9000 -  0x796effd  com.apple.iLMBiPhotoPlugin2012 (2.6.4 - 288.4.6) <66709B75-6C03-3AAC-8CB3-0BA57AB7B32D> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhotoPlugin2012
    0x79c9000 -  0x79d1ff2  com.apple.iLMBiTunesPlugin (2.6.4 - 288.4.6) <3BC0F592-8A14-3738-B959-10E108BAB976> /Library/Application Support/iLifeMediaBrowser/*/iLMBiTunesPlugin
    0x79d8000 -  0x7a87ffb  com.apple.iTunesAccess (11.0.1 - 11.0.1) <6E9ECDC0-2344-36A0-BFCB-554E88F8F177> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x7ab2000 -  0x7ab3ff7  com.apple.iLMBMoviesFolderPlugin (2.6.4 - 288.4.6) <990BAADB-8895-3F53-8041-7C6663714235> /Library/Application Support/iLifeMediaBrowser/*/iLMBMoviesFolderPlugin
    0x7ab9000 -  0x7abbff7  com.apple.iLMBPhotoBooth2Plugin (2.6.4 - 288.4.6) <C906DB2A-CAD2-3C96-8A11-EA843B9ADB2A> /Library/Application Support/iLifeMediaBrowser/*/iLMBPhotoBooth2Plugin
    0x7ac0000 -  0x7ac1ff6  com.apple.iLMBPhotoBoothPlugin (2.6.4 - 288.4.6) <AA072C1D-BDA8-3DA2-9C62-288520683D56> /Library/Application Support/iLifeMediaBrowser/*/iLMBPhotoBoothPlugin
    0x88f7000 -  0x88fbffb  com.apple.audio.AudioIPCPlugIn (1.2.3 - 1.2.3) <D4092467-5BBE-3ED6-A493-7DB1EE8E6686> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x8900000 -  0x8905fff  com.apple.audio.AppleHDAHALPlugIn (2.2.5 - 2.2.5a5) <BAD1E0E6-10E6-342C-BEB8-B1706F0CE2CF> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x9140000 -  0x9140ff7 +cl_kernels (??? - ???) <1A318CF9-6861-4F67-9B2C-05E1E7B247B8> cl_kernels
    0x9142000 -  0x91eaff7  unorm8_bgra.dylib (2.0.19 - compatibility 1.0.0) <99A967D2-5577-396B-BD11-56EAFF962AB2> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0x9200000 -  0x9201ffd +cl_kernels (??? - ???) <A29448A4-A0F2-4ECD-B8FA-A0A1CC5764E4> cl_kernels
    0x93cf000 -  0x93f0fe7  com.apple.AppleIntermediateCodec (2.0 - 542.4) <1999D33E-4FF4-3282-B357-D68A30427FB7> /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x93ff000 -  0x9406ffe  com.apple.AppleGVAHW.component (1.1 - 1) <0C8846FD-355D-37C9-96D3-42C8BC591073> /System/Library/QuickTime/AppleGVAHW.component/Contents/MacOS/AppleGVAHW
    0x9433000 -  0x9440ff7 +net.telestream.license (1.0.8.2-GC - 1.0.8.2-GC) <1323CE63-89A3-968F-F3D6-DE830D9C720B> /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense
    0x9449000 -  0x944effb  com.apple.AppleMPEG2Codec (1.0.2 - 220.1) <A9023E7A-7A60-3EB9-9AB1-AAFC8C87B2C1> /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0x9593000 -  0x95abff2  com.apple.applepixletvideo (1.2.30 - 1.2d30) <72A0B4BD-DB7A-3C7F-ADB9-6D059F7ABA2B> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x9764000 -  0x97faffa  com.apple.mobiledevice (555.40 - 555.40) <40C9AB96-15C5-3D69-BA35-A73BB9380856> /System/Library/PrivateFrameworks/MobileDevice.framework/MobileDevice
    0x9a77000 -  0x9c6cff2 +net.telestream.wmv.import (2.4.1.4 - 2.4.1.4) <72CC344A-FDF2-6ABD-1906-8169D0377295> /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x9ca1000 -  0x9d4eff7  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <7B6DB792-C9E5-3772-8734-8D0052757B8C> /usr/lib/libcrypto.0.9.7.dylib
    0x9def000 -  0x9fb1ff2 +net.telestream.wmv.advanced (2.4.1.4 - 2.4.1.4) <669FFFED-A768-B9CB-082D-ED1BCE1A86EB> /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0x9ff5000 -  0xa05bfff  com.apple.AppleProResDecoder (3.0 - 542.6) <262D3868-74C4-38E6-8448-3BEB84721650> /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/AppleProR esDecoder
    0xa0ff000 -  0xa13eff7  com.apple.AppleVAH264HW.component (3.0 - 3.0) <FCD9379D-F303-3600-BF2C-A09BC8C8C87B> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW
    0xa201000 -  0xa347fe7  com.apple.AppleGVAFramework (3.1.9 - 3.1.9) <79ADC1B2-7DB2-3071-B2C5-7F46D8C1A29F> /System/Library/PrivateFrameworks/AppleGVA.framework/Versions/A/AppleGVA
    0xa363000 -  0xa39cff3  com.apple.QuickTimeFireWireDV.component (7.7.1 - 2339) <E1BA3A31-33E0-3E1B-A064-BA92C5A6A4EF> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0xa887000 -  0xa887ff1 +cl_kernels (??? - ???) <9A923291-B39E-436F-A64C-74B90C3DDA09> cl_kernels
    0xaadb000 -  0xab80ff7  unorm8_rgba.dylib (2.0.19 - compatibility 1.0.0) <58EF82E1-2227-38BD-B298-47BC1D149789> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgba.dylib
    0xab92000 -  0xabeeff3  com.apple.proapps.MIO (1.0.6 - 511) <BABE1BBA-6E4E-391F-A173-EAFF2ACCEEB6> /Applications/iMovie.app/Contents/Frameworks/MIO.framework/Versions/A/MIO
    0xac26000 -  0xac60ff7  com.apple.CoreMediaIOServicesPrivate (52.0 - 3311) <D88F358F-5971-3D0F-996F-B384501DA11E> /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0xac7b000 -  0xaca2ff7  com.apple.CoreMediaPrivate (20.0 - 20.0) <60E70C01-09F2-3096-B361-83FD4D27BF86> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0xacb5000 -  0xacffffb  com.apple.CoreMediaIOServices (151.0 - 3232) <AE0FAE4D-CF41-3345-9930-9B0CD92141F6> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0xad3d000 -  0xad4cff7  com.apple.MP4RADPlugin (1.1 - 512) <9B08D2D8-A010-30F1-844D-8DF7BFB0A674> /Applications/iMovie.app/Contents/RADPlugins/MP4.RADPlug/Contents/MacOS/MP4
    0xad57000 -  0xaff2fe3  com.apple.MPEG2PSRADPlugin (1.2 - 512) <14CFF7E9-255F-337B-B87E-997B04C00228> /Applications/iMovie.app/Contents/RADPlugins/MPEG2PS.RADPlug/Contents/MacOS/MPE G2PS
    0xb415000 -  0xba9cfff  com.apple.AVCHDPlugin (1.0.5 - 423) <2A90888E-8C25-341F-8099-EF13F627CC2A> /Applications/iMovie.app/Contents/RADPlugins/AVCHD.RADPlug/Contents/MacOS/AVCHD
    0xbcbf000 -  0xbd11ff3  com.apple.AppleVADriver (5.0.16 - 5.0.16) <7BACF806-EECA-3D59-9E1B-39C55D2F0FA2> /System/Library/Extensions/AppleVADriver.bundle/Contents/MacOS/AppleVADriver
    0xbd52000 -  0xbd57ff7  com.apple.iokit.SCSITaskLib (3.2.1 - 3.2.1) <F28998F7-998E-3C52-BECB-165084686E8C> /System/Library/Extensions/IOSCSIArchitectureModelFamily.kext/Contents/PlugIns/ SCSITaskUserClient.kext/Contents/PlugIns/SCSITaskLib.plugin/Contents/MacOS/SCSIT askLib
    0xbd61000 -  0xbd8affb  com.apple.cmio.DAL.VDC_4 (216.0 - 3199.8) <1C09E3FC-F72B-39EC-89E2-55B8441F5C18> /System/Library/Frameworks/CoreMediaIO.framework/Resources/VDC.plugin/Contents/ MacOS/VDC
    0xbd94000 -  0xbd97ffa  com.apple.ATIRadeonX3000GA (7.32.12 - 7.3.2) <74178AB2-617A-3E7B-BCD6-E496F9D654CF> /System/Library/Extensions/ATIRadeonX3000GA.plugin/Contents/MacOS/ATIRadeonX300 0GA
    0xbdc7000 -  0xbe27ff7  com.apple.CMIOQTUnits (216.0 - 3199.8) <C32DF8A6-8EEF-3199-9364-69FF9FEAD119> /System/Library/Frameworks/CoreMediaIO.framework/Resources/QuickTimeUnits/CMIOQ TUnits.bundle/Contents/MacOS/CMIOQTUnits
    0xbe37000 -  0xbe67ff7  com.apple.FWAVC (201.47 - 47) <4C309BA5-820C-3C83-BA9F-ECDF9B0003E6> /System/Library/PrivateFrameworks/FWAVC.framework/Versions/A/FWAVC
    0xbe7b000 -  0xbe85fff  com.apple.IOFWDVComponents (2.0.7 - 2.0.7) <C4851ECD-38AF-3974-8321-0342C89DE691> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0xbe90000 -  0xbeb8ff3  com.apple.QuickTimeIIDCDigitizer (7.7.1 - 2339) <BBB3F816-442B-3BAB-854B-31E98E9063AD> /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0xbec0000 -  0xbf13ffb  com.apple.QuickTimeUSBVDCDigitizer (2.7.6 - 2.7.6) <46CA66E1-57E9-37F7-9E10-B0FC901E13A0> /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0xbf1d000 -  0xbf46ffb  com.apple.mio.DAL.VDC_4 (151.0 - 3232) <A5E2338B-EEF5-37AF-89D8-9A42408278DA> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/VDC.p lugin/Contents/MacOS/VDC
    0x70000000 - 0x70141fff  com.apple.audio.units.Components (1.7.3 - 1.7.3) <288826E4-A704-3FDB-8DF6-AFD50A73142B> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe2c000 - 0x8fe5eaa7  dyld (195.6 - ???) <3A866A34-4CDD-35A4-B26E-F145B05F3644> /usr/lib/dyld
    0x90005000 - 0x900edfff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <1841196F-68B5-309F-8ED1-6714B1DFEC83> /usr/lib/libxml2.2.dylib
    0x900ee000 - 0x901beffb  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <2092785C-795A-3CDF-A1B4-6C80BA3726DD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x901bf000 - 0x90321ffb  com.apple.QuartzCore (1.7 - 270.5) <6D0EC7FC-11E5-35FB-A08A-3B438E89FBDB> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x90363000 - 0x903c5ffb  com.apple.datadetectorscore (3.0 - 179.4) <3A418498-C189-37A1-9B86-F0ECB33AD91C> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x903d9000 - 0x903f5ff5  com.apple.GenerationalStorage (1.0 - 126.1) <E622F823-7D98-3D13-9C3D-7EA482567394> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x903f6000 - 0x9043afff  com.apple.MediaKit (12 - 602) <6E429DD7-8829-37DE-94AF-940FB70F2FB9> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x9043b000 - 0x9049ffff  com.apple.framework.IOKit (2.0 - ???) <94827954-5906-36C4-819B-24CDAFD85C72> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x904c8000 - 0x904ccfff  com.apple.CommonPanels (1.2.5 - 94) <EA47550D-7DAF-30D9-91DB-1FB594CC8522> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x904cd000 - 0x90548ffb  com.apple.ApplicationServices.ATS (317.12.0 - ???) <4D124B65-3D43-32E9-B296-3671347BB888> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90549000 - 0x906acfff  com.apple.QTKit (7.7.1 - 2339) <163FBDDD-0458-378F-84DD-CB0F603A259E> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x90706000 - 0x9070cfff  libGFXShared.dylib (??? - ???) <9C9834EB-B794-38C8-9B90-31D8CB234F86> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x9071a000 - 0x909e9ffb  com.apple.security (7.0 - 55148.6) <8DF67BDD-C98F-3B7E-AC63-D468407FA82D> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x909ea000 - 0x909f4ffe  com.apple.NSServerNotificationCenter (4.1 - 4.1) <A70B231A-6680-353B-8C96-AAA17F74EFC5> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x909f5000 - 0x90a13ff7  libsystem_kernel.dylib (1699.32.7 - compatibility 1.0.0) <79179F83-457A-3539-A76B-E960D2108109> /usr/lib/system/libsystem_kernel.dylib
    0x90a14000 - 0x90a88fff  com.apple.CoreSymbolication (2.2 - 73.2) <FA9305CA-FB9B-3646-8C41-FF8DF15AB2C1> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x90b06000 - 0x90b11ff3  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <D6E17FD4-ECA0-3EEE-BFC5-F6A42A21AB5D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x90b12000 - 0x90b5efff  com.apple.ExchangeWebServices (2.2 - 127) <BBDE2E97-8DD2-3EBC-9D59-ED422ECCBB8F> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
    0x90b60000 - 0x90b66ffb  com.apple.print.framework.Print (7.4 - 247.3) <CB075EEE-FA1F-345C-A1B5-1AB266FC73A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x90b73000 - 0x9104fff6  libBLAS.dylib (??? - ???) <134ABFC6-F29E-3DC5-8E57-E13CB6EF7B41> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x91050000 - 0x91065fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <92AADDB0-BADF-3B00-8941-B8390EDC931B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91066000 - 0x91148fff  com.apple.backup.framework (1.3.5 - 1.3.5) <1FAE91F2-BCEF-387D-B5C4-412C464DA1BE> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x91149000 - 0x9118cffd  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <6B35F203-5D72-335A-A4BC-CC89FEC0E14F> /usr/lib/system/libcommonCrypto.dylib
    0x9119e000 - 0x911aefff  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <D6F728DA-990A-32A3-86FA-4A3F4D88E309> /usr/lib/libsasl2.2.dylib
    0x911af000 - 0x91211ff3  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <266CE9B3-526A-3C41-BA58-7AE66A3B15FD> /usr/lib/libstdc++.6.dylib
    0x91212000 - 0x91323ff7  libJP2.dylib (??? - ???) <2B5EB147-F845-30DF-87C4-D2D3C3D0680A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91324000 - 0x91376ff7  libFontRegistry.dylib (??? - ???) <C2B84661-A62D-3FFF-8D8C-BC697E9BDF4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x91377000 - 0x9137aff7  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <7F6C14CC-0169-3F1B-B89C-372F67F1F3B5> /usr/lib/system/libcompiler_rt.dylib
    0x9137c000 - 0x91598ff7  com.apple.imageKit (2.1.2 - 1.0) <71FC9A62-4E07-307C-8E6B-4DE7661DC0A3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x91599000 - 0x9159afff  liblangid.dylib (??? - ???) <C8C204E9-1785-3785-BBD7-22D59493B98B> /usr/lib/liblangid.dylib
    0x915e0000 - 0x915ebffc  com.apple.NetAuth (3.1 - 3.1) <CD89526E-4FF6-3BB3-A94E-832D4504AB1C> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x915ec000 - 0x9170afec  com.apple.vImage (5.1 - 5.1) <7757F253-B281-3612-89D4-F2B04061CBE1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9171b000 - 0x91741ffb  com.apple.quartzfilters (1.7.0 - 1.7.0) <64AB163E-7E91-3028-8730-BE11BC1F5237> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x91808000 - 0x9180fff8  libCGXCoreImage.A.dylib (600.0.0 - compatibility 64.0.0) <4F9DD9D1-F251-3661-A3C6-B1F550B084B0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x91906000 - 0x91985ff7  com.apple.iLifeMediaBrowser (2.6.4 - 502.4.5) <5C10CC72-586E-3497-9873-A0ACFB6156C3> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x91993000 - 0x91a49ff3  com.apple.QuickTimeMPEG4.component (7.7.1 - 2339) <58956AB8-6C17-3E93-B8E5-5393B2A31C5B> /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x91b82000 - 0x91b8aff3  liblaunch.dylib (392.39.0 - compatibility 1.0.0) <9E6135FF-C2B1-3BC9-A160-B32D71BFA77C> /usr/lib/system/liblaunch.dylib
    0x91b8b000 - 0x91bb9fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <30189C33-6ADD-3142-83F3-6114B1FC152E> /usr/lib/libSystem.B.dylib
    0x91bba000 - 0x91bbaffe  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <7F0E8EE2-9E8F-366F-9988-E2F119DB9A82> /usr/lib/system/libkeymgr.dylib
    0x91bbb000 - 0x91bc1ffd  com.apple.CommerceCore (1.0 - 17) <E59CD307-58E2-35FD-9131-B38978799910> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x91f37000 - 0x91f39ffb  libRadiance.dylib (??? - ???) <4721057E-5A1F-3083-911B-200ED1CE7678> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91f3a000 - 0x91f8bff9  com.apple.ScalableUserInterface (1.0 - 1) <3C39DF4D-5CAE-373A-BE08-8CD16E514337> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x91f8c000 - 0x91f9aff7  libxar-nossl.dylib (??? - ???) <5BF4DA8E-C319-354A-967E-A0C725DC8BA3> /usr/lib/libxar-nossl.dylib
    0x92890000 - 0x92b3dfff  com.apple.JavaScriptCore (7534.57 - 7534.57.3) <5AE5C3B8-D807-356B-80D9-4D0A706A10D1> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x92b3e000 - 0x92b45ffd  com.apple.NetFS (4.0 - 4.0) <AE731CFE-1B2E-3E46-8759-843F5FB8C24F> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x92b46000 - 0x931d2ff5  com.apple.CoreAUC (6.16.12 - 6.16.12) <9D51400F

  • Everytime i go to watch a video on youtube, weather it be the mobile site, desktop version or the app, it always says 'video unavailable on this device' this only started happening in the last few weeks! Can someone help???

    Everytime i go to watch a video on youtube, weather it be the mobile site, desktop version or the app, it always says 'video unavailable on this device' this only started happening in the last few weeks! Can someone help???

    Most YouTube content requires the Flash plugin. Sometimes it's necessary to uninstall then reinstall that plugin.
    Uninstall the Flash plugin then reinstall new >  Troubleshoot Flash Player | Mac OS
    Very important to uninstall the currently installed plugin first.
    Now launch Safari and try a video.
    If you have the ClickToFlash extension installed, that can prevent Flash based video from streaming. It can also be installed as a plugin in /Library/Internet-Plug-Ins.
    And check to see if Safari is running in 32 bit mode. Right or control click the Safari icon in your Applications folder then click Get Info. If the box next to:  Open in 32 bit mode  is selected, deselect, quit then relaunch Safari.
    You may also need to delete the cache associated with Safari .
    Open the Finder. From the Finder menu bar click Go > Go to Folder
    Type or copy/paste:   ~/Library/Caches/com.apple.Safari
    Click Go the move the Cache.db file from the com.apple.Safari folder to the Trash.
    Quit and relaunch Safari. Try a video.

  • Video signaling problem caused by 1.9, 2.0 BIOS (pointing out a BIOS problem)

    Hi, i have a problem with the video signal. At random times when i boot up my computer, the computer would power up but there is no signal to the monitor. there is no hdd activity (via the hdd led) and nothing seems to be happening just that the fans are whirring. i have to unplug the computer then plug it again then turn it up again which sometimes repeats the problem. This is very irritating! So i did a little bit of troubleshooting:
    1. I changed video cards. I used a SAPPHIRE ati radeon 9600XT fireblade and a LEADTEK GF4 ti4200. Both cards were causing the same problem and when i used both cards to another computer, there is no problem. = NOT A video card problem
    2. used differnt kinds of drivers Cat 3.10, 4.10, 4.20 (omega and official) does not seem to do anything (which also i believe the drivers are OS dependent and its the bios of the vid card that starts up the vid card)
    3. upgraded from 1.9 to 2.0 BIOS. still the same problem
    4. reverted from 2.0 to 1.7 BIOS. the problem ended.
    BTW, the board is 865PE-Neo2 - S. on a Intel 2.6Ghz C, 512MB TwinMos ram with m-tec chips, 80gb hdd, enermax 300w psu
    so ive' solved the problem, and i just wanted to point out that there is a problem with 1.9, 2.0 BIOS. (havnt tried the 1.8 tho)

    Wish I had seen this thread 2 weeks ago, but you did save me from buying a new graphics card.  That was the last step (before chucking this mobo completely) in my attempts to fix the same problem.  It didn't bother me too much, except I also couldn't get any DVD player (tried 3) to work.  Would boot sometimes and at others gave a blue screen video error.
    Flashing to bios 1.7 was the only thing that fixed it.  Tried different memory, updating software, various combinations of drives, etc.  For the record I tried bios 1.8, 1.9, 2.0, and 2.1.  Not sure what about those updates causes problems but there definitely is something wrong.
    Thanks.

  • Ipod touch 4g battery only lasts 1-2 hour

    My ipod touch battery only lasts 1-2 hours, and even when the brightness is at the lowest, +/- 2 hours. This page says the battery life is 7 hours when listening to music and 4 hours when watching videos. Is this my fault or is my battery not doing good? I'm not listening to music or playing videos, i'm just browsing on the web, browsing in the app store and playing games (sound turned off). What can i do about this? Should I contact Apple? Thanks, nelson2tm.
    Ipod Touch 4G 8GB, for specifications click here.

    http://www.overthought.org/blog/2014/the-ultimate-guide-to-solving-ios-battery-d rain
    Then
    Try:
    - Reset the iOS device. Nothing will be lost      
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup. See:                                               
    iOS: Back up and restore your iOS device with iCloud or iTunes
    - Restore to factory settings/new iOS device.                       
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem. Seems like the battery is wearin gout
      Apple Retail Store - Genius Bar                                                              
    If only the battery
    Apple will exchange your iPod for a refurbished one for $79 They do not fix yours.
    Apple - iPod Repair price                                    
    A third-party place like the following will replace your battery for less. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens         
    Replace the battery yourself if you are up to it. A replacement battery costs about $15
    iPod Touch Repair – iFixit                  

Maybe you are looking for

  • How to backup external USB drive to Time Capsule

    I have a USB drive I have connected to the Time Capsule which I use to store my itunes and iphoto libraries. Is there a way to get this disk to be backed up using Time Machine to the Time Capsule? I also have an Airport Express but I don't believe it

  • How to show the break totals and NOT the report totals in an SQL report

    APEX 4.0.1 In an normal SQL report (Not interactive) with a break applied on the first column, how do you just show the break totals and NOT the extra full report totals? Next, Is it possible to display only some of the row totals and not for all col

  • Shared Variable: Server Failure

    I'm binding Labview 8.2 Shared Variables to Fieldpoint channels, using OPCFieldPoint Server. The OPC Server works properly, i can connect to it using Server Explorer 2.4.1 and see all the channels (though i had to do a repair installation of Fieldpoi

  • Trouble printing Touchsmart Notes

    Is there any way to set printer options in the Touchsmart software?  I have been attempting to print Touchsmart notes ... I touch "print" and there are no options ... goes direct to printing in an "A4" format.  I want it to print 8.5x11 letter, but I

  • Leopard and Power PC

    If I have a power pc g5 tower and looking to buy leopard...how do i go about buying the cd version of it? Is it possible to do it online? And then can i get the intel version as well without paying for the OS twice, or do i have to? Thank you to whoe