RPC service falling when streaming a captured video

I got this problem under XP.
When sending an audio/video stream from one to another XP machine :
The RPC service is going down (event known as 7031). By default, the machine is closing in the minute that follows (depends on system parameters).
When configured so that the system would restart the service (in this case of failure), I saw that the status of connection was no more available and couldn't disconnect as well.
Note : sure about my system's installation...
Thanks for your advices

Could it be related to the fact that you have to disable the firewall in the advanced options of the IP connection ?

Similar Messages

  • Error message when trying to capture video

    I am trying to capture video into FCE using a Sony MiniDV camera, the same one the footage was shot on, with a firewire connection. Every time i try to capture the footage, either using Capture CLip or Capture Now, it stops after about 10 seconds and gives me an error message that says there is a problem with my footage. I can play the footage back fine on my camera and there is no break in timecode. When i capture other footage shot on a different camera, using my Sony camera to capture, it works fine.
    I bought a minDV head cleaning tape and ran it, it didn't help. Is it possible the settings on my FCE are wrong for the particular way i shot this footage? It was shot at SP. Or could it be a problem with my camera that made the footage damaged when i shot it?
    Please help!

    Most probably a tape problem on the original recording.
    You know this information, and you know you've been doing it for years. We don't know that. We're trying to help you, and we can't see your system, what you're doing, or what you know. We have to guess, one step at a time. From what I can glean from the message, I can't see it being anything but a recording problem on the tape, or a recording problem in relation to the playback device, but those are pretty rare occurrences for cameras and decks that are properly maintained.

  • "Blue Screen of Death" when trying to capture video!

    Whenever I go to capture video, it immediately gives me a blue screen and the computer restarts.  I thought that installing Premiere (CS 4 trial) would allow me to use Premiere's capture capabilities, but I still got the same blue screen problem.  So, what could be the problem?  I have captured video on this same computer before, using the same camera (Panasonic MiniDV cam....can't remember the model #) with no problem.  Not sure why it's giving me trouble now.  Do drivers need updated?  I am operating on a PC....Windows Vista, and I have plenty of drive space.  Any help or advice would be greatly appreciated.  Thanks!

    Along with Harm's questions, this ARTICLE might help you get started gathering clues.
    Good luck,
    Hunt

  • Anyone know what would cause a cs5 "utilities.cpp-760"  when trying to capture video

    Software: Premiere Pro CS5 v5.0.3
    OS: Win7 Pro 64bit
    Trying to batch capture video from a Sony DSR-45 over firewire and it's worked before, but for some reason now it will cause the "Premiere pro debug event' message box with "..src\Utilities.cpp-760".
    Any one have any ideas what would cause that or where I could look for a log file or something with a little more info.
    Thanks
    Don

    Trying one of these may help
    I have NOT used either, but many say to try these for SD capture http://windv.mourek.cz/ or http://www.exsate.com/products/dvcapture/
    http://helpx.adobe.com/premiere-pro/kb/cant-capture-dv-hdv-video.html
    -and http://forums.adobe.com/message/4708997
    I have NOT used it, but many say to try this for HDV capture http://strony.aster.pl/paviko/hdvsplit.htm
    -Interrupt message #16 http://forums.adobe.com/thread/978014
    Also, you MAY need to use the Legacy Driver http://forums.adobe.com/message/2981411

  • HELP Program shuts down when try to capture video

    Every time I click on capture the program shuts down. I've used this program many times with no problem but now it won't even reconize my camera. And when I try to capture it shuts down completely. Anyone know what to do?

    There is nothing wrong with FCE 2 as a program - it should not be necessary to upgrade it.
    Have you tried plugging and unplugging the FireWire cable from both the computer and the camera.
    Also see if iMovie will recognise the camera. if it won't you will know the problem is probably not the fault of FCE.
    It is also possible that FCE may be corrupted in which case you should re-install it after having first uninstalled it by deleting ALL the files listed in this article:-
    http://docs.info.apple.com/article.html?artnum=93688
    Good Luck.
    Ian.

  • Having a strange problem. When streaming music and or music videos to my Apple TV from my Mac sometimes the Apple TV seems to loose the stream and the only way I can get it going again is to turn off home share on my Mac and then turn it on again.

    I do not have this problem when streaming music/music videos from my IPAD or my Iphone

    The speed is probably due to your network, it is quite indirect for mirror/AP.
    For the audio, you cannot split audio and video so the audio will play where the video does.
    Jules

  • Take photo from image stream using capture engine technique in media foundation

    Hi,
    I am beginner for media foundation.I have to develop Win32 desktop application using capture engine technique in media foundation.
    I have to implement the following features:1)Show video streaming 2)Capture video 3)Capture photo from still-image stream.These features are implemented in capture engine.
    I am able to take photo from video stream not from image stream.I tried to configure the image stream index in Addstream() api,but its giving MF_CAPTURE_ENGINE_ERROR error.
    To trigger the still pin,use
    the IAMVideoControl::SetMode method
    in directshow. How do i implement this feature using capture engine technique in MF?My question
    is-is it possible do it in Media foundtion??I have searched many sites but no luck.
    Here the sample code which i used to capture an image.
    HRESULT TakePhoto()
    HRESULT hr = m_pEngine->GetSink(MF_CAPTURE_ENGINE_SINK_TYPE_PHOTO, &pSink);
    if (FAILED(hr))
    goto done;
    hr = pSink->QueryInterface(IID_PPV_ARGS(&pPhoto));
    if (FAILED(hr))
    goto done;
    hr = m_pEngine->GetSource(&pSource);
    if (FAILED(hr))
    goto done;
    hr = pSource->GetCurrentDeviceMediaType(1, &pMediaType); // 1 is Image stream index.I will get current image stream media type here.
    if (FAILED(hr))
    goto done;
    //Configure the photo format
    hr = CreatePhotoMediaType(pMediaType, &pMediaType2,GUID_ContainerFormatBmp);
    if (FAILED(hr))
    goto done;
    hr = pPhoto->RemoveAllStreams();
    if (FAILED(hr))
    goto done;
    DWORD dwSinkStreamIndex;
    // Try to connect the first still image stream to the photo sink
    if(bHasPhotoStream)
    hr = pPhoto->AddStream((DWORD)MF_CAPTURE_ENGINE_PREFERRED_SOURCE_STREAM_FOR_PHOTO, pMediaType2, NULL, &dwSinkStreamIndex); //Instead of MF_CAPTURE_ENGINE_PREFERRED_SOURCE_STREAM_FOR_PHOTO,i gave index as 1.i am getting error
    if(FAILED(hr))
    goto done;
    hr = pPhoto->SetOutputFileName(pszFileName);
    if (FAILED(hr))
    goto done;
    hr = m_pEngine->TakePhoto();
    if (FAILED(hr))
    goto done;
    return hr;
    HRESULT OnCaptureEvent(WPARAM wParam, LPARAM lParam)
    GUID guidType;
    HRESULT hrStatus;
    IMFMediaEvent *pEvent = reinterpret_cast<IMFMediaEvent*>(wParam);
    hr = pEvent->GetExtendedType(&guidType);
    if (SUCCEEDED(hr))
    if (guidType == MF_CAPTURE_ENGINE_ERROR) //i got this error if i give dwSourceStreamIndex as '1' in Addstresm api
    DestroyCaptureEngine();
    pEvent->Release();
    return hrStatus;
    Please help me to solve this problem.Past one week,I am working on this issue and i couldnt find the solution.Please give me a some idea or some sample code to solve this problem.
    Thanks in advance.
    Regards,
    Ambika

    Hi Everyone,
    Any help will be appreciated.
    Regards
    Ambika

  • CAPTURING VIDEO AND AUDIO FROM THE DESKTOP

    I AM USING A PAVILION DV 7-6163 WINDOWS 7 OS.
    WHEN I CAPTURE VIDEO OF MY DESKTOP, I ALSO CAPTURE ANY NOISE MY MICROPHONE PICKS UP. A COUGH OR SNEEZ. HOW DO I PREVENT THIS?
    THANK YOU,
    This question was solved.
    View Solution.

    Its simple. DONT cough or sneeze when you are capturing video.
    The notebook which you have has a digital dual-microphone array which features beam-forming, echo-cancellation, and noise-suppression software support. 
    Also Go to Control Panel > Programs and Features, uninstall IDT Audio drivers , restart the computer and install updated drivers from here and see if that helps.
    //Click on Kudos and Accept as Solution if my reply was helpful and answered your question//
    I am an HP employee!!

  • Capturing Video and Audio

    Hi all. This is my first post in anything to do with Flex or
    Flash for please excuse any ignorance.
    I wish to allow someone to simply record audio or video from
    the flash app in the browser (i see these options when i right
    click) and have that data sent to my sever and save as a flash fiel
    to play back later.
    It is so common place that i can't imagine there isn't a "no
    development required" end to end solution for this where i just
    plug the client component into my existing web page.
    Anyone have any pointers? I'm just playing around with some
    ideas so the cost can't be high, but this is a fairly basic add-on
    to flash player that could be done through flex is my thoughts?
    thanks,
    Steven
    http://livz.org

    Its simple. DONT cough or sneeze when you are capturing video.
    The notebook which you have has a digital dual-microphone array which features beam-forming, echo-cancellation, and noise-suppression software support. 
    Also Go to Control Panel > Programs and Features, uninstall IDT Audio drivers , restart the computer and install updated drivers from here and see if that helps.
    //Click on Kudos and Accept as Solution if my reply was helpful and answered your question//
    I am an HP employee!!

  • Captured video disappears

    I have come across an inconvenient problem- sometimes when I successfully capture video (using the batch capture feature), the video somehow doesn't record to the hard drive. But, there is a large amount of disk space used up after the capture process, showing that the file may actually be hidden on the hard drive.
    Does anyone know a way to get the file to show up on the hard drive?

    Andrew,
    Thanks for the timely response.
    What version of Final Cut Pro are you running - 4.5 or 5.0?
    Have you installed the latest updates to FCP and to QT?
    Have you run FCP Rescue and trashed your FCP preferences? If not, please do so. This will eliminate your preferences as an issue.
    Do you have a second drive (external firewire) disk?
    If not, you should purchase one immediately.
    If you have one, you should designate it as the capture/scratch drive. Go to SYSTEM SETTINGS>SCRATCH DISKS to designate the location of the capture folder (as well as all other scratch folders).
    Are you are logging the entire tape then going back and doing short clip captures using batch capture?
    What happens if you try to capture just one short segment rather than the entire tape's worth of clips?
    please report back,
    x

  • Urgent. FCP unexpectedly quits when I try to capture video

    I have a dual 2.3 PowerPC G5 w/ 4.5GB DDR2 SDRAM running on OS 10.4.11. Running Final Cut Studio 2 since 7/08.
    I use a Panasonic miniDV camcorder as a deck since December. For the past week I have had problems uploading video into FCP. It started with partial captures, crashes and now quits immediately when I try to capture video.
    I have tried capturing on my DVX100b to see if it was the camera with the same results. I installed "Preference manager" and reset all preferences. No help.
    Tried capturing with "non-controllable device" but same problem.
    A lot of footage is from the tv studio in dv format. Playback is a little jumpy at times which feels like the cause because it seems that is when the crash happens.
    I tried capture in iMovie as a test and it captures although jumpy video is cut.
    I did a re-install months ago and I'm afraid to do another re-install if that is not the problem.
    I can really use some advice here.
    Attached is the apple report if that is any help. Thanks
    P.S. I have done all the verify and repair disks, software updates, reset preferences.
    Report:
    Date/Time: 2009-01-13 10:39:19.984 -0500
    OS Version: 10.4.11 (Build 8S165)
    Report Version: 4
    Command: Final Cut Pro
    Path: /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro
    Parent: WindowServer [68]
    Version: 6.0.5 (6.0.5)
    Build Version: 24
    Project Name: FCPApp
    Source Version: 810171515
    PID: 262
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x38021007
    Thread 0 Crashed:
    0 com.apple.FinalCutPro 0x003853b0 pKGDVCUExtractRawAudioDataFromMemory(DVCodecFrameTypes, void*, long*, long*, long*, unsigned char*, void**, unsigned long) + 652
    1 com.apple.FinalCutPro 0x0024fe3c CorrelateFrameDataWithAudio(DVCodecFrameTypes, TrackType**, long, unsigned char, TrackType**, unsigned long, double*, unsigned char*) + 1608
    2 com.apple.FinalCutPro 0x00250acc pKGQTVerifyAVSyncForDVMovie(MovieType**, MovieType**, unsigned char*, double*, long) + 1160
    3 com.apple.FinalCutPro 0x0005a358 AdjustDVAudioSampleRateAndAVSync(KGFileRec**, KGFileRec**, KGCaptureRec*, CaptureStruct*) + 1780
    4 com.apple.FinalCutPro 0x0005f4b4 CaptureClipListEntryFinalize(KGCaptureRec*, KGDictInt*, KGErrorCode, unsigned char, unsigned char, KGDictInt*, KGDictInt*, CaptureStruct*) + 7888
    5 com.apple.FinalCutPro 0x0006e874 BeginCapture(KGCaptureRec*, KGDictInt*, KGDictInt*, CaptureStruct*) + 8424
    6 com.apple.FinalCutPro 0x0006f880 pKGCaptureSegment(KGCaptureRec*, KGDictInt*, KGDictInt*, CaptureStruct*, KGDictInt**) + 2360
    7 ...utPro.Plugins.Media Manager 0x0985ea58 MMCaptureSegmentIterator(KGCaptureRec*, KGDictInt*, KGDictInt*, CaptureStruct*, KGDictInt*, KGDictInt*) + 808
    8 ...utPro.Plugins.Media Manager 0x0985275c KGMMRunBatchRADIngest(KGDictInt*, long, KGDictInt*, KGDictInt*, unsigned char) + 3328
    9 ...inalCutPro.Plugins.VideoLog 0x09c0147c PluginStart + 14884
    10 ...inalCutPro.Plugins.VideoLog 0x09c076c4 AddVideoControlView(KGViewRecord*, unsigned char) + 7736
    11 ...inalCutPro.Plugins.VideoLog 0x09c06c90 AddVideoControlView(KGViewRecord*, unsigned char) + 5124
    12 com.apple.FinalCutPro 0x002d64f0 pKGViewMessage(long, long, KGDictInt*, KGViewRecord*) + 27384
    13 com.apple.FinalCutPro 0x000dff20 pKGGroupBoxMessage(long, long, KGDictInt*, KGViewRecord*) + 1412
    14 com.apple.FinalCutPro 0x002d64f0 pKGViewMessage(long, long, KGDictInt*, KGViewRecord*) + 27384
    15 com.apple.FinalCutPro 0x000d74ac pKGSimpleControlMessage(long, long, KGDictInt*, KGViewRecord*) + 3984
    16 com.apple.FinalCutPro 0x000d72d8 pKGSimpleControlMessage(long, long, KGDictInt*, KGViewRecord*) + 3516
    17 com.apple.FinalCutPro 0x002cc944 PPassMouseEvent(KGPanelRecord*, KGDictInt*, long) + 1400
    18 com.apple.FinalCutPro 0x002d6c38 pKGPanelMessage(long, long, KGDictInt*, KGViewRecord*) + 320
    19 com.apple.FinalCutPro 0x0027b684 ServicesPanelsMessageProc(long, long, KGDictInt*, KGPanelRecord*) + 120
    20 com.apple.FinalCutPro 0x0027ceac ViewerGeneralMessageProc(long, long, KGDictInt*, KGPanelRecord*) + 84
    21 ...inalCutPro.Plugins.VideoLog 0x09c0a864 AddVideoControlView(KGViewRecord*, unsigned char) + 20440
    22 com.apple.FinalCutPro 0x002cc078 pKGPanelWindowProc(long, long, KGDictInt*, void*) + 96
    23 com.apple.FinalCutPro 0x002e3cb4 pKGSendWindowMessage(KGWindowRec*, long, long, KGDictInt*) + 140
    24 com.apple.FinalCutPro 0x0016eab4 HandleMouseDown(OpaqueEventRef*) + 3448
    25 com.apple.FinalCutPro 0x0016f018 DoEvent(OpaqueEventRef*, KGDictInt*) + 748
    26 com.apple.FinalCutPro 0x00435a48 Events(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 96
    27 com.apple.HIToolbox 0x9ec01934 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 692
    28 com.apple.HIToolbox 0x9ec0108c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    29 com.apple.HIToolbox 0x9ec07e90 SendEventToEventTarget + 40
    30 com.apple.HIToolbox 0x9ec94230 HandleMouseEventForWindow(OpaqueWindowPtr*, OpaqueEventRef*, unsigned short) + 236
    31 com.apple.HIToolbox 0x9edf73e8 HandleMouseEvent(OpaqueEventRef*) + 368
    32 com.apple.HIToolbox 0x9ec081fc ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 496
    33 com.apple.HIToolbox 0x9ec01b84 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1284
    34 com.apple.HIToolbox 0x9ec0108c SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 372
    35 com.apple.HIToolbox 0x9ec07e90 SendEventToEventTarget + 40
    36 com.apple.HIToolbox 0x9ec48c04 ToolboxEventDispatcher + 92
    37 com.apple.HIToolbox 0x9ec48b90 HLTBEventDispatcher + 16
    38 com.apple.HIToolbox 0x9ec47148 RunApplicationEventLoop + 148
    39 com.apple.FinalCutPro 0x0016ad04 KGMainEvent(void*) + 52
    40 com.apple.FinalCutPro 0x002e84b0 main + 64
    41 com.apple.FinalCutPro 0x00002edc _start + 760
    42 com.apple.FinalCutPro 0x00002be0 start + 48
    Thread 1:
    0 libSystem.B.dylib 0x9002bfc8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030aac pthreadcondwait + 480
    2 com.apple.FinalCutPro 0x0045f338 Synchronizable::Wait() + 48
    3 com.apple.FinalCutPro 0x00449b64 DisplayQueue::Run() + 724
    4 com.apple.FinalCutPro 0x004896b4 Thread::RunHelper(void*) + 32
    5 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9002bfc8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030aac pthreadcondwait + 480
    2 com.apple.FinalCutPro 0x0045f338 Synchronizable::Wait() + 48
    3 com.apple.FinalCutPro 0x005031c0 WorkUnitPerformer::Run() + 72
    4 com.apple.FinalCutPro 0x004896b4 Thread::RunHelper(void*) + 32
    5 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000af48 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000ae9c mach_msg + 60
    2 com.apple.CoreFoundation 0x902b19ac __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x902b12b0 CFRunLoopRunSpecific + 268
    4 com.apple.CoreFoundation 0x902c0710 CFRunLoopRun + 52
    5 com.apple.DVCPROHDMuxer 0x2021ce40 AVS::DestroyAVCDeviceController(AVS::AVCDeviceController*) + 432
    6 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9000af48 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000ae9c mach_msg + 60
    2 com.apple.CoreFoundation 0x902b19ac __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x902b12b0 CFRunLoopRunSpecific + 268
    4 com.apple.audio.CoreAudio 0x91459524 HALRunLoop::OwnThread(void*) + 264
    5 com.apple.audio.CoreAudio 0x914592c4 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9000af48 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000ae9c mach_msg + 60
    2 com.apple.CoreFoundation 0x902b19ac __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x902b12b0 CFRunLoopRunSpecific + 268
    4 ....CoreMediaIOServicesPrivate 0x923051c0 MIO::DAL::RunLoop::OwnThread(void*) + 216
    5 ....CoreMediaIOServicesPrivate 0x92306e4c CAPThread::Entry(CAPThread*) + 108
    6 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9000af48 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000ae9c mach_msg + 60
    2 com.apple.CoreFoundation 0x902b19ac __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x902b12b0 CFRunLoopRunSpecific + 268
    4 com.apple.CoreFoundation 0x902c0710 CFRunLoopRun + 52
    5 com.apple.IOFWDVComponents 0x220b6450 AVCUnitMessageCallback + 2348
    6 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 7:
    0 libSystem.B.dylib 0x9000af48 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000ae9c mach_msg + 60
    2 com.apple.IOFWDVComponents 0x220b62d0 AVCUnitMessageCallback + 1964
    3 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 8:
    0 libSystem.B.dylib 0x90053f88 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x900707e8 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x904203d0 TSWaitOnSemaphoreCommon + 176
    3 ...ple.CoreServices.CarbonCore 0x90428370 TimerThread + 60
    4 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 9:
    0 libSystem.B.dylib 0x90053f88 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x900707e8 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x904203d0 TSWaitOnSemaphoreCommon + 176
    3 ...ickTimeComponents.component 0x999f7c04 ReadSchedulerThreadEntryPoint + 5300
    4 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 10:
    0 libSystem.B.dylib 0x90053f88 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x900707e8 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x904203d0 TSWaitOnSemaphoreCommon + 176
    3 ...ple.CoreServices.CarbonCore 0x9042ae7c AIOFileThread(void*) + 520
    4 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 11:
    0 libSystem.B.dylib 0x90053f88 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x900707e8 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x904203d0 TSWaitOnSemaphoreCommon + 176
    3 ...ple.CoreServices.CarbonCore 0x90420224 AsyncFileThread(void*) + 56
    4 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x00000000003853b0 srr1: 0x100000000000f030 vrsave: 0x0000000000000000
    cr: 0x24022244 xer: 0x0000000000000000 lr: 0x00000000003852b0 ctr: 0x0000000000000014
    r0: 0x000000000000195c r1: 0x00000000bfffc300 r2: 0x0000000000060007 r3: 0x0000000022aaca20
    r4: 0x0000000000000000 r5: 0x0000000000000000 r6: 0xffffffffffffffff r7: 0x0000000000000000
    r8: 0x0000000000000000 r9: 0x0000000037fcfa60 r10: 0x000000000072aa4c r11: 0x0000000000000657
    r12: 0x0000000090129660 r13: 0x000000000001bbbb r14: 0x0000000000005b06 r15: 0x000000000000bb80
    r16: 0x000000000c0feac4 r17: 0x0000000000000002 r18: 0x0000000000000000 r19: 0x00000000bfffc3fc
    r20: 0x00000000bfffc3f8 r21: 0x00000000bfffc400 r22: 0x0000000000000002 r23: 0x0000000000000002
    r24: 0x0000000037e6d8d0 r25: 0x000000000000066b r26: 0x00000000bfffc414 r27: 0x000000000000ea60
    r28: 0x0000000037fc1000 r29: 0x0000000000000002 r30: 0x0000000000000001 r31: 0x0000000022aae37c
    Binary Images Description:
    0x1000 - 0x787fff com.apple.FinalCutPro 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro
    0xb57000 - 0xb5cfff KGCore /Applications/Final Cut Pro.app/Contents/Frameworks/KGCore.framework/Versions/A/KGCore
    0xb62000 - 0xb72fff com.apple.AERegistration 1.2 (72) /Applications/Final Cut Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
    0xb84000 - 0xb8cfff com.apple.AEProfiling 1.2 (18) /Applications/Final Cut Pro.app/Contents/Frameworks/AEProfiling.framework/Versions/A/AEProfiling
    0xb94000 - 0xbc7fff com.apple.AVCVideoServices 1.0 (38) /Applications/Final Cut Pro.app/Contents/Frameworks/AVCVideoServices.framework/Versions/A/AVCVideoServi ces
    0xbe8000 - 0xbf4fff com.apple.finalcutstudio.prometadatasupport 0.5 (1.0) /Library/Frameworks/ProMetadataSupport.framework/Versions/A/ProMetadataSupport
    0xd05000 - 0xd79fff com.apple.ProFX 1.2.3 /Library/Frameworks/ProFX.framework/Versions/A/ProFX
    0xda4000 - 0xdfbfff com.apple.proapps.MIO 1.0 /Applications/Final Cut Pro.app/Contents/Frameworks/MIO.framework/Versions/A/MIO
    0xe37000 - 0xf25fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x1bf3000 - 0x1bf8fff com.apple.LiveType.component 2.1.3 /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x1e05000 - 0x1e0cfff com.apple.proapps.mrcheckpro 1.4 (204) /Applications/Final Cut Pro.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
    0x1e80000 - 0x1ee5fff com.apple.LiveType.framework 2.1.3 /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x1f0f000 - 0x1f57fff com.apple.motion.component 1.0 /Library/QuickTime/Motion.component/Contents/MacOS/Motion
    0x1f5d000 - 0x1f61fff Motion /Library/Frameworks/Motion.framework/Versions/A/Motion
    0x90d3000 - 0x91e2fff GLEngine /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x9345000 - 0x94a8fff com.apple.GeForceFXGLDriver 1.4.18 (4.1.8) /System/Library/Extensions/GeForceFXGLDriver.bundle/Contents/MacOS/GeForceFXGLD river
    0x94c9000 - 0x94e2fff GLDriver /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0x94e8000 - 0x9503fff GLRendererFloat /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x9543000 - 0x9570fff com.apple.FinalCutPro.Plugins.AfterEffects 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/AfterEffects.bundle/Contents/MacOS/AfterEffects
    0x9579000 - 0x957dfff com.apple.FinalCutPro.Plugins.AudioGroupsExport 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/AudioGroupsExport.bundle/Contents/MacOS/AudioGro upsExport
    0x9581000 - 0x959afff com.apple.FinalCutPro.Plugins.AudioMixer 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/AudioMixer.bundle/Contents/MacOS/AudioMixer
    0x95a8000 - 0x95befff com.apple.proapps.ControlSurfaceSupport 2.0 (68) /Applications/Final Cut Pro.app/Contents/Frameworks/ControlSurfaceSupport.framework/Versions/A/ControlS urfaceSupport
    0x95d4000 - 0x9684fff com.apple.FinalCutPro.Plugins.Browser 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Browser.bundle/Contents/MacOS/Browser
    0x969f000 - 0x96a5fff com.apple.FinalCutPro.Plugins.Cache Manager 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Cache Manager.bundle/Contents/MacOS/Cache Manager
    0x96a9000 - 0x96bffff com.apple.FinalCutPro.CinemaTools 4.0.1 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Cinema Tools.bundle/Contents/MacOS/Cinema Tools
    0x96ca000 - 0x96d5fff com.apple.FinalCutPro.Plugins.CTHelper 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/CTHelper.bundle/Contents/MacOS/CTHelper
    0x96dc000 - 0x9702fff com.apple.FinalCutPro.Plugins.EditTape 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/EditTape.bundle/Contents/MacOS/EditTape
    0x9711000 - 0x975bfff com.apple.FinalCutPro.Plugins.EDL Export 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/EDL Export.bundle/Contents/MacOS/EDL Export
    0x9770000 - 0x9778fff com.apple.FinalCutPro.Plugins.Effect Builder 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Effect Builder.bundle/Contents/MacOS/Effect Builder
    0x977c000 - 0x9789fff com.apple.FinalCutPro.Plugins.FCPExtPluginSupport 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/FCPExtPluginSupport.bundle/Contents/MacOS/FCPExt PluginSupport
    0x9790000 - 0x97c3fff com.apple.FinalCutPro.Plugins.FCS Engine 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/FCS Engine.bundle/Contents/MacOS/FCS Engine
    0x97cb000 - 0x97dcfff com.apple.FinalCutPro.Plugins.FilterCustomEd 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/FilterCustomEd.bundle/Contents/MacOS/FilterCusto mEd
    0x97e1000 - 0x97f6fff com.apple.FinalCutPro.Plugins.FilterViewer 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/FilterViewer.bundle/Contents/MacOS/FilterViewer
    0x97fb000 - 0x97fefff com.apple.FinalCutPro.Plugins.FinalTouchExport 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/FinalTouchExport.bundle/Contents/MacOS/FinalTouc hExport
    0x9803000 - 0x9823fff com.apple.FinalCutPro.Plugins.Flash 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Flash.bundle/Contents/MacOS/Flash
    0x9833000 - 0x9840fff com.apple.FinalCutPro.Plugins.GenViewer 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/GenViewer.bundle/Contents/MacOS/GenViewer
    0x9845000 - 0x984afff com.apple.FinalCutPro.Plugins.LayerFileReader 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/LayerFileReader.bundle/Contents/MacOS/LayerFileR eader
    0x984e000 - 0x989afff com.apple.FinalCutPro.Plugins.Media Manager 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Media Manager.bundle/Contents/MacOS/Media Manager
    0x98a6000 - 0x98bafff com.apple.FinalCutPro.Plugins.MolokiniSupport 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/MolokiniSupport.bundle/Contents/MacOS/MolokiniSu pport
    0x98c9000 - 0x98dcfff com.apple.FinalCutPro.Frameworks.MolokiniTranslation 1.0 /Applications/Final Cut Pro.app/Contents/Frameworks/MolokiniTranslation.framework/Versions/A/MolokiniTr anslation
    0x98e8000 - 0x98fcfff com.apple.FinalCutPro.Plugins.Motion Viewer 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Motion Viewer.bundle/Contents/MacOS/Motion Viewer
    0x9901000 - 0x991ffff com.apple.FinalCutPro.Plugins.Movie Analyzer 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Movie Analyzer.bundle/Contents/MacOS/Movie Analyzer
    0x992e000 - 0x9946fff com.apple.FinalCutPro.Plugins.Movie Viewer 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Movie Viewer.bundle/Contents/MacOS/Movie Viewer
    0x9952000 - 0x9957fff com.apple.FinalCutPro.Plugins.NuggetExport 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/NuggetExport.bundle/Contents/MacOS/NuggetExport
    0x995c000 - 0x9a04fff com.apple.FinalCutPro.Plugins.OMF Audio Export 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/OMF Audio Export.bundle/Contents/MacOS/OMF Audio Export
    0x9a22000 - 0x9a2cfff com.apple.FinalCutPro.Plugins.Perf Analyzer 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Perf Analyzer.bundle/Contents/MacOS/Perf Analyzer
    0x9a31000 - 0x9a49fff com.apple.FinalCutPro.Plugins.ProAppsIntegration 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/ProAppsIntegration.bundle/Contents/MacOS/ProApps Integration
    0x9a59000 - 0x9a67fff com.apple.FinalCutPro.Plugins.Pulldown Support 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Pulldown Support.bundle/Contents/MacOS/Pulldown Support
    0x9a6f000 - 0x9aaefff com.apple.FinalCutPro.Plugins.QTM Reader 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/QTM Reader.bundle/Contents/MacOS/QTM Reader
    0x9abc000 - 0x9ac5fff com.apple.FinalCutPro.Plugins.QuickView 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/QuickView.bundle/Contents/MacOS/QuickView
    0x9ac9000 - 0x9adafff com.apple.FinalCutPro.Plugins.Relink Media 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Relink Media.bundle/Contents/MacOS/Relink Media
    0x9ae1000 - 0x9ae3fff com.apple.FinalCutPro.Plugins.Text Window 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Text Window.bundle/Contents/MacOS/Text Window
    0x9ae7000 - 0x9b5efff com.apple.FinalCutPro.Plugins.Timeline Editor 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Timeline Editor.bundle/Contents/MacOS/Timeline Editor
    0x9b69000 - 0x9b71fff com.apple.FinalCutPro.Plugins.Transcoder 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Transcoder.bundle/Contents/MacOS/Transcoder
    0x9b76000 - 0x9b88fff com.apple.FinalCutPro.Plugins.Transition Viewer 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Transition Viewer.bundle/Contents/MacOS/Transition Viewer
    0x9b8d000 - 0x9ba3fff com.apple.FinalCutPro.Plugins.Trimming 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Trimming.bundle/Contents/MacOS/Trimming
    0x9ba8000 - 0x9baffff com.apple.FinalCutPro.Plugins.VDUSupport 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/VDUSupport.bundle/Contents/MacOS/VDUSupport
    0x9bb4000 - 0x9bf6fff com.apple.FinalCutPro.Plugins.Vector Accelerator 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/Vector Accelerator.bundle/Contents/MacOS/Vector Accelerator
    0x9bfc000 - 0x9c0efff com.apple.FinalCutPro.Plugins.VideoLog 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/VideoLog.bundle/Contents/MacOS/VideoLog
    0x9c12000 - 0x9c2bfff com.apple.FinalCutPro.Plugins.VoiceOver 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/VoiceOver.bundle/Contents/MacOS/VoiceOver
    0x9c31000 - 0x9c94fff com.apple.FinalCutPro.Plugins.XML Support 6.0.5 /Applications/Final Cut Pro.app/Contents/MacOS/Plugins/XML Support.bundle/Contents/MacOS/XML Support
    0x9f92000 - 0x9fa7fff com.apple.FCP Uncompressed 422.component 1.5 /Library/QuickTime/FCP Uncompressed 422.component/Contents/MacOS/FCP Uncompressed 422
    0x9fac000 - 0x9fdefff com.apple.DVCPROHDCodec 1.4 (231) /Library/QuickTime/DVCPROHDCodec.component/Contents/MacOS/DVCPROHDCodec
    0xa1fc000 - 0xa213fff com.apple.fcp.DVOutputUnit 1.3 /Applications/Final Cut Pro.app/Contents/Resources/DVOutputUnit.bundle/Contents/MacOS/DVOutputUnit
    0xa3c5000 - 0xa3e2fff com.apple.AppleIntermediateCodec 1.2 (145) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0xa3e7000 - 0xa3fbfff com.apple.IMXCodec 1.3.1 (147) /Library/QuickTime/IMXCodec.component/Contents/MacOS/IMXCodec
    0xa510000 - 0xa569fff com.apple.AppleProRes422 1.0.2 (46) /Library/QuickTime/AppleProRes422.component/Contents/MacOS/AppleProRes422
    0xa570000 - 0xa611fff com.apple.AppleHDVCodec 1.4.1 (222) /Library/QuickTime/AppleHDVCodec.component/Contents/MacOS/AppleHDVCodec
    0xa61f000 - 0xa699fff com.apple.applepixletvideo 1.2.16 (1.2d16) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0xa735000 - 0xa73afff com.apple.finalcutpro.dvcprohdfrcplugin 1.2.0 (16) /Applications/Final Cut Pro.app/Contents/PlugIns/DVCPROHD Frame Rate Converter.bundle/Contents/MacOS/DVCPROHD Frame Rate Converter
    0xa809000 - 0xa85cfff com.apple.soundtrackpro.integration 2.0.2 () /Library/Application Support/ProApps/Bundles/Soundtrack Pro Integration.bundle/Contents/MacOS/Soundtrack Pro Integration
    0xa878000 - 0xa8a7fff com.apple.motion.MotionBundle 3.0.2 /Library/Application Support/ProApps/Bundles/Motion.bundle/Contents/MacOS/Motion
    0xabd0000 - 0xabd2fff com.apple.Helium 2.1.2 /System/Library/PrivateFrameworks/Helium.framework/Versions/A/Helium
    0xac5e000 - 0xac6efff com.apple.QuartzComposer.FxPlugWrapper 1.2.3 /Library/Application Support/ProApps/Internal Plug-Ins/ProFX/FxPlugWrapper.plugin/Contents/MacOS/FxPlugWrapper
    0xac78000 - 0xac83fff com.apple.PluginManager 1.7.3 (34) /Library/Frameworks/PluginManager.framework/Versions/B/PluginManager
    0xac8e000 - 0xac9ffff com.apple.fxplugframework 1.2.3 /Library/Frameworks/FxPlug.framework/Versions/A/FxPlug
    0xacb2000 - 0xacbdfff com.apple.QuartzComposer.QCMotionPatch 1.0 /Library/Application Support/ProApps/Internal Plug-Ins/ProFX/QCMotionPatch.plugin/Contents/MacOS/QCMotionPatch
    0xaccd000 - 0xacd2fff com.apple.SmoothCamFxPlug 1.0.1 /Library/Application Support/ProApps/Internal Plug-Ins/FxPlug/SmoothCam.fxplug/Contents/MacOS/SmoothCam
    0xacd9000 - 0xad17fff com.apple.Helium.HeliumRender 1.0.2 /System/Library/PrivateFrameworks/Helium.framework/Frameworks/HeliumRender.fram ework/Versions/A/HeliumRender
    0xadfc000 - 0xadfdfff com.apple.aoa.halplugin 2.5.6 (2.5.6b5) /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
    0xaf05000 - 0xb67efff com.borisfx.TextScrambler ??? (2.1) /Library/Application Support/Final Cut Pro System Support/Plugins/Text Scrambler.bundle/Contents/MacOS/Text Scrambler
    0xc205000 - 0xc318fff com.apple.motion.filters 3.0.2 /Library/Application Support/ProApps/Internal Plug-Ins/FxPlug/Filters.bundle/Contents/MacOS/Filters
    0xc3ae000 - 0xc3affff com.apple.compressor.stomp 3.0.5 /Library/Frameworks/Compressor.framework/Compressor
    0xc605000 - 0xcd7cfff com.borisfx.Title3D ??? (2.1) /Library/Application Support/Final Cut Pro System Support/Plugins/Title 3D.bundle/Contents/MacOS/Title 3D
    0xd7ce000 - 0xdf43fff com.borisfx.TitleCrawl ??? (2.1) /Library/Application Support/Final Cut Pro System Support/Plugins/Title Crawl.bundle/Contents/MacOS/Title Crawl
    0xe994000 - 0xf10dfff com.borisfx.VectorShape ??? (2.1) /Library/Application Support/Final Cut Pro System Support/Plugins/Vector Shape.bundle/Contents/MacOS/Vector Shape
    0xfb69000 - 0xfbe5fff com.apple.DVCPROHDAudio 1.3 /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio
    0xfca7000 - 0xfcb5fff com.apple.motion.Text 3.0.2 /Applications/Motion.app/Contents/PlugIns/Text.ozp/Contents/MacOS/Text
    0xfcbf000 - 0xfcc4fff com.apple.fxmetaplug.ImageUnit 1.2.2 /Library/Application Support/ProApps/Internal Plug-Ins/FxMetaPlug/ImageUnit.fxmetaplug/Contents/MacOS/ImageUnit
    0xfccb000 - 0xfccefff com.apple.Helium.HCache 2.1.2 /System/Library/PrivateFrameworks/Helium.framework/Plug-ins/HCache.bundle/Conte nts/MacOS/HCache
    0xfffb000 - 0xfffdfff com.apple.qmaster.swamp 3.0.5 /Library/Frameworks/Qmaster.framework/Versions/A/Qmaster
    0x10000000 - 0x10062fff com.apple.proapps.AudioMixEngine 2.0 (68) /Applications/Final Cut Pro.app/Contents/Frameworks/AudioMixEngine.framework/Versions/A/AudioMixEngine
    0x200a7000 - 0x200b4fff com.apple.fcp.TundraOutputUnit 1.3 /Applications/Final Cut Pro.app/Contents/Resources/TundraOutputUnit.bundle/Contents/MacOS/TundraOutputU nit
    0x20205000 - 0x2026afff com.apple.DVCPROHDMuxer 1.3 /Library/QuickTime/DVCPROHDMuxer.component/Contents/MacOS/DVCPROHDMuxer
    0x20405000 - 0x20deefff com.apple.ozone.framework 3.0.2 /Applications/Motion.app/Contents/Frameworks/Ozone.framework/Ozone
    0x21831000 - 0x219dbfff com.apple.motion.TextFramework 3.0.2 /Applications/Motion.app/Contents/Frameworks/TextFramework.framework/TextFramew ork
    0x21a80000 - 0x21c00fff com.apple.motion.Behaviors 3.0.2 /Applications/Motion.app/Contents/PlugIns/Behaviors.ozp/Contents/MacOS/Behavior s
    0x21cbd000 - 0x21e34fff com.apple.motion.Particles 3.0.2 /Applications/Motion.app/Contents/PlugIns/Particles.ozp/Contents/MacOS/Particle s
    0x21e9e000 - 0x21ecafff com.apple.mio.DAL.AVC 12.0 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Resource s/AVC.plugin/Contents/MacOS/AVC
    0x21ef5000 - 0x21efcfff com.apple.DesktopVideoOut 1.2.4 /Library/QuickTime/DesktopVideoOut.component/Contents/MacOS/DesktopVideoOut
    0x22059000 - 0x2206afff com.apple.DVCPROHDVideoOutput 1.3 /Library/QuickTime/DVCPROHDVideoOutput.component/Contents/MacOS/DVCPROHDVideoOu tput
    0x22071000 - 0x220aafff com.apple.audio.SoundManager.Components 3.9.1 /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0x220b0000 - 0x220bafff com.apple.IOFWDVComponents 1.7.9 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x220c2000 - 0x220cffff com.apple.IOFireWireAVCLib 1.8.2 /System/Library/Extensions/IOFireWireAVC.kext/Contents/PlugIns/IOFireWireAVCLib .plugin/Contents/MacOS/IOFireWireAVCLib
    0x220e5000 - 0x220fffff com.apple.DVCPROHDVideoDigitizer 1.3 /Library/QuickTime/DVCPROHDVideoDigitizer.component/Contents/MacOS/DVCPROHDVide oDigitizer
    0x22274000 - 0x2228efff com.apple.IOFireWireLib 2.2.5 /System/Library/Extensions/IOFireWireFamily.kext/Contents/PlugIns/IOFireWireLib .plugin/Contents/MacOS/IOFireWireLib
    0x222b4000 - 0x222e6fff com.apple.QuickTimeIIDCDigitizer 7.5.5 (990.7) /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x222f0000 - 0x22335fff com.apple.QuickTimeUSBVDCDigitizer 1.7.5 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x223bd000 - 0x223c1fff com.apple.iokit.IOQTComponents 1.4 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x22452000 - 0x2245efff com.apple.compressor.MediaServerAPI 3.0.5 /Library/Frameworks/MediaServerAPI.framework/MediaServerAPI
    0x2246b000 - 0x2255afff com.apple.AECore 3.0.5 /Library/Frameworks/AECore.framework/Versions/A/AECore
    0x225ef000 - 0x22632fff com.apple.compressor.ImageProcessing 3.0.5 /Library/Frameworks/Compressor.framework/Versions/A/Frameworks/ImageProcessing. framework/Versions/A/ImageProcessing
    0x22668000 - 0x22675fff com.apple.compressor.StompUtil 3.0.5 /Library/Frameworks/Compressor.framework/Versions/A/Frameworks/StompUtil.framew ork/Versions/A/StompUtil
    0x22683000 - 0x2268bfff com.apple.compressor.FilterUI 3.0.5 /Library/Frameworks/Compressor.framework/Versions/A/Frameworks/FilterUI.framewo rk/Versions/A/FilterUI
    0x22692000 - 0x226e0fff com.apple.compressor.StompUI 3.0.5 /Library/Frameworks/Compressor.framework/Versions/A/Frameworks/StompUI.framewor k/Versions/A/StompUI
    0x2270f000 - 0x22756fff com.apple.qmaster.SwampCore 3.0.5 /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampCore.framework /Versions/A/SwampCore
    0x2279a000 - 0x227a6fff com.apple.qmaster.SwampUtil 3.0.5 /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampUtil.framework /Versions/A/SwampUtil
    0x227b4000 - 0x227bffff com.apple.qmaster.SwampService 3.0.5 /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampService.framew ork/Versions/A/SwampService
    0x227cf000 - 0x227e0fff com.apple.qmaster.Status 3.0.5 /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/Status.framework/Ve rsions/A/Status
    0x23008000 - 0x230f3fff com.apple.compressor.StompTypes 3.0.5 /Library/Frameworks/Compressor.framework/Versions/A/Frameworks/StompTypes.frame work/Versions/A/StompTypes
    0x23191000 - 0x232f4fff com.apple.compressor.transcoding 3.0.5 /Library/Frameworks/Compressor.framework/Versions/A/Frameworks/Transcoding.fram ework/Versions/A/Transcoding
    0x23406000 - 0x2344afff com.apple.qmaster.SwampTypes 3.0.5 /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampTypes.framewor k/Versions/A/SwampTypes
    0x23490000 - 0x234defff com.apple.qmaster.do 3.0.5 /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/DistributedObjects. framework/Versions/A/DistributedObjects
    0x23533000 - 0x23540fff com.apple.qmaster.RequestProcessing 3.0.5 /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/RequestProcessing.f ramework/Versions/A/RequestProcessing
    0x23554000 - 0x23568fff com.apple.qmaster.ServiceControl 3.0.5 /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/ServiceControl.fram ework/Versions/A/ServiceControl
    0x23582000 - 0x235cbfff com.apple.qmaster.ContentControl 3.0.5 /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/ContentControl.fram ework/Versions/A/ContentControl
    0x23607000 - 0x236cffff com.apple.qmaster.JobControl 3.0.5 /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/JobControl.framewor k/Versions/A/JobControl
    0x2377d000 - 0x2378bfff com.apple.qmaster.ClusterManager 3.0.5 /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/ClusterManager.fram ework/Versions/A/ClusterManager
    0x2379d000 - 0x237bdfff com.apple.qmaster.SwampUI 3.0.5 /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampUI.framework/V ersions/A/SwampUI
    0x237d9000 - 0x237e6fff com.apple.qmaster.SwampExecutor 3.0.5 /Library/Frameworks/Qmaster.framework/Versions/A/Frameworks/SwampExecutor.frame work/Versions/A/SwampExecutor
    0x36fe5000 - 0x36feafff com.apple.GeForceGA 1.4.18 (4.1.8) /System/Library/Extensions/GeForceGA.plugin/Contents/MacOS/GeForceGA
    0x70000000 - 0x700fdfff com.apple.audio.units.Components 1.4.7 /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8f4f0000 - 0x8f4f5fff com.apple.CoreMediaAuthoringPrivate 1.5 /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x8fe00000 - 0x8fe52fff dyld 46.16 /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9028e000 - 0x90368fff com.apple.CoreFoundation 6.4.11 (368.35) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x903b2000 - 0x90689fff com.apple.CoreServices.CarbonCore 681.18 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90a3c000 - 0x90ac0fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aea000 - 0x90b5cfff com.apple.framework.IOKit 1.4.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b72000 - 0x90b84fff libauto.dylib /usr/lib/libauto.dylib
    0x90ec8000 - 0x90f48fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90fe9000 - 0x91001fff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x910d8000 - 0x91101fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91112000 - 0x91120fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91123000 - 0x912defff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dd000 - 0x913e6fff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ed000 - 0x913f5fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f9000 - 0x91421fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91434000 - 0x9143ffff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91444000 - 0x914bffff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fc000 - 0x914fcfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fe000 - 0x91536fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x915c1000 - 0x915d0fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x915d9000 - 0x915e6fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91630000 - 0x91649fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x91676000 - 0x91707fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91842000 - 0x918a0fff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918cf000 - 0x918f0fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91904000 - 0x91929fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9199a000 - 0x919aefff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91b48000 - 0x91b66fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91c72000 - 0x91c76fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c78000 - 0x91ce2fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91d06000 - 0x91d09fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91e5d000 - 0x91e5dfff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e5f000 - 0x91f44fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f4c000 - 0x91f6bfff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fd7000 - 0x92045fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x92050000 - 0x920e5fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92193000 - 0x92234fff com.apple.QuickTimeImporters.component 7.5.5 (990.7) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x92252000 - 0x9228bfff FWAVCPrivate /System/Library/PrivateFrameworks/FWAVCPrivate.framework/Versions/A/FWAVCPrivat e
    0x922f7000 - 0x92338fff com.apple.CoreMediaIOServicesPrivate 12.0 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x926ba000 - 0x929e5fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a15000 - 0x92b03fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92f27000 - 0x92f45fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f50000 - 0x92faafff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fc8000 - 0x92fc8fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fca000 - 0x92fdefff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92ff6000 - 0x93006fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93012000 - 0x93027fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93039000 - 0x930c0fff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930d4000 - 0x930dffff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93131000 - 0x93140fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9314c000 - 0x931b2fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931e3000 - 0x93232fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93260000 - 0x9327dfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9328f000 - 0x9329cfff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x933da000 - 0x933effff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x93703000 - 0x9370ffff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93714000 - 0x93734fff com.apple.DirectoryService.Framework 3.3 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9374d000 - 0x9377dfff com.apple.MediaKit 8.11 (346.1) /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x93788000 - 0x93788fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93a4e000 - 0x93a6bfff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x93a74000 - 0x93af5fff com.apple.SearchKit 1.0.8 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9414a000 - 0x941bcfff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941f5000 - 0x942bafff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9430d000 - 0x9430dfff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9430f000 - 0x944cffff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94519000 - 0x94556fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9455e000 - 0x945aefff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945b7000 - 0x945d0fff com.apple.CoreVideo 1.4.2 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94669000 - 0x946a1fff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/vmutils
    0x94808000 - 0x94b37fff com.apple.QuickTime 7.5.5 (990.7) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94c1e000 - 0x94c8ffff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94fc8000 - 0x94fd7fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94fdf000 - 0x9500cfff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95013000 - 0x95023fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x95475000 - 0x95475fff com.apple.DiscRecording 3.1.3 (???) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x95477000 - 0x954fafff com.apple.DiscRecordingEngine 3.1.3 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingEngine.framework/Versions/A/DiscRecordingEngine
    0x95527000 - 0x9556dfff com.apple.DiscRecordingContent 3.1.3 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingContent.framework/Versions/A/DiscRecordingContent
    0x9572e000 - 0x95830fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x9588b000 - 0x95952fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x959a1000 - 0x959d0fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x96326000 - 0x963f8fff com.apple.ColorSync 4.4.11 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x96500000 - 0x96542fff com.apple.CFNetwork 129.24 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9657d000 - 0x96625fff com.apple.QTKit 7.5.5 (990.7) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9675a000 - 0x9680bfff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x96b02000 - 0x96caafff com.apple.prokit 4.5 (722) /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x97445000 - 0x97484fff com.apple.audio.midi.CoreMIDI 1.5 (41) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x97870000 - 0x9788ffff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97b40000 - 0x97b86fff com.apple.ImageIO.framework 1.5.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x97ba8000 - 0x97c5ffff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x97e75000 - 0x97e8ffff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x97f0b000 - 0x97f49fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x97f95000 - 0x98056fff libGLProgrammability.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x98081000 - 0x98082fff libGLSystem.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x98084000 - 0x98091fff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9818c000 - 0x981aefff com.apple.AppleVAFramework 2.4.32 /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x9847f000 - 0x98495fff com.apple.audio.CoreAudioKit 1.0 (1.0.0d1) /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x98b97000 - 0x98c68fff com.apple.QuartzComposer 1.2.6 (32.25) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x98ce5000 - 0x98ce5fff com.apple.quartzframework 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x99097000 - 0x991a6fff com.apple.DiskImagesFramework 10.4.11 (115.2) /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x99224000 - 0x99231fff libbz2.1.0.dylib /usr/lib/libbz2.1.0.dylib
    0x99233000 - 0x99276fff com.apple.ISSupport 1.0.3 (16) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x99526000 - 0x9a1a6fff com.apple.QuickTimeComponents.component 7.5.5 (990.7) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9a40b000 - 0x9a40ffff com.apple.QuickTimeH264.component 7.5.5 (990.7) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x9a411000 - 0x9a533fff QuickTimeH264.altivec /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.altivec
    0x9b159000 - 0x9b15afff com.apple.iokit.dvcomponentglue 1.7.9 /System/Library/Frameworks/DVComponentGlue.framework/Versions/A/DVComponentGlue
    0x9b167000 - 0x9b1abfff com.apple.viceroy.codec 31.0 (31) /System/Library/Components/VCH263Codec.component/VCH263Codec
    0x9c926000 - 0x9c947fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x9ddb5000 - 0x9ddf4fff com.apple.QuickTimeFireWireDV.component 7.5.5 (990.7) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x9ddfd000 - 0x9decdfff com.apple.QuickTimeMPEG4.component 7.5.5 (990.7) /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x9deec000 - 0x9df14fff libcurl.3.dylib /usr/lib/libcurl.3.dylib
    0x9df1d000 - 0x9df4ffff com.apple.PDFKit 1.0.4 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x9df67000 - 0x9dfacfff com.apple.bom 8.5.1 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9dfb8000 - 0x9e5ebfff com.apple.AppKit 6.4.10 (824.48) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9e978000 - 0x9eaa8fff com.apple.AddressBook.framework 4.0.6 (490) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x9eb31000 - 0x9ebb9fff com.apple.DesktopServices 1.3.7 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9ebfa000 - 0x9ef08fff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9f058000 - 0x9f086fff com.apple.openscripting 1.2.7 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9f0a0000 - 0x9f628fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9f65b000 - 0x9f69dfff com.apple.LaunchServices 183 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9f6b9000 - 0x9f770fff com.apple.QD 3.10.27 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9f7ad000 - 0x9f7fafff com.apple.CoreText 1.0.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9f825000 - 0x9fbe0fff com.apple.CoreGraphics 1.258.82 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9fc6d000 - 0x9fea0fff com.apple.Foundation 6.4.11 (567.40) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9ffc4000 - 0x9fff1fff com.apple.CoreMediaPrivate 11.0 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    Model: PowerMac11,2, BootROM 5.2.7f1, 2 processors, PowerPC G5 (1.1), 2.3 GHz, 4.5 GB
    Graphics: NVIDIA GeForce 6600, GeForce 6600, PCI, 256 MB
    Memory Module: DIMM0/J6700, 256 MB, DDR2 SDRAM, PC2-4200U-444
    Memory Module: DIMM1/J6800, 256 MB, DDR2 SDRAM, PC2-4200U-444
    Memory Module: DIMM2/J6900, 1 GB, DDR2 SDRAM, PC2-4200U-444
    Memory Module: DIMM3/J7000, 1 GB, DDR2 SDRAM, PC2-4200U-444
    Memory Module: DIMM4/J7100, 1 GB, DDR2 SDRAM, PC2-4200U-444
    Memory Module: DIMM5/J7200, 1 GB, DDR2 SDRAM, PC2-4200U-444
    Network Service: Built-in Ethernet 1, Ethernet, en0
    PCI Card: GeForce 6600, Display, SLOT-1
    PCI Card: bcom5714, network, GIGE
    PCI Card: bcom5714, network, GIGE
    Serial ATA Device: Maxtor 6H500F0, 465.76 GB
    Serial ATA Device: WDC WD3200AAJS-41VWA0, 298.09 GB
    Parallel ATA Device: HL-DT-ST DVD-RW GWA-4165B
    USB Device: Keyboard Hub, Apple, Inc., Up to 480 Mb/sec, 500 mA
    USB Device: Griffin PowerMate, Griffin Technology, Inc., Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Keyboard, Apple, Inc, Up to 1.5 Mb/sec, 100 mA
    USB Device: USB2.0 MFP(Hi-Speed), EPSON, Up to 480 Mb/sec, 500 mA
    USB Device: Hub, Up to 12 Mb/sec, 500 mA
    USB Device: Hub, Up to 12 Mb/sec, 500 mA
    USB Device: iMic USB audio system, Griffin Technology, Inc, Up to 12 Mb/sec, 500 mA
    USB Device: Apple Optical USB Mouse, Primax Electronics, Up to 1.5 Mb/sec, 500 mA
    USB Device: Studio Display, Up to 1.5 Mb/sec, 500 mA
    FireWire Device: PV-GS90, Panasonic, Unknown
    FireWire Device: unknown_device, unknown_value, Up to 400 Mb/sec

    FCP version?
    OSX version?
    QT version?
    x

  • Screen Capture Video Loses Quality When Imported Into iMovie - WHY?

    I am using screen capture software to make a video of my screen at 1024x768. The video is for a tutorial. I want to use iMove to get things like transitions and such into the movie, and to add text and audio. The problem is that, although the video looks great in QuickTime, it loses quality significanly when I import into iMove. The text on the screen is blurry, and the quality of everything else is terrible as well.
    Is this s limitation of iMove? Can screen capture video be imported? Does it only work with DV?
    Also, I tried to convert the file to many other formats, from QuickTime to MPEG-4, so it's not the file type.
    If anyone can help me out, I've be very grateful.
    Thanks!
    iBook G4   Mac OS X (10.4.5)  

    Your dimensions are getting in the way. iMovie converts your 1024X768 to a DV Stream file that is 720X480.
    One workaround would be to set your display resolution smaller. Try 800X600 (if your windows fit that size).
    If you're using Snapz Pro you should set your window capture to 640X480. This size will import nicely into iMovie.
    An even better way would be to do all of the work using QuickTime Pro. Again a 1024X768 QT.mov file would not fit on the most common display settings used. When you add the QT Player window the controller would be below the screen and not accessible for most users.
    800X600 would make a better file (smaller, too). It would still be 4:3 aspect and would also import into iMovie.

  • Webcam Live - Unable to capture Video when "audio" is on

    Unable to capture Video when "audio" is checked.
    Error message "Unable to capture Video - check settings for video compressor and Audio compressor". What are these ??
    I have Plantronics headset and have tried most "8bit, mono settings"
    Capture Video works when audio is not checked.
    Am at latest s/w and driver patch levels.
    HELP !!!

    Addl info
    1) When using Skype, Camera and Mic work fine.
    2) When I get error - the camera view on my screen balcks out

  • No video when trying to capture PAL dv tape w/Sony HVR-V1U camera

    Hello there,
    Im attempting to Log & Capture a DV tape with "DV SP PAL" content from a Sony HVR-V1U camera using an iLink FireWire.
    I have deck control, timecode, and audio but no video. Instead I see bars for video w/the ominous "preview disabled" band. When I attempt "Capture Now," I receive the follwoing message "this operation could not be completed as there is no video." For Easy Setup, Im currently in "Format: PAL; Use: DV-PAL FireWire Basic" (ive other combinations, and again best I can get is deck control but no video).
    The DV PAL tape plays fine in the camera's LCD screen. Also I had no issue capturing HDV NTSC tapes using the same Sony HVR-V1U camera.
    I've checked my settings and the usual obvious stuff but no luck.
    If anyone has any ideas on what Im doing wrong or things I could try it would be much appreciated.
    Many Thanks,
    Sam

    are you sure this camera is fully pal compatible?  Some cameras/decks will play back certain formats but will not output via firewire.  Can you shoot PAL with this camera?  If not, I'd guess you can't use it to capture PAL via firewire.  Might check the camera manual.

  • 5600 - No Sound when trying to capture analog video

    Hi all, hope someone can help me on this one cause i have no clue here...
    I try to capure from my analog camcorder, but I have no sound when connect the  RCA or S-video video cable. The moment i disconnect the video cable the sound come back ....  
    I can capture audio without video or capture video without audio, but not at the same time !
    Any feed back will be greatly appreciated.. thx in advance..

    Well before someone could answer me i found a post here very similar to my problem....
    https://forum-en.msi.com/index.php?threadid=27065&sid=&hilight=faulty+rca
    Decided to test and the guilty was my rca cable...got a knew one and everything is just fine...
    Hope this help someone else someday .. thx u all

Maybe you are looking for

  • Where did my network go?

    I tried to install a wireless laser printer to my wrt54g router and somehow my network just disappeared. The router still works, but the available network just shows up as "linksys". I'm online with it now... I don't mind having to create a new netwo

  • Array permitting duplicate record

    Hi, I have string array like below: String strArr[] = {"style1","style2","style2","style4"}; In this string array index 1 and index 2 is having same value which is style2. My target is to generate key(system time) for each value as below: "key1" : "s

  • How to bind Temporary Queue to Context in FioranoMQ

    I have two JMS clients sending messages to each other via FioranoMQ. And one client creates a temporary queue, for example Temporary Queue auction1Queue = qSession.createTemporaryQueue(); My question is how to bind this auction1Queue to Context? so t

  • Package distribution without content

    Hey Guys, I created some packages in SCCM 2012 R2 (really the old packages no applications). Because this package is just a command line that runs I created the program directly without content. The package was deployed and works fine :) But in "Moni

  • What is Error 1073807346

    Error 1073807346 has occured at property node in a particular vi. The error comment says "The given session or object reference is invalid". How can we solve this problem? iam using Labview ver 6.0