Very strange behaviour (Image Squished) every time I export

I have a strange issue happening.
On one of my mobile pages if I export my HTML the image appears squished. However if I make any adjustment to the image in Muse prior to exporting. i.e./  Shift its X or Y property, etc and then export again .. it appears correctly. If I then export again without touching it .. its back to being squished again. It's really annoying and tedious right now that every time I export HTML for my site I have to go to the mobile layout and make an adjustment to that single image to ensure it's not going to be squished.
Any ideas ?

This is driving e nuts.. I have to manually do this every time I export my HTML. .. why is this happening ?  Why only with 1 image too ?

Similar Messages

  • Very strange behaviour of RGBImageFilter class

    Hi!
    I found very strange behaviour of RGBImageFilter class and problem is
    that I need to solve that problem :/ So, situation is next:
    I decided to use filtering process for collecting information about
    image. So, I extended my own class from RGBImageFilter and overwrite
    filterRGB( ... ) method ( everything is absolutely the same as in
    documentation ) and also added my own code for 'no matter what'.
    This code changes some class variable and my idea was to read those
    variables after filtering process end, but... Suddenly I realized that
    those variables, many times changed while filtering were performed
    ( I checked it ) after filtering gave the same value as in constructor!
    The only one clue and idea about what happened is that class instance
    were cloned and then executed, but thats not a functionality I was
    searching. :/ I made some example of that 'effect'.
    Image file name goes in command line.
    Please pay attention on -3 value on exit: Filtering works, count growing
    ( just uncomment setPixels() method to see it ) but, but...
    import java.awt.*;
    import java.awt.image.*;
    import javax.swing.*;
    class ToForum
         public static void main( String[] args )
              try
                   JFrame frame = new JFrame( "now i beleave in x-files!" );
                   frame.setDefaultCloseOperation( frame.DISPOSE_ON_CLOSE );
                   Toolkit kit = Toolkit.getDefaultToolkit();
                   Image origin = kit.getImage( args[0] );
                   RedBlueSwapFilter filter = new RedBlueSwapFilter();
                   Image filtered = frame.createImage( new FilteredImageSource( origin.getSource(), filter ) );
                   MediaTracker tracker = new MediaTracker( frame );
                   tracker.addImage( filtered, 1 );
                   tracker.waitForAll();
                   System.out.println( "AND WE GOT: "+filter.getCount()+" !!!" );
                   Container content = frame.getContentPane();
                   content.setLayout( new FlowLayout() );
                   JLabel label = new JLabel( new ImageIcon( filtered ) );
                   content.add( label );
                   frame.pack();
                   frame.setVisible( true );
              catch( Exception ex )
                   System.out.println( "Exception in main():\n"+ex );
    class RedBlueSwapFilter extends RGBImageFilter
         private int count=-5;
         public RedBlueSwapFilter()
              count = -3;
              canFilterIndexColorModel = true;
         // uncommenting this function will show that filterRGB method IS calling !!!
         // so, why then AFTER filtering count is still ( or again ??? ) equals to 0 ?
         public void setPixels( int x, int y, int w, int h, ColorModel model, int pixels[], int off, int scansize )
              System.out.println( "on entering in setPixels count="+count );
              super.setPixels( x, y, w, h, model, pixels, off, scansize );
              System.out.println( "on exiting from setPixels count="+count );
         public int filterRGB( int x, int y, int rgb )
              count++;
              return ( (rgb&0xff00ff00) | ((rgb&0xff0000) >> 16) | ((rgb&0xff) << 16) );
         public int getCount()
              return count;

    Cliff, Hi. I'm curious because this can't work. I have no problem synching with the exchange - as long as i accept the message that the certificate of the exchange (which is not the certificate of the exchange but the certificate of dig @reighthandsideofmailadress) is not valid (expired, wrong common name etc).

  • Populate List from Database (Very Strange Behaviour)

    Dear Fellows,
    I have developed a from which has two lists One for Major (say) and Other for Minor (say), thesr minors are based on the value of Major.
    Now I have developed this system on Windows XP Professional, Developer/2000 6i and Oracle 8i (release 8.1.7).
    Major list is populated from database and it shows all major values now using 'when_list_change' trigger the minor list is populated from the database based on the value of major list. Interestingly enough it is working fine without any problem.
    Now I have deployed the software to Windows 2000 Professional/Server (tried on both), Developer/2000 6i and Oracle 8.0.5, but strangly the lists are not working now. First list (major) is still working but the other dependent lists are not working.
    Another strange thing is that it populate the second list for one particular value (only at times).
    The logic is that I have used a program unit to which i am passing 'list element' and 'query' and call it for each list in the when-list-change trigge.
    Now its a very strange behaviour, I don't know what to do?
    Your cooperation will be highly appreciated.
    regards.

    rolrollerx wrote:
    Hi,
    I have Nokia N8 (a great phone, btw) with Symbian Anna. I wanted to download the maps. But the PC Ovi Suite is just busy forever, without downloading anything (I used Performance Monitor to find out it was doing nothing for hours).
    As I have unlimited data plan from my phone, I decided to try updating directly from the phone instead. It successfully downloaded the list of maps, but when I selected one of them
    "No Wi-Fi network available. Please configure a WiFi access point in the phone Internet destination settings."
    Why should I do that? I have a working connection on that phone (as evidenced by the successful download of the list of maps). So now, I am stuck. How can I download the maps?
    Well, the suggestion is there. Use a router.
    ‡Thank you for hitting the Blue/Green Star button‡
    N8-00 RM 596 V:111.030.0609; E71-1(05) RM 346 V: 500.21.009

  • Very strange behaviour master-detail-detail please help

    Very strange behaviour master-detail-detail please help
    Hello,
    I have a parent-child-grandchild report which show's some really strange behaviour.
    The data template has 3 queries Q1, Q2 and Q3.
    Q2 is bound to Q1 using a bind variable
    Q3 is bound to Q2 using another bind variable
    For a certain record in Q1 the output should be
    2 records in Q2
    and 1 record in Q3 for each record in Q2
    Q1 record
    Q2 record A
    Q3 record AA
    Q2 record B
    Q3 record BC
    The results conforms to the expected output.
    For another record in Q1 the output should be
    2 records in Q2
    and 2 records in Q3 for each record in Q2
    Q1 record
    Q2 record A
    Q3 record AA
    Q3 record AB
    Q2 record B
    Q3 record BC
    Q3 record BD
    In stead of the expected output, the result shows
    Q1 record
    Q2 record A
    Q3 record AA
    Q3 record AB
    Q2 record B
    Q3 record AB
    For another record in Q1 the output should be
    5 records in Q2
    and 2 records in Q3 for each record in Q2
    Q1 record
    Q2 record A
    Q3 record AA
    Q3 record AB
    Q2 record B
    Q3 record BC
    Q3 record BD
    Q2 record C
    Q3 record CE
    Q3 record CF
    Q2 record D
    Q3 record DG
    Q3 record DH
    Q2 record E
    Q3 record EI
    Q3 record EJ
    In stead of the expected output, the result shows
    Q1 record
    Q2 record A
    Q3 record AA
    Q3 record AB
    Q2 record B
    Q3 record BC
    Q3 record BD
    Q2 record C
    Q3 record CE
    Q3 record CF
    Q2 record D
    Q3 record DG
    Q3 record DH
    Q2 record E
    Q3 record DH
    So for the last record of Q2 I don't get the appropriate records from Q3 when there are multiple records to be shown, but only the last record which belongs to the previous Q2
    What is going on?
    Please help me out...
    Kind regards,
    Jan-Marcel

    Hi Tim,
    Thanks for your reply. Below you will find the datatemplate on the scott/tiger schema.
    Please help me out.
    Kind regards,
    Jan-Marcel
    <dataTemplate name="scott" description="Template scott" dataSourceRef="otcy001" version="1.1">
      <parameters>
        <parameter name="p_deptno" dataType="number"/>
      </parameters>
      <dataQuery>
        <sqlStatement name="Q1">
          <![CDATA[
            select empno            mgr_empno
                 , ename            mgr_name
                 , job              mgr_job
                 , hiredate         mgr_hiredate
                 , sal              mgr_sal
                 , comm             mgr_comm
              from emp
             where deptno = nvl(:p_deptno, deptno)
               and mgr is null
          ]]>
        </sqlStatement>
        <sqlStatement name="Q2">
          <![CDATA[
            select empno            mgr2_empno
                 , ename            mgr2_name
                 , job              mgr2_job
                 , hiredate         mgr2_hiredate
                 , sal              mgr2_sal
                 , comm             mgr2_comm
                 , mgr              mgr2_mgr
              from emp
             where mgr = :mgr_empno
          ]]>
        </sqlStatement>
        <sqlStatement name="Q3">
          <![CDATA[
            select empno            emp_no
                 , ename            emp_name
                 , job              emp_job
                 , hiredate         emp_hiredate
                 , sal              emp_sal
                 , comm             emp_comm
                 , mgr              emp_mgr
              from emp
             where mgr = :mgr2_empno
          ]]>
        </sqlStatement>
      </dataQuery>
      <dataStructure>
        <group name="G_mgr1" source="Q1">
          <element name="q1_mgr_empno"    value="mgr_empno"/>
          <element name="q1_mgr_name"     value="mgr_name"/>
          <element name="q1_mgr_job"      value="mgr_job"/>
          <element name="q1_mgr_hiredate" value="mgr_hiredate"/>
          <element name="q1_mgr_sal"      value="mgr_sal"/>
          <element name="q1_mgr_comm"     value="mgr_comm"/>
          <group name="G_mgr2" source="Q2">
            <element name="q2_mgr_empno"    value="mgr2_empno"/>
            <element name="q2_mgr_name"     value="mgr2_name"/>
            <element name="q2_mgr_job"      value="mgr2_job"/>
            <element name="q2_mgr_hiredate" value="mgr2_hiredate"/>
            <element name="q2_mgr_sal"      value="mgr2_sal"/>
            <element name="q2_mgr_comm"     value="mgr2_comm"/>
            <element name="q2_mgr2_mgr"     value="mgr2_mgr"/>
            <group name="G_emp" source="Q3">
              <element name="q3_emp_empno"    value="emp_empno"/>
              <element name="q3_emp_name"     value="emp_name"/>
              <element name="q3_emp_job"      value="emp_job"/>
              <element name="q3_emp_hiredate" value="emp_hiredate"/>
              <element name="q3_emp_sal"      value="emp_sal"/>
              <element name="q3_emp_comm"     value="emp_comm"/>
              <element name="q3_emp_mgr"      value="emp_mgr"/>
            </group>
          </group>
        </group>
      </dataStructure>
    </dataTemplate>

  • FOR i IN (statement) LOOP - very strange behaviour

    Hello, I'm experiencing very strange behaviour in my 9i Development Environment:
    If I run this select from SQL Plus a I get six month with number of days:
    select to_char(add_months(trunc(sysdate,'month'),rownum-1),'Month-YYYY') tmp_date, add_months(trunc(sysdate,'month'),rownum)-add_months(trunc(sysdate,'month'),rownum-1) colspan from dual a connect by level <=6
    But if I try to cycle through it in PL/SQL I only get the first row.
    FOR i in (
    select to_char(add_months(trunc(sysdate,'month'),rownum-1),'Month-YYYY') tmp_date, add_months(trunc(sysdate,'month'),rownum)-add_months(trunc(sysdate,'month'),rownum-1) colspan
    from dual a
    connect by level <=6 )
    loop
    -- print something out
    end loop;
    Any ideas why does this happen this way? If I use a query that does not contain CONNECT BY it works ok.

    Hi
    Just change as given below:
    FOR i in (
    select * from (select to_char(add_months(trunc(sysdate,'month'),rownum-1),'Month-YYYY') tmp_date, add_months(trunc(sysdate,'month'),rownum)-add_months(trunc(sysdate,'month'),rownum-1) colspan
    from dual a
    connect by level <=6 ))
    loop
    -- print something out
    end loop;
    Regards
    RK

  • IMovie 09 crashes every time i export. Have posted crash log.

    Every time i export my iMovie project it always crashes. Seems to be a problem with Thread 1 which I have no idea what that is. I tried exporting into DV, MOV and MP4 but anything i do seems to make no difference. Here is crash log:
    Process: iMovie [292]
    Path: /Applications/iMovie.app/Contents/MacOS/iMovie
    Identifier: com.apple.iMovie8
    Version: 8.0.1 (740)
    Build Info: iMovieApp-7400000~3
    Code Type: X86 (Native)
    Parent Process: launchd [58]
    Date/Time: 2009-04-04 18:20:06.380 +1100
    OS Version: Mac OS X 10.5.6 (9G66)
    Report Version: 6
    Exception Type: EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread: 1
    Thread 0:
    0 libobjc.A.dylib 0x958bf6c0 objc_msgSend + 80
    1 com.apple.QuartzComposer 0x9267cda6 -[QCList insertObject:atIndex:forKey:] + 48
    2 com.apple.QuartzComposer 0x926766a0 -[GFList addObject:forKey:] + 55
    3 com.apple.QuartzComposer 0x9267d6dd -[GFNode createOutputPortWithArguments:forKey:] + 562
    4 com.apple.QuartzComposer 0x9267d411 -[QCPatch(Override) createOutputPortWithArguments:forKey:] + 577
    5 com.apple.QuartzComposer 0x9267f8e6 -[QCPatch(Wrappers) createOutputWithPortClass:forKey:attributes:arguments:order:] + 161
    6 com.apple.QuartzComposer 0x9267f83d -[QCPatch(Wrappers) createOutputWithPortClass:forKey:attributes:] + 210
    7 com.apple.QuartzComposer 0x9267efc0 -[QCSplitter setPortClass:] + 503
    8 com.apple.QuartzComposer 0x9267edb9 -[QCSplitter initWithIdentifier:] + 135
    9 com.apple.QuartzComposer 0x92679115 +[GFNode(Private) newWithIdentifier:] + 99
    10 com.apple.QuartzComposer 0x92678fac -[QCNodeManager instantiateNodeWithName:] + 64
    11 com.apple.QuartzComposer 0x92678f49 +[GFNodeManager instantiateNodeWithClassName:identifier:] + 158
    12 com.apple.QuartzComposer 0x9267b196 -[GFGraph(Private) _loadState:] + 741
    13 com.apple.QuartzComposer 0x9267aa24 -[GFGraph setState:] + 846
    14 com.apple.QuartzComposer 0x9267a378 -[QCPatch(Override) setState:] + 306
    15 com.apple.QuartzComposer 0x9267b21b -[GFGraph(Private) _loadState:] + 874
    16 com.apple.QuartzComposer 0x9267aa24 -[GFGraph setState:] + 846
    17 com.apple.QuartzComposer 0x9267a378 -[QCPatch(Override) setState:] + 306
    18 com.apple.QuartzComposer 0x927881a5 _PatchFromComposition + 615
    19 com.apple.QuartzComposer 0x927885f1 QCPatchFromCompositionWithOptions + 847
    20 com.apple.QuartzComposer 0x926744f0 -[QCComposition _makePatch] + 190
    21 com.apple.QuartzComposer 0x926ff053 -[QCRenderer initWithCGLContext:pixelFormat:colorSpace:composition:] + 99
    22 com.apple.iMovie8 0x0005a7f1 0x1000 + 366577
    23 com.apple.iMovie8 0x0005b3d3 0x1000 + 369619
    24 com.apple.iMovie8 0x00053cf8 0x1000 + 339192
    25 com.apple.iMovie8 0x00054b54 0x1000 + 342868
    26 com.apple.iMovie8 0x000609c4 0x1000 + 391620
    27 com.apple.iMovie8 0x000610f8 0x1000 + 393464
    28 ...ickTimeComponents.component 0x93405396 getVideoDataFromDataProc + 161
    29 ...ickTimeComponents.component 0x93409ced NuOutputVideoPass + 835
    30 ...ickTimeComponents.component 0x9340abdb NuOutputVideo + 1195
    31 ...ickTimeComponents.component 0x933f1bce SpitMovieFromProceduresToDataRef + 3177
    32 ...ickTimeComponents.component 0x933eef0d SpitMovieComponentDispatch + 187
    33 ...ple.CoreServices.CarbonCore 0x95bd0a05 CallComponentDispatch + 29
    34 com.apple.QuickTime 0x9618c93a MovieExportFromProceduresToDataRef + 49
    35 com.apple.iMovie8 0x0005fbe3 0x1000 + 388067
    36 com.apple.iMovie8 0x0005f847 0x1000 + 387143
    37 com.apple.iMovie8 0x00156533 0x1000 + 1398067
    38 com.apple.iMovie8 0x0002e879 0x1000 + 186489
    39 com.apple.AppKit 0x94c1553b -[NSApplication sendAction:to:from:] + 112
    40 com.apple.AppKit 0x94cc417c -[NSMenu performActionForItemAtIndex:] + 493
    41 com.apple.AppKit 0x94cc3e81 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 220
    42 com.apple.AppKit 0x94ca0b5a AppKitMenuEventHandler + 6608
    43 com.apple.HIToolbox 0x96229143 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1181
    44 com.apple.HIToolbox 0x9622857d SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 405
    45 com.apple.HIToolbox 0x96244ed2 SendEventToEventTarget + 52
    46 com.apple.HIToolbox 0x9627923d SendHICommandEvent(unsigned long, HICommand const*, unsigned long, unsigned long, unsigned char, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 411
    47 com.apple.HIToolbox 0x9629fa8f SendMenuCommandWithContextAndModifiers + 59
    48 com.apple.HIToolbox 0x9629fa4c SendMenuItemSelectedEvent + 134
    49 com.apple.HIToolbox 0x9629f95e FinishMenuSelection(MenuData*, MenuData*, MenuResult*, MenuResult*, unsigned long, unsigned long, unsigned long, unsigned char) + 162
    50 com.apple.HIToolbox 0x9627c4ec MenuSelectCore(MenuData*, Point, double, unsigned long, OpaqueMenuRef**, unsigned short*) + 640
    51 com.apple.HIToolbox 0x9627bed7 _HandleMenuSelection2 + 383
    52 com.apple.HIToolbox 0x9627bd4b _HandleMenuSelection + 53
    53 com.apple.AppKit 0x94bdd50b _NSHandleCarbonMenuEvent + 244
    54 com.apple.AppKit 0x94b4426a _DPSNextEvent + 1918
    55 com.apple.AppKit 0x94b43630 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    56 com.apple.iMovie8 0x00038908 0x1000 + 227592
    57 com.apple.AppKit 0x94b3c66b -[NSApplication run] + 795
    58 com.apple.AppKit 0x94b098a4 NSApplicationMain + 574
    59 com.apple.iMovie8 0x00003ef9 0x1000 + 12025
    60 com.apple.iMovie8 0x0000335c 0x1000 + 9052
    61 com.apple.iMovie8 0x00003289 0x1000 + 8841
    Thread 1 Crashed:
    0 libSystem.B.dylib 0x957cd136 _semwait_signalnocancel + 10
    1 libSystem.B.dylib 0x957c6013 usleep$NOCANCEL$UNIX2003 + 61
    2 libSystem.B.dylib 0x957dd685 abort + 85
    3 libGLProgrammability.dylib 0x90d24df4 (anonymous namespace)::JITEmitter::finishFunction(llvm::MachineFunction&) + 1172
    4 libGLProgrammability.dylib 0x90d222e6 (anonymous namespace)::Emitter::runOnMachineFunction(llvm::MachineFunction&) + 374
    5 libGLProgrammability.dylib 0x90d014f8 llvm::MachineFunctionPass::runOnFunction(llvm::Function&) + 40
    6 libGLProgrammability.dylib 0x90c16c7c llvm::FPPassManager::runOnFunction(llvm::Function&) + 700
    7 libGLProgrammability.dylib 0x90c165c1 llvm::FunctionPassManagerImpl::run(llvm::Function&) + 97
    8 libGLProgrammability.dylib 0x90c164c5 llvm::FunctionPassManager::run(llvm::Function&) + 85
    9 libGLProgrammability.dylib 0x90c77b5c llvm::JIT::runJITOnFunction(llvm::Function*) + 60
    10 libGLProgrammability.dylib 0x90c778b2 llvm::JIT::getPointerToFunction(llvm::Function*) + 210
    11 libGLProgrammability.dylib 0x90c777bb glvmGenerateModularFunctionPointer + 59
    12 libGLProgrammability.dylib 0x90e5ecd3 glvmBuildVPTransformFunction + 8195
    13 libGLProgrammability.dylib 0x90bfd89c glvmdeferred_buildmodular(void*) + 252
    14 libGLProgrammability.dylib 0x90bfcada glvmDoWork + 74
    15 libSystem.B.dylib 0x95722095 pthreadstart + 321
    16 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x956f11c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x956f89bc mach_msg + 72
    2 com.apple.CoreFoundation 0x96f9e0ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x96f9ed34 CFRunLoopRun + 84
    4 com.apple.QTKit 0x965d0cb1 QTVisualContextImageProviderWorkLoop + 108
    5 libSystem.B.dylib 0x95722095 pthreadstart + 321
    6 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x956f11c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x956f89bc mach_msg + 72
    2 com.apple.CoreFoundation 0x96f9e0ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x96f9ed34 CFRunLoopRun + 84
    4 com.apple.iLifeMediaBrowser 0x910f1ae3 -[ILMediaBrowserPathWatcher(FSEvents) iLMBPathWatcherRunLoop] + 897
    5 com.apple.Foundation 0x921167ed -[NSThread main] + 45
    6 com.apple.Foundation 0x92116394 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x95722095 pthreadstart + 321
    8 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x956f11c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x956f89bc mach_msg + 72
    2 com.apple.CoreFoundation 0x96f9e0ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x96f9ecd8 CFRunLoopRunInMode + 88
    4 com.apple.audio.CoreAudio 0x96b725dc HALRunLoop::OwnThread(void*) + 160
    5 com.apple.audio.CoreAudio 0x96b72464 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x95722095 pthreadstart + 321
    7 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x956f11c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x956f89bc mach_msg + 72
    2 com.apple.CoreFoundation 0x96f9e0ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x96f9ed34 CFRunLoopRun + 84
    4 com.apple.FWAVCPrivate 0x0086d4f7 AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 155
    5 libSystem.B.dylib 0x95722095 pthreadstart + 321
    6 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x956f11c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x956f89bc mach_msg + 72
    2 com.apple.CoreFoundation 0x96f9e0ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x96f9ecd8 CFRunLoopRunInMode + 88
    4 ....CoreMediaIOServicesPrivate 0x93ec9f88 MIO::DAL::RunLoop::OwnThread(void*) + 160
    5 ....CoreMediaIOServicesPrivate 0x93ecc108 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x95722095 pthreadstart + 321
    7 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x956f11c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x956f89bc mach_msg + 72
    2 com.apple.CoreFoundation 0x96f9e0ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x96f9ed34 CFRunLoopRun + 84
    4 com.apple.iMovie8 0x0001c5d2 0x1000 + 112082
    5 com.apple.Foundation 0x921167ed -[NSThread main] + 45
    6 com.apple.Foundation 0x92116394 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x95722095 pthreadstart + 321
    8 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x956f1202 semaphorewaittrap + 10
    1 com.apple.AVCHDPlugin 0x1b1295d8 0x1ac00000 + 5412312
    2 com.apple.AVCHDPlugin 0x1b1a6bf6 0x1ac00000 + 5925878
    3 com.apple.AVCHDPlugin 0x1b129a61 0x1ac00000 + 5413473
    4 libSystem.B.dylib 0x9576d204 pthreadbody + 27
    Thread 9:
    0 libSystem.B.dylib 0x956f120e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x95723206 pthread_condwait + 1267
    2 libSystem.B.dylib 0x95768539 pthreadcondwait + 48
    3 com.apple.AVCHDPlugin 0x1aff7ddf 0x1ac00000 + 4160991
    4 com.apple.AVCHDPlugin 0x1b0252d0 0x1ac00000 + 4346576
    5 com.apple.AVCHDPlugin 0x1aff7a7e 0x1ac00000 + 4160126
    6 com.apple.AVCHDPlugin 0x1b129a61 0x1ac00000 + 5413473
    7 libSystem.B.dylib 0x9576d204 pthreadbody + 27
    Thread 10:
    0 libSystem.B.dylib 0x956f1202 semaphorewaittrap + 10
    1 com.apple.AVCHDPlugin 0x1b1295d8 0x1ac00000 + 5412312
    2 com.apple.AVCHDPlugin 0x1b1a6bf6 0x1ac00000 + 5925878
    3 com.apple.AVCHDPlugin 0x1b12c088 0x1ac00000 + 5423240
    4 com.apple.AVCHDPlugin 0x1b129a61 0x1ac00000 + 5413473
    5 libSystem.B.dylib 0x9576d204 pthreadbody + 27
    Thread 11:
    0 libSystem.B.dylib 0x956f11c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x956f89bc mach_msg + 72
    2 com.apple.CoreFoundation 0x96f9e0ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x96f9ed34 CFRunLoopRun + 84
    4 com.apple.DiscRecording 0x00568e29 DRWorkLoop::WorkLoop() + 271
    5 com.apple.DiscRecording 0x00568d07 DRWorkLoop::WorkLoopEntry(DRWorkLoop*) + 17
    6 com.apple.DiscRecording 0x0056896f DRThreadObject::StartRoutine(DRThreadObject*) + 153
    7 libSystem.B.dylib 0x95722095 pthreadstart + 321
    8 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 12:
    0 libSystem.B.dylib 0x956f1226 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x957231ef pthread_condwait + 1244
    2 libSystem.B.dylib 0x95724a73 pthreadcond_timedwait_relativenp + 47
    3 ...ple.CoreServices.CarbonCore 0x95bc7dd2 TSWaitOnConditionTimedRelative + 246
    4 ...ple.CoreServices.CarbonCore 0x95bc7bb2 TSWaitOnSemaphoreCommon + 422
    5 ...ickTimeComponents.component 0x930a2bee ReadSchedulerThreadEntryPoint + 4724
    6 libSystem.B.dylib 0x95722095 pthreadstart + 321
    7 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 13:
    0 libSystem.B.dylib 0x956f1226 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x957231ef pthread_condwait + 1244
    2 libSystem.B.dylib 0x95724a73 pthreadcond_timedwait_relativenp + 47
    3 ...ple.CoreServices.CarbonCore 0x95bc7dd2 TSWaitOnConditionTimedRelative + 246
    4 ...ple.CoreServices.CarbonCore 0x95bc7bb2 TSWaitOnSemaphoreCommon + 422
    5 ...ple.CoreServices.CarbonCore 0x95bf0220 AIOFileThread(void*) + 1056
    6 libSystem.B.dylib 0x95722095 pthreadstart + 321
    7 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 14:
    0 libSystem.B.dylib 0x956f120e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x95723206 pthread_condwait + 1267
    2 libSystem.B.dylib 0x95768539 pthreadcondwait + 48
    3 ...ickTimeComponents.component 0x9321709f jpegdecompress_MPLoop + 79
    4 libSystem.B.dylib 0x95722095 pthreadstart + 321
    5 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 15:
    0 libSystem.B.dylib 0x956f120e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x95723206 pthread_condwait + 1267
    2 libSystem.B.dylib 0x95768539 pthreadcondwait + 48
    3 ...pple.AppleIntermediateCodec 0x17afe8f8 iCodecDecompressorComponentDispatch + 4014
    4 libSystem.B.dylib 0x95722095 pthreadstart + 321
    5 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 16:
    0 libSystem.B.dylib 0x956f120e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x95723206 pthread_condwait + 1267
    2 libSystem.B.dylib 0x95768539 pthreadcondwait + 48
    3 ...pple.AppleIntermediateCodec 0x17afea96 iCodecDecompressorComponentDispatch + 4428
    4 libSystem.B.dylib 0x95722095 pthreadstart + 321
    5 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 17:
    0 libSystem.B.dylib 0x956f1202 semaphorewaittrap + 10
    1 QuickTimeH264.scalar 0x1e84e8f3 JVTCompEncodeFrame + 2987656
    2 QuickTimeH264.scalar 0x1e84e53f JVTCompEncodeFrame + 2986708
    3 libSystem.B.dylib 0x95722095 pthreadstart + 321
    4 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 18:
    0 libSystem.B.dylib 0x956f1202 semaphorewaittrap + 10
    1 QuickTimeH264.scalar 0x1e84e8f3 JVTCompEncodeFrame + 2987656
    2 QuickTimeH264.scalar 0x1e9100f5 JVTLibDecoDispose + 433495
    3 libSystem.B.dylib 0x95722095 pthreadstart + 321
    4 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 19:
    0 libSystem.B.dylib 0x95721906 kevent + 10
    1 com.apple.Foundation 0x921167ed -[NSThread main] + 45
    2 com.apple.Foundation 0x92116394 _NSThread__main_ + 308
    3 libSystem.B.dylib 0x95722095 pthreadstart + 321
    4 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 20:
    0 libSystem.B.dylib 0x956f83ae _semwaitsignal + 10
    1 libSystem.B.dylib 0x95722d0d pthreadcondwait$UNIX2003 + 73
    2 com.apple.ColorSync 0x9663e45c pthreadSemaphoreWait(t_pthreadSemaphore*) + 42
    3 com.apple.ColorSync 0x96650d8e CMMConvTask(void*) + 54
    4 libSystem.B.dylib 0x95722095 pthreadstart + 321
    5 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 21:
    0 libSystem.B.dylib 0x956f120e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x95723206 pthread_condwait + 1267
    2 libSystem.B.dylib 0x95768539 pthreadcondwait + 48
    3 ...pple.AppleIntermediateCodec 0x17afe8f8 iCodecDecompressorComponentDispatch + 4014
    4 libSystem.B.dylib 0x95722095 pthreadstart + 321
    5 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 22:
    0 libSystem.B.dylib 0x956f120e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x95723206 pthread_condwait + 1267
    2 libSystem.B.dylib 0x95768539 pthreadcondwait + 48
    3 ...pple.AppleIntermediateCodec 0x17afea96 iCodecDecompressorComponentDispatch + 4428
    4 libSystem.B.dylib 0x95722095 pthreadstart + 321
    5 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 23:
    0 libSystem.B.dylib 0x956f120e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x95723206 pthread_condwait + 1267
    2 libSystem.B.dylib 0x95768539 pthreadcondwait + 48
    3 ...pple.AppleIntermediateCodec 0x17afe8f8 iCodecDecompressorComponentDispatch + 4014
    4 libSystem.B.dylib 0x95722095 pthreadstart + 321
    5 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 24:
    0 libSystem.B.dylib 0x956f120e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x95723206 pthread_condwait + 1267
    2 libSystem.B.dylib 0x95768539 pthreadcondwait + 48
    3 ...pple.AppleIntermediateCodec 0x17afea96 iCodecDecompressorComponentDispatch + 4428
    4 libSystem.B.dylib 0x95722095 pthreadstart + 321
    5 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 25:
    0 libSystem.B.dylib 0x956f120e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x95723206 pthread_condwait + 1267
    2 libSystem.B.dylib 0x95768539 pthreadcondwait + 48
    3 ...pple.AppleIntermediateCodec 0x17afe8f8 iCodecDecompressorComponentDispatch + 4014
    4 libSystem.B.dylib 0x95722095 pthreadstart + 321
    5 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 26:
    0 libSystem.B.dylib 0x956f120e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x95723206 pthread_condwait + 1267
    2 libSystem.B.dylib 0x95768539 pthreadcondwait + 48
    3 ...pple.AppleIntermediateCodec 0x17afea96 iCodecDecompressorComponentDispatch + 4428
    4 libSystem.B.dylib 0x95722095 pthreadstart + 321
    5 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 27:
    0 libSystem.B.dylib 0x956f120e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x95723206 pthread_condwait + 1267
    2 libSystem.B.dylib 0x95768539 pthreadcondwait + 48
    3 ...pple.AppleIntermediateCodec 0x17afea96 iCodecDecompressorComponentDispatch + 4428
    4 libSystem.B.dylib 0x95722095 pthreadstart + 321
    5 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 28:
    0 libSystem.B.dylib 0x956f120e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x95723206 pthread_condwait + 1267
    2 libSystem.B.dylib 0x95768539 pthreadcondwait + 48
    3 ...pple.AppleIntermediateCodec 0x17afe8f8 iCodecDecompressorComponentDispatch + 4014
    4 libSystem.B.dylib 0x95722095 pthreadstart + 321
    5 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 29:
    0 libSystem.B.dylib 0x956f120e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x95723206 pthread_condwait + 1267
    2 libSystem.B.dylib 0x95768539 pthreadcondwait + 48
    3 ...pple.AppleIntermediateCodec 0x17afea96 iCodecDecompressorComponentDispatch + 4428
    4 libSystem.B.dylib 0x95722095 pthreadstart + 321
    5 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 30:
    0 libSystem.B.dylib 0x956f120e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x95723206 pthread_condwait + 1267
    2 libSystem.B.dylib 0x95768539 pthreadcondwait + 48
    3 ...pple.AppleIntermediateCodec 0x17afe8f8 iCodecDecompressorComponentDispatch + 4014
    4 libSystem.B.dylib 0x95722095 pthreadstart + 321
    5 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 31:
    0 libSystem.B.dylib 0x956f120e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x95723206 pthread_condwait + 1267
    2 libSystem.B.dylib 0x95768539 pthreadcondwait + 48
    3 ...pple.AppleIntermediateCodec 0x17afe8f8 iCodecDecompressorComponentDispatch + 4014
    4 libSystem.B.dylib 0x95722095 pthreadstart + 321
    5 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 32:
    0 libSystem.B.dylib 0x956f120e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x95723206 pthread_condwait + 1267
    2 libSystem.B.dylib 0x95768539 pthreadcondwait + 48
    3 ...pple.AppleIntermediateCodec 0x17afea96 iCodecDecompressorComponentDispatch + 4428
    4 libSystem.B.dylib 0x95722095 pthreadstart + 321
    5 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 33:
    0 libSystem.B.dylib 0x956f1202 semaphorewaittrap + 10
    1 QuickTimeH264.scalar 0x1e84e8f3 JVTCompEncodeFrame + 2987656
    2 QuickTimeH264.scalar 0x1e84e53f JVTCompEncodeFrame + 2986708
    3 libSystem.B.dylib 0x95722095 pthreadstart + 321
    4 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 34:
    0 libSystem.B.dylib 0x956f1202 semaphorewaittrap + 10
    1 QuickTimeH264.scalar 0x1e84e8f3 JVTCompEncodeFrame + 2987656
    2 QuickTimeH264.scalar 0x1e9100f5 JVTLibDecoDispose + 433495
    3 libSystem.B.dylib 0x95722095 pthreadstart + 321
    4 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 35:
    0 libSystem.B.dylib 0x95721906 kevent + 10
    1 libSystem.B.dylib 0x95722095 pthreadstart + 321
    2 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 36:
    0 libSystem.B.dylib 0x956f11c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x956f89bc mach_msg + 72
    2 com.apple.CoreFoundation 0x96f9e0ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x96f9ed34 CFRunLoopRun + 84
    4 com.apple.DesktopServices 0x91269ef3 TSystemNotificationTask::SystemNotificationTaskProc(void*) + 123
    5 ...ple.CoreServices.CarbonCore 0x95be70a3 PrivateMPEntryPoint + 56
    6 libSystem.B.dylib 0x95722095 pthreadstart + 321
    7 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 37:
    0 libSystem.B.dylib 0x956f11c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x956f89bc mach_msg + 72
    2 com.apple.CoreFoundation 0x96f9e0ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x96f9ed34 CFRunLoopRun + 84
    4 com.apple.DesktopServices 0x9126a06c TFSEventsNotificationTask::FSEventsNotificationTaskProc(void*) + 216
    5 ...ple.CoreServices.CarbonCore 0x95be70a3 PrivateMPEntryPoint + 56
    6 libSystem.B.dylib 0x95722095 pthreadstart + 321
    7 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 38:
    0 libSystem.B.dylib 0x956f83ae _semwaitsignal + 10
    1 libSystem.B.dylib 0x95722d0d pthreadcondwait$UNIX2003 + 73
    2 ...ple.CoreServices.CarbonCore 0x95be8ecf TSWaitOnCondition + 126
    3 ...ple.CoreServices.CarbonCore 0x95bc7da6 TSWaitOnConditionTimedRelative + 202
    4 ...ple.CoreServices.CarbonCore 0x95be8b4c MPWaitOnQueue + 208
    5 com.apple.DesktopServices 0x9127502a TNodeSyncTask::SyncTaskProc(void*) + 84
    6 ...ple.CoreServices.CarbonCore 0x95be70a3 PrivateMPEntryPoint + 56
    7 libSystem.B.dylib 0x95722095 pthreadstart + 321
    8 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 39:
    0 libSystem.B.dylib 0x95721906 kevent + 10
    1 libSystem.B.dylib 0x95722095 pthreadstart + 321
    2 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 40:
    0 libSystem.B.dylib 0x957406f2 select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x95722095 pthreadstart + 321
    2 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 41:
    0 libSystem.B.dylib 0x956f1226 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x957231ef pthread_condwait + 1244
    2 libSystem.B.dylib 0x95724a73 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x9215c75c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x9215c570 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.Foundation 0x9215c4d5 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.AppKit 0x94ba9d90 -[NSUIHeartBeat _heartBeatThread:] + 753
    7 com.apple.Foundation 0x921167ed -[NSThread main] + 45
    8 com.apple.Foundation 0x92116394 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x95722095 pthreadstart + 321
    10 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 42:
    0 libSystem.B.dylib 0x956f1202 semaphorewaittrap + 10
    1 QuickTimeH264.scalar 0x1e84e8f3 JVTCompEncodeFrame + 2987656
    2 QuickTimeH264.scalar 0x1e84e53f JVTCompEncodeFrame + 2986708
    3 libSystem.B.dylib 0x95722095 pthreadstart + 321
    4 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 43:
    0 libSystem.B.dylib 0x956f1202 semaphorewaittrap + 10
    1 QuickTimeH264.scalar 0x1e84e8f3 JVTCompEncodeFrame + 2987656
    2 QuickTimeH264.scalar 0x1e9100f5 JVTLibDecoDispose + 433495
    3 libSystem.B.dylib 0x95722095 pthreadstart + 321
    4 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 44:
    0 libSystem.B.dylib 0x956f120e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x95723206 pthread_condwait + 1267
    2 libSystem.B.dylib 0x95768539 pthreadcondwait + 48
    3 ...pple.AppleIntermediateCodec 0x17afe8f8 iCodecDecompressorComponentDispatch + 4014
    4 libSystem.B.dylib 0x95722095 pthreadstart + 321
    5 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 45:
    0 libSystem.B.dylib 0x956f120e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x95723206 pthread_condwait + 1267
    2 libSystem.B.dylib 0x95768539 pthreadcondwait + 48
    3 ...pple.AppleIntermediateCodec 0x17afea96 iCodecDecompressorComponentDispatch + 4428
    4 libSystem.B.dylib 0x95722095 pthreadstart + 321
    5 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 46:
    0 libSystem.B.dylib 0x956f1202 semaphorewaittrap + 10
    1 QuickTimeH264.scalar 0x1e84e8f3 JVTCompEncodeFrame + 2987656
    2 QuickTimeH264.scalar 0x1e84e53f JVTCompEncodeFrame + 2986708
    3 libSystem.B.dylib 0x95722095 pthreadstart + 321
    4 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 47:
    0 libSystem.B.dylib 0x956f1202 semaphorewaittrap + 10
    1 QuickTimeH264.scalar 0x1e84e8f3 JVTCompEncodeFrame + 2987656
    2 QuickTimeH264.scalar 0x1e9100f5 JVTLibDecoDispose + 433495
    3 libSystem.B.dylib 0x95722095 pthreadstart + 321
    4 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 48:
    0 libSystem.B.dylib 0x956f1202 semaphorewaittrap + 10
    1 QuickTimeH264.scalar 0x1e84e8f3 JVTCompEncodeFrame + 2987656
    2 QuickTimeH264.scalar 0x1e84e53f JVTCompEncodeFrame + 2986708
    3 libSystem.B.dylib 0x95722095 pthreadstart + 321
    4 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 49:
    0 libSystem.B.dylib 0x956f1202 semaphorewaittrap + 10
    1 QuickTimeH264.scalar 0x1e84e8f3 JVTCompEncodeFrame + 2987656
    2 QuickTimeH264.scalar 0x1e9100f5 JVTLibDecoDispose + 433495
    3 libSystem.B.dylib 0x95722095 pthreadstart + 321
    4 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 50:
    0 libSystem.B.dylib 0x956f120e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x95723206 pthread_condwait + 1267
    2 libSystem.B.dylib 0x95768539 pthreadcondwait + 48
    3 ...pple.AppleIntermediateCodec 0x17afea96 iCodecDecompressorComponentDispatch + 4428
    4 libSystem.B.dylib 0x95722095 pthreadstart + 321
    5 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 51:
    0 libSystem.B.dylib 0x956f120e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x95723206 pthread_condwait + 1267
    2 libSystem.B.dylib 0x95768539 pthreadcondwait + 48
    3 ...pple.AppleIntermediateCodec 0x17afe8f8 iCodecDecompressorComponentDispatch + 4014
    4 libSystem.B.dylib 0x95722095 pthreadstart + 321
    5 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 52:
    0 libSystem.B.dylib 0x956f1226 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x957231ef pthread_condwait + 1244
    2 libSystem.B.dylib 0x95724a73 pthreadcond_timedwait_relativenp + 47
    3 ...ple.CoreServices.CarbonCore 0x95bc7dd2 TSWaitOnConditionTimedRelative + 246
    4 ...ple.CoreServices.CarbonCore 0x95be8b4c MPWaitOnQueue + 208
    5 com.apple.DesktopServices 0x91276f74 TFolderSizeTask::FolderSizeTaskProc(void*) + 104
    6 ...ple.CoreServices.CarbonCore 0x95be70a3 PrivateMPEntryPoint + 56
    7 libSystem.B.dylib 0x95722095 pthreadstart + 321
    8 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 53:
    0 libSystem.B.dylib 0x956f120e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x95723206 pthread_condwait + 1267
    2 libSystem.B.dylib 0x95768539 pthreadcondwait + 48
    3 ...pple.AppleIntermediateCodec 0x17afe8f8 iCodecDecompressorComponentDispatch + 4014
    4 libSystem.B.dylib 0x95722095 pthreadstart + 321
    5 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 54:
    0 libSystem.B.dylib 0x956f120e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x95723206 pthread_condwait + 1267
    2 libSystem.B.dylib 0x95768539 pthreadcondwait + 48
    3 ...pple.AppleIntermediateCodec 0x17afea96 iCodecDecompressorComponentDispatch + 4428
    4 libSystem.B.dylib 0x95722095 pthreadstart + 321
    5 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 55:
    0 libSystem.B.dylib 0x956f1202 semaphorewaittrap + 10
    1 QuickTimeH264.scalar 0x1e84e8f3 JVTCompEncodeFrame + 2987656
    2 QuickTimeH264.scalar 0x1e84e53f JVTCompEncodeFrame + 2986708
    3 libSystem.B.dylib 0x95722095 pthreadstart + 321
    4 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 56:
    0 libSystem.B.dylib 0x956f1202 semaphorewaittrap + 10
    1 QuickTimeH264.scalar 0x1e84e8f3 JVTCompEncodeFrame + 2987656
    2 QuickTimeH264.scalar 0x1e9100f5 JVTLibDecoDispose + 433495
    3 libSystem.B.dylib 0x95722095 pthreadstart + 321
    4 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 57:
    0 libSystem.B.dylib 0x956f1202 semaphorewaittrap + 10
    1 QuickTimeH264.scalar 0x1e84e8f3 JVTCompEncodeFrame + 2987656
    2 QuickTimeH264.scalar 0x1e84e53f JVTCompEncodeFrame + 2986708
    3 libSystem.B.dylib 0x95722095 pthreadstart + 321
    4 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 58:
    0 libSystem.B.dylib 0x956f1202 semaphorewaittrap + 10
    1 QuickTimeH264.scalar 0x1e84e8f3 JVTCompEncodeFrame + 2987656
    2 QuickTimeH264.scalar 0x1e9100f5 JVTLibDecoDispose + 433495
    3 libSystem.B.dylib 0x95722095 pthreadstart + 321
    4 libSystem.B.dylib 0x95721f52 thread_start + 34
    Thread 1 crashed with X86 Thread State (32-bit):
    eax: 0x0000003c ebx: 0x957ccc88 ecx: 0xb010296c edx: 0x957cd136
    edi: 0x19912700 esi: 0xb01029c8 ebp: 0xb01029a8 esp: 0xb010296c
    ss: 0x0000001f efl: 0x00000247 eip: 0x957cd136 cs: 0x00000007
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x230df010

    I had the exact same error/dump.
    Here is what I did to fix it.
    1.  Get back to the last known good working verison.  Hopefully you have one or can delete enough artefacts to get back to the working copy.  When you have a version that exports properly, you can proceed to the next step.
    2.  Keep adding back items one at a time.  Do an export after each addition to make sure you are still ok.
    3.  It takes time but at some point you will find the item that caused the crash.
    4.  In my case it was a picture.  For me it was inserted about half-way through my project and that is roughly where it crashed during the export process (judging by the time remaining).
    5.  For me, I just added the picture back into the project.  Did not even have to create it or import it again.  Was worried it was corrupt, but was lucky.
    6.  The issue for me seemed to be the original addition of the picture to the project (again, nothing was wrong with the picture).
    Good luck.
    p.s.Like most people, it tried different export sizes and methods (quicktime, export movie, publish to itunes).  All had the same issue.  None of these were causing the crash - it was the addition of the artefact.

  • Why does adobe Premiere Pro CC Crash every time I export a movie file?

    Why does adobe Premiere Pro CC Crash every time I export a movie file?

    Please hand type your posts directly into the browser window.  Copy/Paste leaves unwanted code throughout.
    span style="color: #ffffff; font-family: Arial, Helvetica, sans-serif; font-size: 12px; background-color: #000000;"

  • Oswald font changes every time I export PDF

    Hi,
    Every time I export to PDF I get a totally different font. The font I'm using is Oswald.
    I thought Pages was supposed to embed fonts automatically?
    It doesn't matter if I export to PDF or go to Print and Save as PDF. In both cases it changes the font.
    Any tips?
    Thanks!!
    Anja

    Hello Anja,
    There may be an issue with your Mac's font cache. Shutting your Mac down, then starting up in Safe Mode (by holding shift when starting up), then restarting once more will reset the font cache and may help get your exported PDFs to have the correct font.
    OS X: What is Safe Boot, Safe Mode?
    http://support.apple.com/en-us/HT201262
    Cheers,
    Allen

  • VERY unstable iPod Nano (crashes every time in iTunes) plz help!

    Hi Folks,
    As I wrote earlier in this thread, the iPod nano I bought for my GF (and the one before that) suffered from the 'updater bug'. At least I know now how to revive it, thanks to the great tips of a few users here, but it's a nuisance that the nano(s) tend to crash every time I want to add some music to it via iTunes. Not to say it's absurd for a mp3 player in this category to have so many bugs apparently.
    I looked up the computer's system log, and it appears it registers a 'disk' warning, logged as 'event 51' every time the iPod is connected to my notebook. If it's not connected, it never gives such a warning. When you click on the warning it states: "fault discovered on appliance \Device\Harddisk1\D during a file exchange operation". [NB: my OS is in Dutch, so I translated it as best I could, it may not be the exact text it'd be in English.]
    What usually happens is that the iPod 'freezes' at the moment I manually add songs to it. Subsequently I get the familiar "use iTunes to reset your iPod" message on the nano's screen, and I have to go through the whole formatting/reset procedure again, as described in the other thread I mentioned above. I had some succes adding music with the 'auto sinc' option, but nevertheless, it crashed again when I wanted to update the music on the nano, still using the 'auto sinc'.
    So every which way I want to add music, the iPod crashes! Only after a full format/restore operation it sometimes accepts music, but as soon as I want to add/update the music on the iPod nano again it crashes...
    As said, this behaviour is very annoying as well as time consuming, and I'm on the verge of returning the iPod to ask my money back. But as it's a gift, I'd rather see it working like it's supposed to work.
    Many thanks in advance for your help, it'd be most welcome!
    Some facts and figures:
    - The nano is updated to V 1.2 using updater 2006-06-28 -
    - iTunes is updated to V 6.5 -
    - I use a Travelmate 800 notebook with Win XP Pro [fully updated except SP2]
    - I did try connecting the nano to different USB ports (3) with no notable difference.
    And here's the original text of the warning:
    Type gebeurtenis: Waarschuwing
    Bron van gebeurtenis: Disk
    Categorie van gebeurtenis: Geen
    Gebeurtenis-ID: 51
    Datum: 20-7-2006
    Tijd: 7:19:04
    Gebruiker: n.v.t.
    Computer: ACTM
    Beschrijving:
    Er is een fout ontdekt op apparaat \Device\Harddisk1\D tijdens een wisselbestandsbewerking.
    Zie Help en ondersteuning op http://go.microsoft.com/fwlink/events.asp voor meer informatie.
    Gegevens:
    0000: 03 00 68 00 01 00 b6 00 ..h...¶.
    0008: 00 00 00 00 33 00 04 80 ....3..€
    0010: 2d 01 00 00 00 00 00 00 -.......
    0018: 00 00 00 00 00 00 00 00 ........
    0020: 00 aa 39 0a 23 00 00 00 .ª9.#...
    0028: 79 95 00 00 00 00 00 00 y•......
    0030: ff ff ff ff 03 00 00 00 ÿÿÿÿ....
    0038: 40 00 00 84 02 00 00 00 @..„....
    0040: 00 20 0a 12 40 03 20 40 . ..@. @
    0048: 00 10 00 00 0f 00 00 00 ........
    0050: 00 00 f1 5e 88 ba 02 82 ..ñ^ˆº.‚
    0058: 00 00 00 00 00 76 e0 fd .....vàý
    0060: 00 00 00 00 d5 1c 85 11 ....Õ.….
    0068: 28 00 11 85 1c d5 00 00 (..….Õ..
    0070: 08 00 00 00 00 00 00 00 ........
    0078: 70 00 00 00 00 00 00 0a p.......
    0080: 00 00 00 00 00 00 00 00 ........
    0088: 00 00 00 00 00 00 00 00 ........

    Hi Folks,
    As I wrote earlier in this thread, the iPod nano I bought for my GF (and the one before that) suffered from the 'updater bug'. At least I know now how to revive it, thanks to the great tips of a few users here, but it's a nuisance that the nano(s) tend to crash every time I want to add some music to it via iTunes. Not to say it's absurd for a mp3 player in this category to have so many bugs apparently.
    I looked up the computer's system log, and it appears it registers a 'disk' warning, logged as 'event 51' every time the iPod is connected to my notebook. If it's not connected, it never gives such a warning. When you click on the warning it states: "fault discovered on appliance \Device\Harddisk1\D during a file exchange operation". [NB: my OS is in Dutch, so I translated it as best I could, it may not be the exact text it'd be in English.]
    What usually happens is that the iPod 'freezes' at the moment I manually add songs to it. Subsequently I get the familiar "use iTunes to reset your iPod" message on the nano's screen, and I have to go through the whole formatting/reset procedure again, as described in the other thread I mentioned above. I had some succes adding music with the 'auto sinc' option, but nevertheless, it crashed again when I wanted to update the music on the nano, still using the 'auto sinc'.
    So every which way I want to add music, the iPod crashes! Only after a full format/restore operation it sometimes accepts music, but as soon as I want to add/update the music on the iPod nano again it crashes...
    As said, this behaviour is very annoying as well as time consuming, and I'm on the verge of returning the iPod to ask my money back. But as it's a gift, I'd rather see it working like it's supposed to work.
    Many thanks in advance for your help, it'd be most welcome!
    Some facts and figures:
    - The nano is updated to V 1.2 using updater 2006-06-28 -
    - iTunes is updated to V 6.5 -
    - I use a Travelmate 800 notebook with Win XP Pro [fully updated except SP2]
    - I did try connecting the nano to different USB ports (3) with no notable difference.
    And here's the original text of the warning:
    Type gebeurtenis: Waarschuwing
    Bron van gebeurtenis: Disk
    Categorie van gebeurtenis: Geen
    Gebeurtenis-ID: 51
    Datum: 20-7-2006
    Tijd: 7:19:04
    Gebruiker: n.v.t.
    Computer: ACTM
    Beschrijving:
    Er is een fout ontdekt op apparaat \Device\Harddisk1\D tijdens een wisselbestandsbewerking.
    Zie Help en ondersteuning op http://go.microsoft.com/fwlink/events.asp voor meer informatie.
    Gegevens:
    0000: 03 00 68 00 01 00 b6 00 ..h...¶.
    0008: 00 00 00 00 33 00 04 80 ....3..€
    0010: 2d 01 00 00 00 00 00 00 -.......
    0018: 00 00 00 00 00 00 00 00 ........
    0020: 00 aa 39 0a 23 00 00 00 .ª9.#...
    0028: 79 95 00 00 00 00 00 00 y•......
    0030: ff ff ff ff 03 00 00 00 ÿÿÿÿ....
    0038: 40 00 00 84 02 00 00 00 @..„....
    0040: 00 20 0a 12 40 03 20 40 . ..@. @
    0048: 00 10 00 00 0f 00 00 00 ........
    0050: 00 00 f1 5e 88 ba 02 82 ..ñ^ˆº.‚
    0058: 00 00 00 00 00 76 e0 fd .....vàý
    0060: 00 00 00 00 d5 1c 85 11 ....Õ.….
    0068: 28 00 11 85 1c d5 00 00 (..….Õ..
    0070: 08 00 00 00 00 00 00 00 ........
    0078: 70 00 00 00 00 00 00 0a p.......
    0080: 00 00 00 00 00 00 00 00 ........
    0088: 00 00 00 00 00 00 00 00 ........

  • How can you make an image change every time you refresh a page?

    Hi.
    I've recently redone my website and was wondering how I could make the image on my main page change every time you refresh the page?
    Like is there a certain script you can use?
    Here's my website
    www.liamfawcett.com
    Thanks

    Copy & Paste the following JavaScript code between the <head> and </head> tags in your HTML document, in Code View of course.
    <script type="text/javascript">
    <!--//Random Banner image on Page Reload
    //store the images in arrays below
    images = new Array(5);
    images[0] = "<a href='http://www.example.com'><img src='some_image.gif' </a>";
    images[1] = "<a href='http://www.example.com'><img src='some_image.gif' </a>";
    images[2] = "<a href='http://www.example.com'><img src='some_image.gif' </a>";
    images[3] = "<a href='http://www.example.com'><img src='some_image.gif' </a>";
    images[4] = "<a href='http://www.example.com'><img src='some_image.gif' </a>";
    index = Math.floor(Math.random() * images.length);
    document.write(images[index]);
    //done
    // -->
    </script>
    In the array, change URLs (http://www.example.com) to your own links.  Change images (some_image.gif) to your own images.
    Save page.  Preview in browser.  Hit refresh (F5 or Ctrl+R) to see the images change.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • On Mac OS - I'm debuggig a huge web application. Firefox crashes often flushes 10 MB image cache every time. How to restart with "filled" cache?

    - Mac OS
    - I'm debuggig a huge web application on https. When it starts, it downloads 10MB images.
    - Firefox crashes often during debugging.
    - Every time, it flushes the images frow the cache and downloads the 10MB again.
    - I often work from different places and sometimes have rather slow internet connections so then this is really annoying for me
    - Having a possibility to start Firefox in "Cache-Safe" mode for debugging would be perfect - when it crashes then, the cache should not be flushed completely but restored to the o.k. situation before entering the mode
    - Any advice?

    Please update to Firefox 25 before continuing, do you still have an issue there?

  • My iphone has some very strange behaviour

    I am running a stock iPhone 5, not jailbroken, iOS 7.0.6.  The other day, one of my appliation folders kept opening when I wasn't touching the screen.  Every time I would close the folder, it would re-open by itself.
    Today I unlocked the phone and before I had opened any apps, Safari opened by itself and the words "buu's fury" got typed into the address bar and came up with a Google search.
    I keep hearing that iPhone's don't get viruses, any ideas what could be causing this?
    Thanks

    You hear correct there's no virus & malware that can run on iPhone.
    Double tab Home button and delete Safari from multitask-list.
    Clear Safari history cookies & data.
    Settings > Safari > here
    Do not track: ON
    Fraudulent Website Warning: ON
    Do a
    Reset: Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Note: You will not lose any data

  • Forced to render same audio every time I export

    My source material is all synced with audio in 8 timelines ranging from 45 min to 4 hours and I am editing from those, nesting into new working timelines. These original sequences need to be rerendered nearly every time I am working, even though I haven't made any changes.
    If I try to export from a new timeline that includes bits of these nested sequences, the audio render gets held up indefinitely. It seems that to export any small clip, I need to open up all the original source timelines and rerender their audio individually, then render the working sequence. This takes up a huge amount of time and is really killing me.
    Does anyone have any ideas why I would need to continually render the audio from these original sequences even though I am not making changes, or have any ideas of somework around?
    Please let me know what else I can tell you!

    Thank you for your reply regardless!!!
    I found a years old thread that had a similar problem and the initial writer said he fixed it by unchecking the "save media cache files next to originals when possible" option in media preferences (although subsequent visitors to the thread were not helped by this fix). I did check that otion when setting up the project so I decided it's worth a try and I have today and tomorrow as buffer if all goes wrong. I unchecked it and changed the path for my media cache files and database. I waited through reconforming and had to render my avchd files again. The very weird thing is now the program is acting like all my MXF footage needs to be rendered when it never has been neccessary before. Do you have any idea about that?
    I still don't know if changing the media cache location and unchecking that option will solve my originial problem, but we'll see; it's the only potential I've found!

  • New install of Premiere on Mavericks crashes every time on export -

    Hi all,
    I just switched to a fresh install of Mavericks on a clean hard drive. I have not installed any other programs except Premiere Pro CC and Prelude. (aside from a couple of simple items like Dropbox and Evernote). I have not installed any video codecs except what was stock with Mavericks. YET, Prelude can't import (crashes every time I click the "Import" button), and Premiere crashes immediately any time I try to export ANY file. The editing process seems to work fine. It's as if there's no ability to export at all.
    The importing and exporting was working fine on the previous version of Mavericks. Am I missing something? Is there some video plugin or preferance that I'm supposed to install. It's very surprising because it is a completely clean install, which means to me that nothing is conflicting, but perhaps something is missing.
    Thanks for your help.

    Hi Noriega93,
    Please try following steps:
    1. Open Applications > Adobe Media Encoder CC > Right Click on Adobe Media Encoder CC Icon > Get Info
         Click on Select your username and Provide Read & Write Permission to it.
    2 Click on Go to folder  & type ~/Library > Preferences > rename Adobe  to Adobe.old
    3.~/Library > Application Support rename Adobe  to Adobe.old
    4. Rename Adobe folder to Adobe2 in Documents > Adobe
    5. Please try to create a new admin account and then try to launch Media Encoder in New User account.
    Please let us know if this works or not.
    Regards,
    Sandeep

  • InDesign crashes every time I export to interactive PDF??

    I am using InDesign CS6 on Windows 7 professional.
    I have restarted the computer several times. CS6 is all up to date.
    I have experimented on several existing documents as well as brand new documents. It makes no difference.
    Interestingly, InDesign DOES export the interactive PDF just fine, I can open it and it works. However, before the document finishes processing, InDesign pops up an error message saying that InDesign has stopped working and must shut down. So when I have many PDFs from various files to export, it's a major pain to have indd crash & recover documents every time.
    Files crash no matter what the content, I've tried new doc with only a yellow circle. I've tried new doc using only system fonts.
    I've never used interactive PDFs before today, so I have no idea if this is a recent problem or not.
    Any help greatly appreciated, thanks!!
    -Tia

    Peter, ID is patched to version 8.0.2 & I followed the steps to replace my preference (and confirmed they were deleted) and I'm still having the same issue of ID crashing whenever I export an interactive PDF.
    I've tested it on all four of our computers here, and it does it to everyone--so I'm guessing it's something system-wide on our part. I am going to trying uninstalling some plugins that we all have and report back later.

Maybe you are looking for

  • Moving TM backup file

    Hi people! This article: http://support.apple.com/kb/ht5096 describes the process of transfering the TM backup file from one disk to another. Is this process the same in Mavericks? Best regards, Ole

  • Daily  Attendance Report

    HI SAP GURUS Is there any report in sap for checking the attendance for absence on a daily basis for all employees. Regards Surupa

  • How long does it normally take to install Final Cut?

    Hi, I just got a new MacBook Pro. I'm installing Final Cut Studio 2 on it and I was wondering how long it normally takes to install that program on this type of computer. Right now it's saying 10 hours (and that's after 2 hours having already passed)

  • Mac Pro restart/shutting down problem

    So, now I have my Mac Pro. I really love this machine. I working in OS X & I gaming in WinXP SP2 (boot camp 1.1.1. & http://www.macproxppics.com/ solve the SATA problem) - its beautiful. But I have a strange problem. In WinXP after I choose Restart (

  • Need to rescue Garage Band Files with Data Rescue II - what kind of files?

    Hi all - After a particularly gruesome computer crash, I am trying to reconstruct my lost files using Data Rescue II..... This program goes into the damaged hard drive and downloads all intact files it can find, but it is NOT able to label everything