Problems with solving a JMF - JFFMpeg/gstreamer/fobs4java mpeg4 - stream

hi!
im doing a final at univerity, the aim is to enable JMF to play AND stream mp3, mpeg4, aac
im already trying to get more than the basic JMS-stream (h.263) to work, for a couple of days of intensive work. only things i know now, is, that it is a lot more work than i expected first.. tryed it with gstreamer, JFFMpeg, FFMpeg-java, fobs4java, ... only things which worked been local player .. but the JMS in combination with upper named plugins lost even the ability to stream anything...
am i doing something very wrong, does any one know about some solutions which work already? or did same i am doing now?
im wondering if theres some one out there who has a bit more know how or may have a few hints or even some solutions
would be very happy about some help
T
Edited by: T-offline on Jul 8, 2008 5:25 AM

Hi funnyjanni,
May be I am writing this after 4 years.
I am also in the stage when you faced the same problem. You might have found the solution to this.
Please help me on this. I am trying to use jffmpeg to play UDP mutlicast stream.
Thanks
jklanka

Similar Messages

  • Problem with solver DLL load and Excel 2010

    Since upgrading from Office 2007 to Office 2010 we've started to experience a problem with the solver addin when our own analytics addins is also loaded. I have found a solution, but I think it may highlight a problem with the latest version of the solver
    addin for Excel 2010.
    Firstly, to describe the problem - the solver addin seems to load normally when Excel 2010 starts up, however when a "Solve" is performed we are seeing a "File not found: Solver32.dll" error at the final "Keep Solver Solution" stage. This only happens our
    own analytics addin is loaded. We've been careful to make sure that our own addin does not change the working directory and also that it has been built against the correct Excel 2010 SDK libraries. We do not see this error with any other versions of Excel
    running on the same PC or any other environment.
    After some searching we found other people were having similar problems and after a bit more probing I found a solution that works - but that I'm not very happy with.
    If I copy the Solver32.dll from:
      C:\Program Files (x86)\Microsoft Office\Office14\Library\SOLVER
        (where it was installed)
    into :
      C:\Windows\SysWOW64 
        (where Windows 7 keeps its 32 bit system DLLs)
    then the problem goes away.
    This seems to indicate that somehow Office 2010 has a problem that causes it to search in the wrong folder for the Solver32.dll when another addin is loaded in between the original Solver32.XLAM at start up and the use of the Solver in the sheet (which eventually
    requires this DLL to be loaded). Oddly, this only happens after a solution is found and "Keep Solver Solution" is selected - and I'm not sure why it's not looking for Solver32.dll any earlier.
    This is not a problem with any earlier versions of Excel and I suspect is a bug in the Office14/LIBRARY/SOLVER implementation. Is there any way to get this followed up?
    Thanks,
    Andy

    I'm facing the same issue. With an Excel VSTO add-in we're building. When the add-in is enabled the assembly solver32.dll can't be found. With our add-in disabled the DLL is resolved as (Sysinternals Process Monitor trace):
    EXCEL.EXE CreateFile
    C:\Program Files (x86)\Microsoft Office\Office14\Solver32.dll
    EXCEL.EXE CreateFile
    C:\Windows\SysWOW64\Solver32.dll
    EXCEL.EXE CreateFile
    C:\Windows\system\Solver32.dll
    EXCEL.EXE CreateFile
    C:\Windows\Solver32.dll
    EXCEL.EXE CreateFile
    C:\Program Files (x86)\Microsoft Office\Office14\Library\SOLVER\SOLVER32.DLL
    and with our add-in enabled the following locations are tried, but solver32.dll won't be found:
    excel.exe CreateFile
    C:\Program Files (x86)\Microsoft Office\Office14\Solver32.dll
    excel.exe CreateFile
    C:\ArcGIS\______path to our add-in install location_____________\Solver32.dll
    excel.exe CreateFile
    C:\Windows\SysWOW64\Solver32.dll
    excel.exe CreateFile
    C:\Windows\system\Solver32.dll
    excel.exe CreateFile
    C:\Windows\Solver32.dll
    excel.exe CreateFile
    C:\Program Files\Common Files\Microsoft Shared\Windows Live\Solver32.dll
    excel.exe CreateFile
    C:\Program Files (x86)\Common Files\microsoft shared\Windows Live\Solver32.dll
    excel.exe CreateFile
    C:\Windows\SysWOW64\Solver32.dll
    excel.exe CreateFile
    C:\Windows\Solver32.dll
    excel.exe CreateFile
    C:\Windows\SysWOW64\wbem\Solver32.dll
    etc...

  • Problem with source of JMF

    I downloaded the source code of JMF and I put the directories "com", "javax" inside the "src" directory of my project but now I have some problem:
    Enumeration enum = devices.elements();
    and the error message is that is not possible to resolve enumeration, but I haven't message error when I import it.
    Keep in mind that in eclipse I found enum in red bold, it should mean something
    Ciao
    THX
    Marco

    do you want to get the media components?
         // Visual content component to show a video
         private Component visualMedia;
         // Media control component. play, stop and pause
         private Component mediaControl;
         // Main container
         private Container container;
         //*...some code...*
         // obtains the visual controller for the media player
         public void getMediaComponents() {
              // obtains the visual media components,
                    // and returns null if is an audio media type
              visualMedia = player.getVisualComponent();
              // if exists, add the visual component
              if (visualMedia != null)
                   container.add(visualMedia, BorderLayout.CENTER);
              // obtains the GUI
              mediaControl = player.getControlPanelComponent();
              // if exists, add the media visual controller
              if (mediaControl != null)
                   container.add(mediaControl, BorderLayout.SOUTH);
         } // getMediaComponents endEdited by: cassioso on Nov 27, 2007 9:53 AM

  • Problem with RTPExport output video files

    Hi, I have a problem with RTPExport output video files. One side streams H263/RTP(AVTransmit2.java) and other write this steam to a file by RTPExport.java. When network conditions are ideal, output video file has same fps and same number of frames like original file. Problem occures, when theres packet lost in network, then output file has different fps,and also has less frames like original video(because it didnt write missing frames to file, and thats why it get shorter). Pls how can I achieve output file that will have the same fps like original one? How to write to file an identical copy of what I can see while receiveing video with AVReceive2.java? Its there a way to modifi rtpexport or avreceiver to do this? Thanks a lot!

    Trubka wrote:
    When network conditions are ideal, output video file has same fps and same number of frames like original file. Problem occures, when theres packet lost in network, then output file has different fps,and also has less frames like original video(because it didnt write missing frames to file, and thats why it get shorter). Okay, first off, the second file is smaller on purpose. RTP intentionally drops packets that are old/out of order in order to make sure real-time video stays as close to real time as it can. This is by design, so there's really nothing that can be done about it.
    How to write to file an identical copy of what I can see while receiveing video with AVReceive2.java? Technically speaking, what you're getting in the RTPExport is exactly what you got on the receiving end. Any frames that are dropped during transmission will not be seen by the receiver, nor saved by the receiver.
    Pls how can I achieve output file that will have the same fps like original one? I'm not 100% sure that you can, but, you can give the following idea a try. I make no guarentees that it'll work, but it should work for you...
    [http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/solutions/RTPConnector.html]
    That example is an example of a "custom transport layer" for RTP connections. Essentially, it's some code that's handed the RTP packets on the transmission end, and it's expected to deliver those RTP packets on the other end. And it doesn't care about how they get from A to B, only that they do.
    If you were to replace the UDP socket in that example with a TCP socket, you would be guarenteed not to drop packets due to network reasons. Every RTP packet you were handed by the transmitter, you would then hand to the receiver. There is no guarentee that none of the packets would be cast away as "old" by the RTP protocol itself, but there's also no guarentee any of them would be. It's a crap-shoot at best, but it's certainly worth a try.

  • A problem with my macbook pro 17"

    I have problem with my macbook pro 17". I was streaming on youtube. all of sudden my screen become dark, and it show the words: "You need to restart your computer. Hold the power button until it turns off, then press the power button again."
    this is happen several times before. is this mean my laptop is broken? thanks.

    Process:         Safari [219]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         4.0.4 (6531.21.10)
    Build Info:      WebBrowser-65312110~45
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [101]
    Date/Time:       2011-04-17 16:27:43.229 +0800
    OS Version:      Mac OS X 10.6.3 (10D2101a)
    Report Version:  6
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: 0x000000000000000d, 0x0000000000000000
    Crashed Thread:  11
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x00007fff8530075a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff85300dcd mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff86758452 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff867578df CFRunLoopRunSpecific + 575
    4   com.apple.HIToolbox                     0x00007fff803e0ada RunCurrentEventLoopInMode + 333
    5   com.apple.HIToolbox                     0x00007fff803e08df ReceiveNextEventCommon + 310
    6   com.apple.HIToolbox                     0x00007fff803e0798 BlockUntilNextEventMatchingListInMode + 59
    7   com.apple.AppKit                        0x00007fff823e4a4a _DPSNextEvent + 708
    8   com.apple.AppKit                        0x00007fff823e4399 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    9   com.apple.Safari                        0x000000010000b9f4 0x100000000 + 47604
    10  com.apple.AppKit                        0x00007fff823aa06f -[NSApplication run] + 395
    11  com.apple.AppKit                        0x00007fff823a2d8c NSApplicationMain + 364
    12  com.apple.Safari                        0x0000000100001a1c 0x100000000 + 6684
    Thread 1:  JavaScriptCore: FastMalloc scavenger
    0   libSystem.B.dylib                       0x00007fff8533b316 __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8533b1a5 nanosleep + 148
    2   libSystem.B.dylib                       0x00007fff853880a4 sleep + 61
    3   com.apple.JavaScriptCore                0x00007fff816fd110 ***::TCMalloc_PageHeap::scavengerThread() + 96
    4   com.apple.JavaScriptCore                0x00007fff816fd2f9 ***::TCMalloc_PageHeap::runScavengerThread(void*) + 9
    5   libSystem.B.dylib                       0x00007fff853398b6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff85339769 thread_start + 13
    Thread 2:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x00007fff853194ea kevent + 10
    1   libSystem.B.dylib                       0x00007fff8531b3bd _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x00007fff8531b094 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x00007fff8531abbe _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x00007fff8531a4e8 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x00007fff8531a385 start_wqthread + 13
    Thread 3:  WebCore: IconDatabase
    0   libSystem.B.dylib                       0x00007fff8533b316 __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8533f131 _pthread_cond_wait + 1286
    2   com.apple.WebCore                       0x00007fff87125bc9 WebCore::IconDatabase::syncThreadMainLoop() + 249
    3   com.apple.WebCore                       0x00007fff8712192a WebCore::IconDatabase::iconDatabaseSyncThread() + 170
    4   libSystem.B.dylib                       0x00007fff853398b6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff85339769 thread_start + 13
    Thread 4:  Safari: SafeBrowsingManager
    0   libSystem.B.dylib                       0x00007fff8530075a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff85300dcd mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff86758452 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff867578df CFRunLoopRunSpecific + 575
    4   com.apple.Safari                        0x000000010002536b 0x100000000 + 152427
    5   com.apple.Safari                        0x00000001000252fb 0x100000000 + 152315
    6   libSystem.B.dylib                       0x00007fff853398b6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff85339769 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib                       0x00007fff8530075a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff85300dcd mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff86758452 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff867578df CFRunLoopRunSpecific + 575
    4   com.apple.Foundation                    0x00007fff8651a4e3 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    5   com.apple.Foundation                    0x00007fff8649aead __NSThread__main__ + 1429
    6   libSystem.B.dylib                       0x00007fff853398b6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff85339769 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib                       0x00007fff85344286 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x00007fff86779ef2 __CFSocketManager + 818
    2   libSystem.B.dylib                       0x00007fff853398b6 _pthread_start + 331
    3   libSystem.B.dylib                       0x00007fff85339769 thread_start + 13
    Thread 7:  Safari: SnapshotStore
    0   libSystem.B.dylib                       0x00007fff8533b316 __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8533f131 _pthread_cond_wait + 1286
    2   com.apple.JavaScriptCore                0x00007fff815f9180 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3   com.apple.Safari                        0x000000010012127f 0x100000000 + 1184383
    4   com.apple.Safari                        0x000000010004410f 0x100000000 + 278799
    5   com.apple.Safari                        0x0000000100043fab 0x100000000 + 278443
    6   libSystem.B.dylib                       0x00007fff853398b6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff85339769 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib                       0x00007fff8530075a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff85300dcd mach_msg + 59
    2   com.apple.QuartzCore                    0x00007fff81d5b942 CA::Render::Server::server_thread(void*) + 177
    3   com.apple.QuartzCore                    0x00007fff81d5b882 thread_fun + 34
    4   libSystem.B.dylib                       0x00007fff853398b6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff85339769 thread_start + 13
    Thread 9:  WebCore: LocalStorage
    0   libSystem.B.dylib                       0x00007fff8533b316 __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8533f131 _pthread_cond_wait + 1286
    2   com.apple.JavaScriptCore                0x00007fff815f9180 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3   com.apple.WebCore                       0x00007fff8718ba0f WebCore::LocalStorageThread::localStorageThread() + 351
    4   libSystem.B.dylib                       0x00007fff853398b6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff85339769 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib                       0x00007fff853007ba semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x00007fff8533f022 _pthread_cond_wait + 1015
    2   com.apple.CoreVideo                     0x00007fff889ccf56 CVDisplayLink::waitUntil(unsigned long long) + 252
    3   com.apple.CoreVideo                     0x00007fff889cc412 CVDisplayLink::runIOThread() + 644
    4   com.apple.CoreVideo                     0x00007fff889cc153 startIOThread(void*) + 139
    5   libSystem.B.dylib                       0x00007fff853398b6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff85339769 thread_start + 13
    Thread 11 Crashed:
    0   com.apple.CoreFoundation                0x00007fff86785c1e CFRunLoopCopyCurrentMode + 46
    1   com.apple.CoreFoundation                0x00007fff867ba366 _wakeUpRunLoop + 278
    2   com.apple.CoreFoundation                0x00007fff867b9670 _CFStreamSignalEvent + 448
    3   com.apple.CFNetwork                     0x00007fff808a9d57 SocketStream::dispatchSignalFromSocketCallbackUnlocked(SocketStreamSignalHolder *) + 45
    4   com.apple.CFNetwork                     0x00007fff8083f458 SocketStream::socketCallback(__CFSocket*, unsigned long, __CFData const*, void const*) + 224
    5   com.apple.CFNetwork                     0x00007fff8083f342 SocketStream::_SocketCallBack_stream(__CFSocket*, unsigned long, __CFData const*, void const*, void*) + 96
    6   com.apple.CoreFoundation                0x00007fff8678200a __CFSocketDoCallback + 634
    7   com.apple.CoreFoundation                0x00007fff86781b50 __CFSocketPerformV0 + 288
    8   com.apple.CoreFoundation                0x00007fff86759f21 __CFRunLoopDoSources0 + 1361
    9   com.apple.CoreFoundation                0x00007fff86758119 __CFRunLoopRun + 873
    10  com.apple.CoreFoundation                0x00007fff867578df CFRunLoopRunSpecific + 575
    11  com.apple.CoreFoundation                0x00007fff86757666 CFRunLoopRun + 70
    12  com.apple.CoreMedia                     0x00007fff86a20107 FigThreadGlobalNetworkBufferingRunloop + 119
    13  libSystem.B.dylib                       0x00007fff853398b6 _pthread_start + 331
    14  libSystem.B.dylib                       0x00007fff85339769 thread_start + 13
    Thread 12:  com.apple.coremedia.asyncio
    0   libSystem.B.dylib                       0x00007fff8533b316 __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8533f131 _pthread_cond_wait + 1286
    2   com.apple.CoreMedia                     0x00007fff86a215a5 WaitOnCondition + 14
    3   com.apple.CoreMedia                     0x00007fff86a21771 FigSemaphoreWaitRelative + 167
    4   com.apple.MediaToolbox                  0x00007fff83c6eaf1 FigAIORequestThread + 398
    5   com.apple.CoreMedia                     0x00007fff86a225ad figThreadMain + 253
    6   libSystem.B.dylib                       0x00007fff853398b6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff85339769 thread_start + 13
    Thread 13:
    0   libSystem.B.dylib                       0x00007fff8530075a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff85300dcd mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff86758452 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff867578df CFRunLoopRunSpecific + 575
    4   ....audio.toolbox.AudioToolbox          0x00007fff84123fd2 GenericRunLoopThread::RunLoop() + 42
    5   ....audio.toolbox.AudioToolbox          0x00007fff84124348 GenericRunLoopThread::Run() + 140
    6   ....audio.toolbox.AudioToolbox          0x00007fff840ef7a3 CAPThread::Entry(CAPThread*) + 67
    7   libSystem.B.dylib                       0x00007fff853398b6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff85339769 thread_start + 13
    Thread 14:  com.apple.coremedia.audioqueue.source
    0   libSystem.B.dylib                       0x00007fff8533b316 __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8533f131 _pthread_cond_wait + 1286
    2   com.apple.CoreMedia                     0x00007fff86a215a5 WaitOnCondition + 14
    3   com.apple.CoreMedia                     0x00007fff86a21771 FigSemaphoreWaitRelative + 167
    4   com.apple.MediaToolbox                  0x00007fff83c81924 faq_EnqueueSourceDataThread + 28
    5   com.apple.CoreMedia                     0x00007fff86a225ad figThreadMain + 253
    6   libSystem.B.dylib                       0x00007fff853398b6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff85339769 thread_start + 13
    Thread 15:  com.apple.coremedia.audiomentor
    0   libSystem.B.dylib                       0x00007fff8533b316 __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8533f131 _pthread_cond_wait + 1286
    2   com.apple.CoreMedia                     0x00007fff86a215a5 WaitOnCondition + 14
    3   com.apple.CoreMedia                     0x00007fff86a21771 FigSemaphoreWaitRelative + 167
    4   com.apple.MediaToolbox                  0x00007fff83cbb5fe audioMentorThread + 7041
    5   com.apple.CoreMedia                     0x00007fff86a225ad figThreadMain + 253
    6   libSystem.B.dylib                       0x00007fff853398b6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff85339769 thread_start + 13
    Thread 16:
    0   libSystem.B.dylib                       0x00007fff8531a30a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff8531a71c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff8531a385 start_wqthread + 13
    Thread 17:
    0   libSystem.B.dylib                       0x00007fff8531a30a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff8531a71c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff8531a385 start_wqthread + 13
    Thread 18:  com.apple.coremedia.audioqueue.source
    0   libSystem.B.dylib                       0x00007fff8533b316 __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8533f131 _pthread_cond_wait + 1286
    2   com.apple.CoreMedia                     0x00007fff86a215a5 WaitOnCondition + 14
    3   com.apple.CoreMedia                     0x00007fff86a21771 FigSemaphoreWaitRelative + 167
    4   com.apple.MediaToolbox                  0x00007fff83c81924 faq_EnqueueSourceDataThread + 28
    5   com.apple.CoreMedia                     0x00007fff86a225ad figThreadMain + 253
    6   libSystem.B.dylib                       0x00007fff853398b6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff85339769 thread_start + 13
    Thread 19:  com.apple.coremedia.audiomentor
    0   libSystem.B.dylib                       0x00007fff8533b316 __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8533f131 _pthread_cond_wait + 1286
    2   com.apple.CoreMedia                     0x00007fff86a215a5 WaitOnCondition + 14
    3   com.apple.CoreMedia                     0x00007fff86a21771 FigSemaphoreWaitRelative + 167
    4   com.apple.MediaToolbox                  0x00007fff83cbb5fe audioMentorThread + 7041
    5   com.apple.CoreMedia                     0x00007fff86a225ad figThreadMain + 253
    6   libSystem.B.dylib                       0x00007fff853398b6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff85339769 thread_start + 13
    Thread 20:  Safari: SpinningProgressIndicator
    0   libSystem.B.dylib                       0x00007fff8530075a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff85300dcd mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff86758452 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff867578df CFRunLoopRunSpecific + 575
    4   com.apple.Foundation                    0x00007fff864d5a38 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 270
    5   com.apple.Foundation                    0x00007fff864d5917 -[NSRunLoop(NSRunLoop) run] + 77
    6   com.apple.Safari                        0x0000000100035491 0x100000000 + 218257
    7   com.apple.Foundation                    0x00007fff8649aead __NSThread__main__ + 1429
    8   libSystem.B.dylib                       0x00007fff853398b6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff85339769 thread_start + 13
    Thread 21:
    0   libSystem.B.dylib                       0x00007fff8533b316 __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8533f131 _pthread_cond_wait + 1286
    2   com.apple.CoreMedia                     0x00007fff86a215a5 WaitOnCondition + 14
    3   com.apple.CoreMedia                     0x00007fff86a21771 FigSemaphoreWaitRelative + 167
    4   com.apple.QTKit                         0x00007fff8881c2ef +[QTMovie_FigMedia validationAttibutesForURL:fileTypes:error:] + 219
    5   com.apple.QTKit                         0x00007fff88819aa9 +[QTMovie mediaHelperClassForAttributes:error:additionalAttributes:] + 571
    6   com.apple.QTKit                         0x00007fff8881a101 -[QTMovie_AsyncLoadHelper _loadMediaHelperOnBackgroundThreadWithAttributes:] + 333
    7   com.apple.Foundation                    0x00007fff8649aead __NSThread__main__ + 1429
    8   libSystem.B.dylib                       0x00007fff853398b6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff85339769 thread_start + 13
    Thread 22:  com.apple.coremedia.mediavalidator
    0   com.apple.CoreFoundation                0x00007fff86717644 _CFRelease + 68
    1   com.apple.CoreFoundation                0x00007fff8675c02d CFRunLoopSourceInvalidate + 365
    2   com.apple.CoreFoundation                0x00007fff8675be91 __CFRunLoopSourceDeallocate + 17
    3   com.apple.CoreFoundation                0x00007fff867176b3 _CFRelease + 179
    4   com.apple.CoreFoundation                0x00007fff8673a6df _CFStreamClose + 79
    5   com.apple.MediaToolbox                  0x00007fff83ce4262 figCFHTTPCloseStream + 100
    6   com.apple.MediaToolbox                  0x00007fff83ce4e8a ReadRequestDestroy + 208
    7   com.apple.MediaToolbox                  0x00007fff83ce4fa4 FigCFHTTPFinishReadRequest + 261
    8   com.apple.MediaToolbox                  0x00007fff83ce5e59 FigCFHTTPCancel + 184
    9   com.apple.MediaToolbox                  0x00007fff83c716b7 crabsCancelRead + 94
    10  com.apple.MediaToolbox                  0x00007fff83c71d22 crabsMoveFirehose + 45
    11  com.apple.MediaToolbox                  0x00007fff83c737fc readOrRef + 1461
    12  com.apple.MediaToolbox                  0x00007fff83c74322 FigCRABSRead + 28
    13  com.apple.CoreMedia                     0x00007fff86a34453 ReadAtomHeader + 92
    14  com.apple.CoreMedia                     0x00007fff86a347da FigAtomStreamAdvanceToNextAtomWithType + 139
    15  com.apple.CoreMedia                     0x00007fff86a353cf FigAtomStreamPositionViaAtomPath + 47
    16  com.apple.CoreMedia                     0x00007fff86a3540b FigAtomStreamPositionViaAtomPath + 107
    17  com.apple.MediaToolbox                  0x00007fff83c690cb IsReferenceMovie + 151
    18  com.apple.MediaToolbox                  0x00007fff83d559e4 mv_thread + 699
    19  com.apple.CoreMedia                     0x00007fff86a225ad figThreadMain + 253
    20  libSystem.B.dylib                       0x00007fff853398b6 _pthread_start + 331
    21  libSystem.B.dylib                       0x00007fff85339769 thread_start + 13
    Thread 23:
    0   libSystem.B.dylib                       0x00007fff8531a30a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff8531a71c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff8531a385 start_wqthread + 13
    Thread 24:
    0   libSystem.B.dylib                       0x00007fff8531a30a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff8531a71c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff8531a385 start_wqthread + 13
    Thread 11 crashed with X86 Thread State (64-bit):
      rax: 0x00007fff70cd7444  rbx: 0x0005000104dab860  rcx: 0x00007fff70c3a178  rdx: 0x000000012e92c6a0
      rdi: 0x0005000104dab860  rsi: 0x0000000000000002  rbp: 0x000000010a875200  rsp: 0x000000010a8751d0
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x00007fff868333a0  r11: 0x00007fff868333da
      r12: 0x0005000104dab870  r13: 0x000000011c934e70  r14: 0x0000000000000002  r15: 0x0000000000000004
      rip: 0x00007fff86785c1e  rfl: 0x0000000000010246  cr2: 0x000000010c3e6000
    Binary Images:
           0x100000000 -        0x10024ffef  com.apple.Safari 4.0.4 (6531.21.10) <63599A2E-9923-84BA-B0C8-5A7C04F92137> /Applications/Safari.app/Contents/MacOS/Safari
           0x104179000 -        0x10417afff  ATSHI.dylib ??? (???) <054AC6AB-70DD-C7E1-80F6-9607B7F1C5D7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
           0x104360000 -        0x104364ff7  libFontRegistryUI.dylib ??? (???) <ED58537C-9208-9B25-5C59-AAEDE230E7AE> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
           0x10448d000 -        0x104491fff  com.apple.audio.AudioIPCPlugIn 1.1.2 (1.1.2) <9D15347A-2057-88DA-F0BF-FEAC73B9CE79> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
           0x104686000 -        0x10468cfff  com.apple.audio.AppleHDAHALPlugIn 1.8.4 (1.8.4fc3) <1F642AF7-6633-2737-19C6-51F1FAB10A6C> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x1046d4000 -        0x1046f8ff7  libPDFRIP.A.dylib 543.34.0 (compatibility 64.0.0) <9D78BFF7-C9BB-4958-653F-802251F7AC6A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
           0x10ea30000 -        0x10eafbfe7  com.apple.audio.units.Components 1.6.1 (1.6.1) <073419D1-E008-E51C-1328-D3A3325D4F4A> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
           0x110185000 -        0x1103a8fff  com.apple.audio.codecs.Components 2.0.1 (2.0.1) <6DA1101A-DE4D-6EC9-8B3E-499F5FAE1FAE> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
           0x1163d8000 -        0x1163d8fff  com.apple.JavaPluginCocoa 13.1.0 (13.1.0) <481A3D00-E36A-DF89-8FD1-683F81FCF0E8> /System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/JavaPluginCoco a.bundle/Contents/MacOS/JavaPluginCocoa
           0x119aa0000 -        0x119aa8ff7  com.apple.JavaVM 13.1.0 (13.1.0) <AB562F6D-7D29-20CE-F910-F2A82DADBA35> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
           0x119e6a000 -        0x119ff7fe7  GLEngine ??? (???) <A55922C2-4862-3372-C5BE-6BDBEC6C90EE> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x11a028000 -        0x11a44aff7  libclh.dylib 3.1.1 C  (3.1.1) <BEE14FF6-CA85-4418-B79B-AC30461305CC> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
           0x11a478000 -        0x11b32ffe7  com.apple.driver.AppleIntelHDGraphicsGLDriver 1.6.14 (6.1.4) <84E120E1-B5CA-D73A-D24C-FE53AB8AE7A9> /System/Library/Extensions/AppleIntelHDGraphicsGLDriver.bundle/Contents/MacOS/A ppleIntelHDGraphicsGLDriver
           0x11bad3000 -        0x11baf9fe7  GLRendererFloat ??? (???) <352FC221-C3DB-283A-4A47-8D2EA8D8F0E8> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x11f6ea000 -        0x11f7fafef  libmecab.1.0.0.dylib 2.0.0 (compatibility 2.0.0) <E321EA43-4F4C-6561-3E87-4081904D53F3> /usr/lib/libmecab.1.0.0.dylib
           0x200000000 -        0x2006c3fe7  com.apple.GeForceGLDriver 1.6.14 (6.1.4) <2E27C41E-F5C1-FC48-4455-173F13270AC6> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
        0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <9B995E17-37AC-B849-C124-E97BE32B778A> /usr/lib/dyld
        0x7fff80003000 -     0x7fff80288fef  com.apple.security 6.1.1 (37594) <BC09FE8A-6325-494B-C9F1-DAE768F58DC6> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff80295000 -     0x7fff8032ffff  com.apple.ApplicationServices.ATS 4.1 (???) <429E24CD-7897-630F-26C1-533DDEF186DD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff80330000 -     0x7fff80368ff7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <9AD9F3ED-1C29-8B41-079F-80426FA85CEC> /usr/lib/libssl.0.9.8.dylib
        0x7fff80369000 -     0x7fff803a2ff7  com.apple.MeshKit 1.1 (49.2) <2860E92F-5B68-E8DD-0E8F-BF3DD6ACF330> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
        0x7fff803b0000 -     0x7fff803b1ff7  com.apple.TrustEvaluationAgent 1.1 (1) <306FD9EE-A301-41D5-EBDE-2FC52F28229C> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff803b2000 -     0x7fff806b0fef  com.apple.HIToolbox 1.6.2 (???) <3A6CD66E-A65D-9DC2-0FEF-32D31CBEF3DD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff806b1000 -     0x7fff806b7ff7  IOSurface ??? (???) <6D342A80-7C22-E633-67A5-FA51DAA601E4> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff806b8000 -     0x7fff806cefef  libbsm.0.dylib ??? (???) <83676D2E-23CD-45CD-BE5C-35FCFFBBBDBB> /usr/lib/libbsm.0.dylib
        0x7fff806cf000 -     0x7fff807defe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <5C73FE56-9A92-15B8-CA89-08E25A418DA7> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff807ed000 -     0x7fff807fefff  com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-F6EB13A4ADF9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
        0x7fff807ff000 -     0x7fff8082eff7  com.apple.quartzfilters 1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8082f000 -     0x7fff80835fff  libCGXCoreImage.A.dylib 543.34.0 (compatibility 64.0.0) <B79AD788-40A4-51A1-DF9A-AFDBD33F30BD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff80836000 -     0x7fff80906fff  com.apple.CFNetwork 454.9.4 (454.9.4) <434E179F-C058-4B58-E8B2-058DDC5DC6B1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff80907000 -     0x7fff80956ff7  com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <17EFD646-6F53-36E9-56BF-5A339E83EFFC> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
        0x7fff80957000 -     0x7fff8098cff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <FBDDC46F-0B24-7F81-EBE6-9CF093CA4C8B> /usr/lib/libcups.2.dylib
        0x7fff8098f000 -     0x7fff809a4ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <0EE4B175-27DF-A2F7-366C-A9CC2814A93D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff809a5000 -     0x7fff809e0fff  com.apple.AE 496.4 (496.4) <64C27EC8-FC7F-EA6B-9435-9A3452425915> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff809e1000 -     0x7fff80a49fff  com.apple.AppleVAFramework 4.8.12 (4.8.12) <075768D2-1992-7513-F8C8-94348018DA4A> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff80a4a000 -     0x7fff80a8ffff  com.apple.CoreMediaIOServices 130.0 (1035) <D9B2D333-380A-35B9-43B9-D723CFB7BC75> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
        0x7fff80aa6000 -     0x7fff80accfe7  libJPEG.dylib ??? (???) <440FA813-F1E2-FCC3-BE63-500A45F972BE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff80acd000 -     0x7fff80ad8ff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <60484D84-BA63-13DD-50E9-ABDA402C3C45> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff80ad9000 -     0x7fff80c17ff7  com.apple.WebKit 6531.21 (6531.21.11) <72976D1F-2FA7-15E1-3502-2DB2E52516A1> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff80e17000 -     0x7fff80ecdfff  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <B1F5CDC0-96BD-C7C0-BEAA-1E2259DDE067> /usr/lib/libobjc.A.dylib
        0x7fff80ece000 -     0x7fff80ed5fff  com.apple.OpenDirectory 10.6 (10.6) <72A65D76-7831-D31E-F1B3-9E48BF26A98B> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff80ed6000 -     0x7fff80ed7ff7  com.apple.audio.units.AudioUnit 1.6.3 (1.6.3) <5264A680-010D-4DD6-911E-04AD0DA3D0B4> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff80ee0000 -     0x7fff80f9dff7  com.apple.CoreServices.OSServices 357 (357) <0DD3B712-16C1-09EF-5894-D403A33BDB73> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff80f9e000 -     0x7fff81053fe7  com.apple.ColorSync 4.6.3 (4.6.3) <0522B33D-F78A-9A46-1CB2-9073E4F8EFD8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff81054000 -     0x7fff8107fff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
        0x7fff81088000 -     0x7fff810cffef  com.apple.QuickLookFramework 2.2 (327.4) <CFEB2FC2-BB80-C589-85B1-D01220A9F0D7> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff810d0000 -     0x7fff810f8fff  com.apple.DictionaryServices 1.1.1 (1.1.1) <403E9BF2-EC47-1D32-E4B1-3D624AAA5BBD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff810f9000 -     0x7fff81334fef  com.apple.imageKit 2.0.3 (1.0) <8C892913-3AD6-27DE-BD2C-12EB13760318> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff81335000 -     0x7fff81473fff  com.apple.CoreData 102.1 (251) <782F29CA-ACC7-4A77-5772-52FBE2CEFB5E> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff81474000 -     0x7fff814e0fe7  com.apple.CorePDF 1.1 (1.1) <51ED67DB-7D98-1C33-3DE0-2DA270F7CF8B> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff814e1000 -     0x7fff81549fff  com.apple.MeshKitRuntime 1.1 (49.2) <C57FDCEE-CED0-06A8-2890-A3F6BB851998> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
        0x7fff8154a000 -     0x7fff8159ffef  com.apple.framework.familycontrols 2.0.1 (2010) <5494ABA6-0E9F-4CA2-120C-DBC240CC7FCF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff815a0000 -     0x7fff815afff7  com.apple.opengl 1.6.7 (1.6.7) <4BF5C593-3666-16B2-86FF-B0C27ED28BFD> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff815b0000 -     0x7fff815b0ff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff815f0000 -     0x7fff81775fef  com.apple.JavaScriptCore 6531.21 (6531.21.9) <BCAC5C34-4AF5-ED99-A344-6EE5FA2EF7CA> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff818e0000 -     0x7fff81999fff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <5A15E12A-AE8F-1A36-BBC7-564E7D7AD0FB> /usr/lib/libsqlite3.dylib
        0x7fff8199a000 -     0x7fff81ccdfef  com.apple.CoreServices.CarbonCore 861.6 (861.6) <80DFB173-E3FB-E232-CEDE-77AE5B3EACA2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff81d09000 -     0x7fff820a1fe7  com.apple.QuartzCore 1.6.1 (227.18) <73B865F9-157B-F864-7214-A1FBDFD22A8A> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff820a2000 -     0x7fff82121fff  com.apple.audio.CoreAudio 3.2.2 (3.2.2) <0FBE15EE-AF44-ECEF-9862-A96A193F5AD2> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8219e000 -     0x7fff82284fe7  com.apple.DesktopServices 1.5.5 (1.5.5) <BB62B39C-4FB4-5AA4-4D5D-2BE07C216BE9> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff82321000 -     0x7fff82335fff  libGL.dylib ??? (???) <A85982AB-6395-DE2B-2023-F735093E663D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff82336000 -     0x7fff8237fff7  com.apple.securityinterface 4.0.1 (37214) <C22EEFC8-92E8-EC11-B967-FD790D39F9AB> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff823a1000 -     0x7fff82d96fe7  com.apple.AppKit 6.6.5 (1038.29) <8938E4FE-E661-ABC6-097F-00E258F8345B> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff82ebd000 -     0x7fff82fd4fef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <7DC5239F-CD6A-820C-7C66-C528D7E27649> /usr/lib/libxml2.2.dylib
        0x7fff82fd5000 -     0x7fff82ff8fff  com.apple.opencl 12.1 (12.1) <81E2DFC2-2C00-AA3D-55F7-A34721213516> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff83131000 -     0x7fff83180fef  libTIFF.dylib ??? (???) <87349890-8ACA-C2FD-D8A7-1617A27D88BF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff83181000 -     0x7fff831b2fef  libTrueTypeScaler.dylib ??? (???) <08F2F4B0-5668-141F-F041-70C2DD0C0442> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff831b3000 -     0x7fff833f5fe7  com.apple.AddressBook.framework 5.0.1 (868) <109B6E99-FCC9-00DC-058E-8B0B4B967B80> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff833f6000 -     0x7fff838fffe7  com.apple.VideoToolbox 0.484.5 (484.5) <31D9235B-3D7D-92F4-9B90-0BB2E1CEBF11> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff83900000 -     0x7fff8396afe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <7D8B6D68-7E70-2AF2-BF9F-2CD56145909C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff839ca000 -     0x7fff83a79fff  edu.mit.Kerberos 6.5.9 (6.5.9) <1511C86A-9739-CD0C-B25F-004F2CAE7638> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff83a7a000 -     0x7fff83c34fff  com.apple.ImageIO.framework 3.0.2 (3.0.1) <EB87E6F6-74CA-48E2-FB31-B866C879D538> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff83c35000 -     0x7fff83c38ff7  libCoreVMClient.dylib ??? (???) <F00F6772-08DB-03EE-1E12-9CF60CE69D8C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff83c39000 -     0x7fff83c3afff  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
        0x7fff83c3b000 -     0x7fff83c3cfff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff83c3d000 -     0x7fff83c5bfff  libPng.dylib ??? (???) <B7CA0853-6A58-7D98-8288-789C2D3EBACC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff83c5c000 -     0x7fff83dccfef  com.apple.MediaToolbox 0.484.5 (484.5) <9A934786-851D-390E-0E78-B92044029995> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff83e09000 -     0x7fff83e86fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff83ec8000 -     0x7fff83f0fff7  com.apple.coreui 2 (114) <BB09E685-1F5D-0676-1A0E-295610B387A8> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff83f10000 -     0x7fff83f10ff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff83f11000 -     0x7fff83f16ff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff83f17000 -     0x7fff83f25ff7  libkxld.dylib ??? (???) <5D1D0B3A-2BA3-79DD-DC2E-A2CEEAE4AA3B> /usr/lib/system/libkxld.dylib
        0x7fff83f26000 -     0x7fff83f26ff7  com.apple.vecLib 3.6 (vecLib 3.6) <08D3D45D-908B-B86A-00BA-0F978D2702A7> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff83f27000 -     0x7fff83fe7fff  libFontParser.dylib ??? (???) <419A0563-76B7-5D76-8573-E86F24474F74> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff83fe8000 -     0x7fff83ffafe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff83ffb000 -     0x7fff8407dfff  com.apple.QuickLookUIFramework 2.2 (327.4) <18A5C284-8ED5-7061-5D8C-F91D74130AF8> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff8407e000 -     0x7fff84099ff7  com.apple.openscripting 1.3.1 (???) <5A6ECC32-04D0-9A62-635D-1DD03EC6E190> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8409a000 -     0x7fff8409dfff  com.apple.help 1.3.1 (41) <E311A81E-9870-A430-1E16-AFF6C92CE6E5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8409e000 -     0x7fff841c3fef  com.apple.audio.toolbox.AudioToolbox 1.6.3 (1.6.3) <4931DCF6-072F-A4FA-0989-4C4B83BDF98A> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff841c4000 -     0x7fff84205fef  com.apple.QD 3.35 (???) <022EDBCA-DE3A-6410-F263-2FC7DA8FAC88> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff84206000 -     0x7fff84243fff  com.apple.LDAPFramework 2.0 (120.1) <1683330C-2908-9A45-AFF1-2282792C2570> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff84244000 -     0x7fff842c2fff  com.apple.CoreText 3.1.0 (???) <2D2DECAA-05C4-C4D0-1233-FB682569FFB8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff8461f000 -     0x7fff846aefff  com.apple.PDFKit 2.5.1 (2.5.1) <927B9F90-3EBE-768E-8B18-BE43B4B58190> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff846af000 -     0x7fff84dac037  com.apple.CoreGraphics 1.543.34 (???) <31C0EC15-C448-2387-E84B-E943758A2BA3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff84dec000 -     0x7fff84ea1fe7  com.apple.ink.framework 1.3.3 (107) <D76C7591-B060-E2DE-6634-968FDABD87EF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff84ea2000 -     0x7fff84facff7  com.apple.MeshKitIO 1.1 (49.2) <B9E2EB6C-66F6-CFAD-4530-DDA4355D7FBA> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
        0x7fff84fad000 -     0x7fff84fb1ff7  libCGXType.A.dylib 543.34.0 (compatibility 64.0.0) <E3EC6546-EA24-FEA2-7EE0-BA9A880E0D98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff84fb2000 -     0x7fff84fb2ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <2BB7D669-4B40-6A52-ADBD-DA4DB3BC0B1B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff84fb3000 -     0x7fff85196fef  libType1Scaler.dylib ??? (???) <B3017480-9F1B-F2C6-AE9A-00F235D3C8B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
        0x7fff85197000 -     0x7fff851e0fef  libGLU.dylib ??? (???) <8E418680-E31D-C85B-F4A4-DDE013E7F367> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff851e1000 -     0x7fff8521eff7  libFontRegistry.dylib ??? (???) <DD501984-1941-4112-7063-8F52BC336DE9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8521f000 -     0x7fff85224fff  libGFXShared.dylib ??? (???) <B2682015-C7B4-AF4D-48FD-D3AC175062C0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff85292000 -     0x7fff8529dfff  com.apple.CrashReporterSupport 10.6.3 (250) <ACCC4AB2-384D-F884-4C4E-7FEB411C2025> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff852d3000 -     0x7fff852fefef  MetadataLib.dylib 2.3.2 (compatibility 2.2.1) <2B47FF57-B332-7190-8C1C-915566EC685F> /System/Library/CoreServices/RawCamera.bundle/Contents/Resources/MetadataLib.dy lib
        0x7fff852ff000 -     0x7fff854beff7  libSystem.B.dylib 125.0.1 (compatibility 1.0.0) <D8F3BC70-08DE-8D03-2930-2ACC3F05F5ED> /usr/lib/libSystem.B.dylib
        0x7fff854bf000 -     0x7fff854c4fff  libGIF.dylib ??? (???) <FBCF8D99-52D0-E743-C01A-528CDE05C399> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff85626000 -     0x7fff85626ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <DA9BFF01-40DF-EBD5-ABB7-787DAF2D77CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff85636000 -     0x7fff85754ff7  com.apple.PubSub 1.0.4 (65.11) <C1D56F85-7553-FB97-2A31-35CEB2BB8B63> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
        0x7fff85771000 -     0x7fff857eefef  com.apple.backup.framework 1.2.2 (1.2.2) <6A7BCE87-A2EF-1BA0-C190-214DE8FE6771> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff858b4000 -     0x7fff8597ffe7  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <4CFE358A-A98F-D810-00D8-78A02E4E2578> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
        0x7fff85a36000 -     0x7fff85b10ff7  com.apple.vImage 4.0 (4.0) <354F34BF-B221-A3C9-2CA7-9BE5E14AD5AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff85b51000 -     0x7fff85b51ff7  com.apple.CoreServices 44 (44) <210A4C56-BECB-E3E4-B6EE-7EC53E02265D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff85b52000 -     0x7fff85c4aff7  libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <E0683DF0-8180-58A2-BA49-511111D4F36E> /usr/lib/libiconv.2.dylib
        0x7fff85c4b000 -     0x7fff85c4eff7  com.apple.securityhi 4.0 (36638) <A78CE7A6-03D5-131B-2B58-ED1FCC2AEAC8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff85c4f000 -     0x7fff85e0dfff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <8FD6F415-48EE-99A1-6B30-EE49D2ACC1E7> /usr/lib/libicucore.A.dylib
        0x7fff85e0e000 -     0x7fff85e3ffff  libGLImage.dylib ??? (???) <B8F8BB6F-7E97-54F0-B1AA-0C7495C27EAE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff85e40000 -     0x7fff86284fef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <E14EC4C6-B055-A4AC-B971-42AB644E4A7C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff86285000 -     0x7fff86294fff  com.apple.NetFS 3.2.1 (3.2.1) <3FC302C9-A5C6-A9CA-08CE-435AD05499F1> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff862b0000 -     0x7fff862b4ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff862d9000 -     0x7fff86354fff  com.apple.ISSupport 1.9.3 (51) <BE4B548C-F9C4-2464-12A6-F94A21D569C6> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff86355000 -     0x7fff86398fff  libtidy.A.dylib ??? (???) <8AF4DB3A-7BDB-7AF7-0E9C-413BBBD0E380> /usr/lib/libtidy.A.dylib
        0x7fff863e4000 -     0x7fff86405fff  libresolv.9.dylib 40.0.0 (compatibility 1.0.0) <E34F3FC9-8CB3-2AB5-877E-D3D36273AF60> /usr/lib/libresolv.9.dylib
        0x7fff86406000 -     0x7fff86464ff7  com.apple.framework.IOKit 2.0 (???) <701CEEF0-953F-81FA-B983-708ADDE30543> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8647e000 -     0x7fff86489ff7  com.apple.HelpData 2.0.4 (34) <0DA6CA96-4E7D-7B22-7E37-218AF084C493> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
        0x7fff8648a000 -     0x7fff8670bfe7  com.apple.Foundation 6.6.2 (751.21) <83E7623F-159A-EA50-44B9-B59FBD36A393> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8670c000 -     0x7fff86881fef  com.apple.CoreFoundation 6.6.1 (550.19) <D119AB06-B148-8FE2-3137-7BF50A29F084> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff86882000 -     0x7fff8689bfff  com.apple.CFOpenDirectory 10.6 (10.6) <0F46E102-8B8E-0995-BA85-3D9608F0A30C> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8689c000 -     0x7fff868e8fff  libauto.dylib ??? (???) <205CE82B-3DE0-4A9D-CEB9-F6A3DDA22ED4> /usr/lib/libauto.dylib
        0x7fff868e9000 -     0x7fff868fafff  SyndicationUI ??? (???) <6B116A70-EA2D-1A61-2C27-35B1CFDFBBD6> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
        0x7fff8695c000 -     0x7fff86969fe7  libCSync.A.dylib 543.34.0 (compatibility 64.0.0) <C389970F-FCD6-76A2-87D9-A8CFC1DD3EDE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff8696a000 -     0x7fff869b2ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <170DE04F-89AB-E295-0880-D69CAFBD7979> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff869b3000 -     0x7fff86a04fe7  com.apple.HIServices 1.8.0 (???) <A16322D3-8EEC-9928-4730-8916C21D8187> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff86a05000 -     0x7fff86a47fef  com.apple.CoreMedia 0.484.5 (484.5) <884505D7-8A7C-181F-7944-B40CB321A882> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff86a48000 -     0x7fff86a5efff  com.apple.ImageCapture 6.0 (6.0) <BF702F65-8E30-E318-1B58-AE6C0D5E5715> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff86a5f000 -     0x7fff86a5fff7  com.apple.Carbon 150 (152) <CD519A75-306B-D53E-746A-14850E92390A> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff86a60000 -     0x7fff86ae5fff  com.apple.print.framework.PrintCore 6.2 (312.5) <28C44275-6DF8-23CB-4E7A-97E128F5A390> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff86ae6000 -     0x7fff86bfffef  libGLProgrammability.dylib ??? (???) <69D69589-B572-20A5-7C74-EDE0A1B9A845> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff86ca2000 -     0x7fff86d04fe7  com.apple.datadetectorscore 2.0 (80.7) <5F0F865C-A80F-FE7F-7DF8-894A4A99EACA> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff86d54000 -     0x7fff86d84fef  com.apple.shortcut 1.1 (1.1) <A99C9D8E-290B-B1E4-FEA5-CC5F2FB9C18D> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
        0x7fff86d85000 -     0x7fff86e11fef  SecurityFoundation 36840.0.0 (compatibility 1.0.0) <B53D84B1-79EA-1AFB-0830-7A865E1F6521> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff86e12000 -     0x7fff86eb2fff  com.apple.LaunchServices 362.1 (362.1) <4529EF9C-45C7-E2E3-6726-4A5AD382566D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff86eb3000 -     0x7fff86ec4ff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <EAFA94DA-7A60-69AB-24A7-3E15566F596F> /usr/lib/libz.1.dylib
        0x7fff87034000 -     0x7fff8703aff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8703b000 -     0x7fff8703dfff  com.apple.print.framework.Print 6.1 (237.1) <E4220665-6652-8F59-241D-59A21436DB21> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8703e000 -     0x7fff87081ff7  libRIP.A.dylib 543.34.0 (compatibility 64.0.0) <7D947F07-54E1-9038-01F8-4F0D03EE96D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff87082000 -     0x7fff87112fff  com.apple.SearchKit 1.3.0 (1.3.0) <3403E658-A54E-A79A-12EB-E090E8743984> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff87113000 -     0x7fff8711bfff  com.apple.DisplayServicesFW 2.2.2 (251) <4243F9AF-4BCA-7F6F-B9A2-D9A08409B5DC> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8711c000 -     0x7fff8711efff  libRadiance.dylib ??? (???) <E9030B43-15FA-4739-72D5-FF5DDF595354> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff8711f000 -     0x7fff87b5cfe7  com.apple.WebCore 6531.21 (6531.21.8) <3E39264E-218D-AF92-D0BF-0CFB1ED7E9C4> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff87bd2000 -     0x7fff87c13fff  com.apple.SystemConfiguration 1.10.2 (1.10.2) <0E075BF4-9E0E-08E7-8160-22AE6892F3DF> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff87c14000 -     0x7fff87c28ff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <63C87CF7-56B3-4038-8136-8C26E96AD42F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff87c73000 -     0x7fff87c93ff7  com.apple.DirectoryService.Framework 3.6 (621.3) <34B17024-866F-70AF-2098-4B5FCF57AE52> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff87c94000 -     0x7fff87fa4fff  com.apple.RawCamera.bundle 2.3.2 (516) <BBD6E8FA-35A8-7F1F-4856-F74140DEB0A0> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff87fa5000 -     0x7fff887affe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <EEE5CE62-9155-6559-2AEA-05CED0F5B0F1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff887c6000 -     0x7fff88810ff7  com.apple.Metadata 10.6.3 (507.8) <2193434D-C43B-C1D8-6326-48B25C0CCA11> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff88811000 -     0x7fff88811ff7  com.apple.quartzframework 1.5 (1.5) <B182B579-BCCE-81BF-8DA2-9E0B7BDF8516> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff88815000 -     0x7fff88984ff7  com.apple.QTKit 7.6.6 (1729) <0B8D0737-FCB0-954C-9732-920F63B22C54> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff88985000 -     0x7fff889c9ff7  com.apple.ImageCaptureCore 1.0.1 (1.0.1) <788A9BF0-691B-FE10-7385-AF4A7A786478> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff889ca000 -     0x7fff889efff7  com.apple.CoreVideo 1.6.1 (45.5) <BB098B75-BA61-50E6-FE8E-FFE285BDECE8> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff88ac8000 -     0x7fff88adeff7  com.apple.MultitouchSupport.framework 204.13 (204.13) <FB283E51-94DC-D1C0-0EFC-7B773966EDAF> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff88b0f000 -     0x7fff88d79fe7  com.apple.QuartzComposer 4.1 (156.13) <88CAE5C0-DD7C-96DC-B891-0BC07F08A7D4> /System/Library/Frameworks/Quartz.framework/Versio

  • Problem with JMFRegistry and jffmpeg

    Hi all,
    i want to transmit/receive video and audio withi H264 in the same time over RTP.
    I downloaded jffmpeg and pasted jffmpeg.jar and jmf.jar to JMF/bin directory, but when i go to registry this:
    Under the "Plugins" tab register the following "Demultiplexers"
    1. net.sourceforge.jffmpeg.demux.vob.VobDemux
    2. net.sourceforge.jffmpeg.demux.ogg.OggDemux
    Under the "Codec" tab, register the following codecs:
    1. net.sourceforge.jffmpeg.VideoDecoder
    2. net.sourceforge.jffmpeg.AudioDecoder
    I get an error: "could not add item"
    I also change its classpath, so....
    somebody can help me????
    thanks.

    I too had the problem, but solved it
    if you start JMFregistry on the console using command
    java JMFRegistry
    When you try to add plugins, if your jffmpeg.jar class path is not set correctly, the error message CLASS NOT FOUND will be displayed on console, along with alert message you got.
    For example, I had set my CLASSPATH for jffmpeg.jar file as
    C:\Program Files\JMF2.1.1e\lib\jffmpeg-1.1.0.jar
    After that, I was able to add the plugins

  • Problem with file descriptors not released by JMF

    Hi,
    I have a problem with file descriptors not released by JMF. My application opens a video file, creates a DataSource and a DataProcessor and the video frames generated are transmitted using the RTP protocol. Once video transmission ends up, if we stop and close the DataProcessor associated to the DataSource, the file descriptor identifying the video file is not released (checkable through /proc/pid/fd). If we repeat this processing once and again, the process reaches the maximum number of file descriptors allowed by the operating system.
    The same problem has been reproduced with JMF-2.1.1e-Linux in several environments:
    - Red Hat 7.3, Fedora Core 4
    - jdk1.5.0_04, j2re1.4.2, j2sdk1.4.2, Blackdown Java
    This is part of the source code:
    // video.avi with tracks audio(PCMU) and video(H263)
    String url="video.avi";
    if ((ml = new MediaLocator(url)) == null) {
    Logger.log(ambito,refTrazas+"Cannot build media locator from: " + url);
    try {
    // Create a DataSource given the media locator.
    Logger.log(ambito,refTrazas+"Creating JMF data source");
    try
    ds = Manager.createDataSource(ml);
    catch (Exception e) {
    Logger.log(ambito,refTrazas+"Cannot create DataSource from: " + ml);
    return 1;
    p = Manager.createProcessor(ds);
    } catch (Exception e) {
    Logger.log(ambito,refTrazas+"Failed to create a processor from the given url: " + e);
    return 1;
    } // end try-catch
    p.addControllerListener(this);
    Logger.log(ambito,refTrazas+"Configure Processor.");
    // Put the Processor into configured state.
    p.configure();
    if (!waitForState(p.Configured))
    Logger.log(ambito,refTrazas+"Failed to configure the processor.");
    p.close();
    p=null;
    return 1;
    Logger.log(ambito,refTrazas+"Configured Processor OK.");
    // So I can use it as a player.
    p.setContentDescriptor(new FileTypeDescriptor(FileTypeDescriptor.RAW_RTP));
    // videoTrack: track control for the video track
    DrawFrame draw= new DrawFrame(this);
    // Instantiate and set the frame access codec to the data flow path.
    try {
    Codec codec[] = {
    draw,
    new com.sun.media.codec.video.colorspace.JavaRGBToYUV(),
    new com.ibm.media.codec.video.h263.NativeEncoder()};
    videoTrack.setCodecChain(codec);
    } catch (UnsupportedPlugInException e) {
    Logger.log(ambito,refTrazas+"The processor does not support effects.");
    } // end try-catch CodecChain creation
    p.realize();
    if (!waitForState(p.Realized))
    Logger.log(ambito,refTrazas+"Failed to realize the processor.");
    return 1;
    Logger.log(ambito,refTrazas+"realized processor OK.");
    /* After realize processor: THESE LINES OF SOURCE CODE DOES NOT RELEASE ITS FILE DESCRIPTOR !!!!!
    p.stop();
    p.deallocate();
    p.close();
    return 0;
    // It continues up to the end of the transmission, properly drawing each video frame and transmit them
    Logger.log(ambito,refTrazas+" Create Transmit.");
    try {
    int result = createTransmitter();
    } catch (Exception e) {
    Logger.log(ambito,refTrazas+"Error Create Transmitter.");
    return 1;
    } // end try-catch transmitter
    Logger.log(ambito,refTrazas+"Start Procesor.");
    // Start the processor.
    p.start();
    return 0;
    } // end of main code
    * stop when event "EndOfMediaEvent"
    public int stop () {
    try {   
    /* THIS PIECE OF CODE AND VARIATIONS HAVE BEEN TESTED
    AND THE FILE DESCRIPTOR IS NEVER RELEASED */
    p.stop();
    p.deallocate();
    p.close();
    p= null;
    for (int i = 0; i < rtpMgrs.length; i++)
    if (rtpMgrs==null) continue;
    Logger.log(ambito, refTrazas + "removeTargets;");
    rtpMgrs[i].removeTargets( "Session ended.");
    rtpMgrs[i].dispose();
    rtpMgrs[i]=null;
    } catch (Exception e) {
    Logger.log(ambito,refTrazas+"Error Stoping:"+e);
    return 1;
    return 0;
    } // end of stop()
    * Controller Listener.
    public void controllerUpdate(ControllerEvent evt) {
    Logger.log(ambito,refTrazas+"\nControllerEvent."+evt.toString());
    if (evt instanceof ConfigureCompleteEvent ||
    evt instanceof RealizeCompleteEvent ||
    evt instanceof PrefetchCompleteEvent) {
    synchronized (waitSync) {
    stateTransitionOK = true;
    waitSync.notifyAll();
    } else if (evt instanceof ResourceUnavailableEvent) {
    synchronized (waitSync) {
    stateTransitionOK = false;
    waitSync.notifyAll();
    } else if (evt instanceof EndOfMediaEvent) {
    Logger.log(ambito,refTrazas+"\nEvento EndOfMediaEvent.");
    this.stop();
    else if (evt instanceof ControllerClosedEvent)
    Logger.log(ambito,refTrazas+"\nEvent ControllerClosedEvent");
    close = true;
    waitSync.notifyAll();
    else if (evt instanceof StopByRequestEvent)
    Logger.log(ambito,refTrazas+"\nEvent StopByRequestEvent");
    stop =true;
    waitSync.notifyAll();
    Many thanks.

    Its a bug on H263, if you test it without h263 track or with other video codec, the release will be ok.
    You can try to use a not-Sun h263 codec like the one from fobs or jffmpeg projects.

  • Play .3gp-files with JMF (jffmpeg)

    Hello,
    for a MMS-Application I'm trying to show 3gp-files with Java. I heard that it should work with jffmpeg but I still couldn't get it to work.
    I added the Codec:
    String JFFMPEG_VIDEO = "net.sourceforge.jffmpeg.VideoDecoder";
    try {
        Codec video = (Codec) Class.forName(JFFMPEG_VIDEO).newInstance();
        PlugInManager.addPlugIn(JFFMPEG_VIDEO,
                video.getSupportedInputFormats(),
                video.getSupportedOutputFormats(null),
                PlugInManager.CODEC);
    } catch (Exception e) {
        e.printStackTrace();
    }and then started the player.
    It already works for mpg-Videos, but if the file-extension is .3gp the player throws a javax.media.NoPlayerException: Cannot find a Player for : file://C:/test.3gp
    When I change the file-name to test.mpg the player initializes but doen't show a picture.
    How can I register the 3gp-extension? Or is anything else missing?
    Thanks in advance for any hint :-)

    I still didn't get it to work as I need it, but I made some progress so far:
    Instead of jffmpeg I used the FOBS for JMF Package (http://fobs.sourceforge.net/index.html) in addition with the JMF.
    Using this package allows you to play a 3gp-Video in Swing that is stored in your filesystem (!).
    I'm still having two problems with this solution:
    - I use a Java Webstart-framework and can't acces the user's harddisk, so I need to play the 3gp-Videos directly from memory (they are stored as byte[] in a database), but the current version of FOBS is limited to 3gp-Playback only from filesystem.
    - Each user of the application has to download and install JMF and FOBS for their OS (system-specific libraries). Especially FOBS is not always very easy to install, because it needs to change some of the jmf.properites. This can not be done with the JAR-distribution-System of WebStart and I'm expecting problems, when the users try to install both packages on their own.
    If you are developing a plain Swing-Application you might be satisfied with the possibilities of FOBS and JMF.
    Good luck :-)

  • [SOLVED] Gnome - problem with sound

    hi! i have a problem with my eee pc 1000. i have no sound only from my right speaker... here is my amixer result:
    Simple mixer control 'PCM',0
    Capabilities: pvolume
    Playback channels: Front Left - Front Right
    Limits: Playback 0 - 255
    Mono:
    Front Left: Playback 255 [100%] [0.00dB]
    Front Right: Playback 255 [100%] [0.00dB]
    Simple mixer control 'LineOut',0
    Capabilities: pvolume pswitch
    Playback channels: Front Left - Front Right
    Limits: Playback 0 - 64
    Mono:
    Front Left: Playback 64 [100%] [1.00dB] [on]
    Front Right: Playback 64 [100%] [1.00dB] [on]
    Simple mixer control 'Mic Boost',0
    Capabilities: volume
    Playback channels: Front Left - Front Right
    Capture channels: Front Left - Front Right
    Limits: 0 - 3
    Front Left: 0 [0%]
    Front Right: 0 [0%]
    Simple mixer control 'Capture',0
    Capabilities: cvolume cswitch
    Capture channels: Front Left - Front Right
    Limits: Capture 0 - 46
    Front Left: Capture 25 [54%] [8.00dB] [on]
    Front Right: Capture 25 [54%] [8.00dB] [on]
    Simple mixer control 'iSpeaker',0
    Capabilities: pswitch
    Playback channels: Front Left - Front Right
    Mono:
    Front Left: Playback [on]
    Front Right: Playback [on]
    [manolos@arch Desktop]$ cd /
    [manolos@arch /]$ amixer
    Simple mixer control 'PCM',0
    Capabilities: pvolume
    Playback channels: Front Left - Front Right
    Limits: Playback 0 - 255
    Mono:
    Front Left: Playback 255 [100%] [0.00dB]
    Front Right: Playback 255 [100%] [0.00dB]
    Simple mixer control 'LineOut',0
    Capabilities: pvolume pswitch
    Playback channels: Front Left - Front Right
    Limits: Playback 0 - 64
    Mono:
    Front Left: Playback 64 [100%] [1.00dB] [on]
    Front Right: Playback 64 [100%] [1.00dB] [on]
    Simple mixer control 'Mic Boost',0
    Capabilities: volume
    Playback channels: Front Left - Front Right
    Capture channels: Front Left - Front Right
    Limits: 0 - 3
    Front Left: 0 [0%]
    Front Right: 0 [0%]
    Simple mixer control 'Capture',0
    Capabilities: cvolume cswitch
    Capture channels: Front Left - Front Right
    Limits: Capture 0 - 46
    Front Left: Capture 25 [54%] [8.00dB] [on]
    Front Right: Capture 25 [54%] [8.00dB] [on]
    Simple mixer control 'iSpeaker',0
    Capabilities: pswitch
    Playback channels: Front Left - Front Right
    Mono:
    Front Left: Playback [on]
    Front Right: Playback [on]
    [manolos@arch /]$ clear
    [manolos@arch /]$ amixer
    Simple mixer control 'PCM',0
    Capabilities: pvolume
    Playback channels: Front Left - Front Right
    Limits: Playback 0 - 255
    Mono:
    Front Left: Playback 255 [100%] [0.00dB]
    Front Right: Playback 255 [100%] [0.00dB]
    Simple mixer control 'LineOut',0
    Capabilities: pvolume pswitch
    Playback channels: Front Left - Front Right
    Limits: Playback 0 - 64
    Mono:
    Front Left: Playback 64 [100%] [1.00dB] [on]
    Front Right: Playback 64 [100%] [1.00dB] [on]
    Simple mixer control 'Mic Boost',0
    Capabilities: volume
    Playback channels: Front Left - Front Right
    Capture channels: Front Left - Front Right
    Limits: 0 - 3
    Front Left: 0 [0%]
    Front Right: 0 [0%]
    Simple mixer control 'Capture',0
    Capabilities: cvolume cswitch
    Capture channels: Front Left - Front Right
    Limits: Capture 0 - 46
    Front Left: Capture 25 [54%] [8.00dB] [on]
    Front Right: Capture 25 [54%] [8.00dB] [on]
    Simple mixer control 'iSpeaker',0
    Capabilities: pswitch
    Playback channels: Front Left - Front Right
    Mono:
    Front Left: Playback [on]
    Front Right: Playback [on]
    i have sound from both speaker in headset... its weird.
    please tell me what setting is wrong! thanks for your time
    problem solved! I dont know how...
    Last edited by manolos (2009-06-11 13:40:08)

    Just tryed playing a wav with aplay and it didn't give me any errors, but I didn't hear anything if that helps anymore. Running a amixer set MASTER 70% unmute also gives me the unable to find simple control 'MASTER',0 error too, though I can change the volume fine with alsamixer so I'm not sure why that is. The correct module is loaded (snd-hda-intel). Otherwise I'm at a complete loss.
    edit: amixer set MASTER 70% gives me the same error on an ubuntu livecd where sound does work so that seems normal. I don't know what changed, but I can now open the volume control so the gstreamer error goes away, however I still can't get any sound, be it with aplay or something else. I'm starting to think the solution may be to pass on arch and move to something better.
    Last edited by kryptobs2000 (2010-07-10 16:37:47)

  • JMF Problem with Logitech camera

    Hi
    I have a problem with JMF Registry Editor. I've tryed Detect Capture Devices and during detecting my computer crashes (blue screan) and restart the system. How can I solve this problem? I've set JMFHome.
    Thank you in advance.
    Falken

    Blue screen means something in the Windows code is crashing your computer. There's probably not anything you can do to fix it except unplug any devices you have plugged in...

  • [Solved] Problem with mouse cursor gnome3

    Hi
    I moved back to Archlinux after a brief stay in LMDE, and test the new GNOME3, I am unpleasantly surprised that after a while the mouse is moving himself toward the top of the screen. I searched the internet, and seems to be a problem with the gnome-shell for some time, but I am not able to find the solution.
    Momentarily solved by restarting gnome with ALT + F2 + r + Enter, but after a while, same thing happens again.
    Can be well with photography programs, but of course if you do not solve this issue, GNOME, I can not use
    Can you give me a helping hand?
    Thanks and regards
    Rafa
    Last edited by Warper4 (2011-08-16 18:09:50)

    I don't know about Gnome, but my laptop had that problem.  I tracked it down the 3d accelerometer being used to simulate a joystick.  Of course, I also had (previously) set up another joystick to operate as a mouse.  In the end, the cursor "drifted" when the laptop was not level
    YMMV

  • [SOLVED] Problem with Vuze and Java RE x86_64

    Hello all !
    First of all, sorry if this issue was posted before, but find no related issue similar to mine.
    Using pacman, I successfully installed JRE (version 6u16-1-x86_64) and Vuze (version 4.2.0.8-1, former Azureus), but Vuze doesn't want to start.
    Running the Vuze's executable in the gnome-terminal, I notice messages from vuze informing it can't find Java executable ("Java exec not found in PATH, starting auto-search..." AND "OOPS, unable to locate java exec in /usr/java/latest /usr/java /usr/lib/jvm/latest /usr/lib/jvm hierarchy") and therefore cannot start the Vuze UI. I also tried but failed in verify the version of Java with the command "java -version" due to command not found.
    What is the best approach to fix this problem with Java 64 bits?
    Thanks in advance
    Last edited by josephg (2009-09-28 18:55:56)

    peart wrote:Just log out and back in, most likely.  There are scripts in /etc/profile.d/ that need to be run to set up your java environment.  They get run automatically when you log in.
    Yep, perfect answer - issue solved. Thanks a lot!

  • [SOLVED] Problem with symlinking and PKGBUILD

    Hello Everyone,
    I have created the javafx-sdk package on AUR, and make the installation a lot simplier. But I am having a problem with the creationg of the symlink.
    So I have 1 binary file "javafxpackager" in the "bin" folder that I need to symlink into /usr/bin. This is the method I am using
    mkdir -p ${pkgdir}/usr/bin
    chmod +x ${pkgdir}/usr/lib/jvm/${pkgname}/bin/javafxpackager
    ln -s ${pkgdir}/usr/lib/jvm/${pkgname}/bin/javafxpackager ${pkgdir}/usr/bin/javafxpackager
    My problem is that this method doesn't work at all. The only way to me after the installation to make the symlink working is by doing this :
    ls chmod +x /usr/lib/jvm/javafx-sdk/bin/javafxpackager
    sudo ln -s /usr/lib/jvm/javafx-sdk/bin/javafxpackager /usr/bin/
    In order to make it work.
    How can I solve this problem ?
    Thanks in Advance,
    Luis Da Costa
    Last edited by aliasbody (2012-06-26 00:27:15)

    Problem solved ! Here's how to do it :
    mkdir -p ${pkgdir}/usr/bin
    chmod +x ${pkgdir}/usr/lib/jvm/${pkgname}/bin/javafxpackager
    ln -s /usr/lib/jvm/javafx-sdk/bin/javafxpackager ${pkgdir}/usr/bin/javafxpackager
    I didn't know, but you can symlink a file that doesn't exist yet, and this is what I did. I use and non existing (yet) javafxpackager binary from the non existing (yet) "/usr/lib/jvm/javafx-sdk/bin/" folder, and send it to the ${pkgdir}/usr/bin/javafxpackager, that will be copied into the original "/usr/bin/" folder.
    So this problem is solved and I'm happy
    (PS : thanks @ngoonee and @Trilby for you help ! Thanks to you I found out a little bit faster where the problem was ^^)

  • [SOLVED]problem with Bumblebee and Kernel 3.11-1-2

    Hi!
    I'm having problems with Bumblebee from Kernel 3.10 but I read that Kernel 3.11 solved the problem, I searched and tried possible solutions to my problem unsuccessfully
    The message shows me when I run "optirun":
    [ 5454.262739] [ERROR]Cannot access secondary GPU - error: [XORG] (EE) No devices detected.
    [ 5454.262776] [ERROR]Aborting because fallback start is disabled.
    I've tried with wiki's solutions, forums solutions...
    Configurations files:
    /etc/bumblebee/bumblebee.conf:
    # Configuration file for Bumblebee. Values should **not** be put between quotes
    ## Server options. Any change made in this section will need a server restart
    # to take effect.
    [bumblebeed]
    # The secondary Xorg server DISPLAY number
    VirtualDisplay=:8
    # Should the unused Xorg server be kept running? Set this to true if waiting
    # for X to be ready is too long and don't need power management at all.
    KeepUnusedXServer=false
    # The name of the Bumbleblee server group name (GID name)
    ServerGroup=bumblebee
    # Card power state at exit. Set to false if the card shoud be ON when Bumblebee
    # server exits.
    TurnCardOffAtExit=false
    # The default behavior of '-f' option on optirun. If set to "true", '-f' will
    # be ignored.
    NoEcoModeOverride=false
    # The Driver used by Bumblebee server. If this value is not set (or empty),
    # auto-detection is performed. The available drivers are nvidia and nouveau
    # (See also the driver-specific sections below)
    Driver=
    # Directory with a dummy config file to pass as a -configdir to secondary X
    XorgConfDir=/etc/bumblebee/xorg.conf.d
    ## Client options. Will take effect on the next optirun executed.
    [optirun]
    # Acceleration/ rendering bridge, possible values are auto, virtualgl and
    # primus.
    Bridge=virtualgl
    # The method used for VirtualGL to transport frames between X servers.
    # Possible values are proxy, jpeg, rgb, xv and yuv.
    VGLTransport=proxy
    # List of paths which are searched for the primus libGL.so.1 when using
    # the primus bridge
    PrimusLibraryPath=/usr/lib/primus:/usr/lib32/primus
    # Should the program run under optirun even if Bumblebee server or nvidia card
    # is not available?
    AllowFallbackToIGC=false
    # Driver-specific settings are grouped under [driver-NAME]. The sections are
    # parsed if the Driver setting in [bumblebeed] is set to NAME (or if auto-
    # detection resolves to NAME).
    # PMMethod: method to use for saving power by disabling the nvidia card, valid
    # values are: auto - automatically detect which PM method to use
    # bbswitch - new in BB 3, recommended if available
    # switcheroo - vga_switcheroo method, use at your own risk
    # none - disable PM completely
    # https://github.com/Bumblebee-Project/Bumblebee/wiki/Comparison-of-PM-methods
    ## Section with nvidia driver specific options, only parsed if Driver=nvidia
    [driver-nvidia]
    # Module name to load, defaults to Driver if empty or unset
    KernelDriver=nvidia
    PMMethod=auto
    # colon-separated path to the nvidia libraries
    LibraryPath=/usr/lib/nvidia:/usr/lib32/nvidia
    # comma-separated path of the directory containing nvidia_drv.so and the
    # default Xorg modules path
    XorgModulePath=/usr/lib/nvidia/xorg/,/usr/lib/xorg/modules
    XorgConfFile=/etc/bumblebee/xorg.conf.nvidia
    ## Section with nouveau driver specific options, only parsed if Driver=nouveau
    [driver-nouveau]
    KernelDriver=nouveau
    PMMethod=auto
    XorgConfFile=/etc/bumblebee/xorg.conf.nouveau
    /etc/bumblebee/xorg.conf.nvidia
    Section "ServerLayout"
    Identifier "Layout0"
    Option "AutoAddDevices" "false"
    Option "AutoAddGPU" "false"
    EndSection
    Section "Device"
    Identifier "DiscreteNvidia"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    # If the X server does not automatically detect your VGA device,
    # you can manually set it here.
    # To get the BusID prop, run `lspci | egrep 'VGA|3D'` and input the data
    # as you see in the commented example.
    # This Setting may be needed in some platforms with more than one
    # nvidia card, which may confuse the proprietary driver (e.g.,
    # trying to take ownership of the wrong device). Also needed on Ubuntu 13.04.
    BusID "PCI:01:00.0"
    # Setting ProbeAllGpus to false prevents the new proprietary driver
    # instance spawned to try to control the integrated graphics card,
    # which is already being managed outside bumblebee.
    # This option doesn't hurt and it is required on platforms running
    # more than one nvidia graphics card with the proprietary driver.
    # (E.g. Macbook Pro pre-2010 with nVidia 9400M + 9600M GT).
    # If this option is not set, the new Xorg may blacken the screen and
    # render it unusable (unless you have some way to run killall Xorg).
    Option "ProbeAllGpus" "false"
    Option "NoLogo" "true"
    Option "UseEDID" "false"
    Option "UseDisplayDevice" "none"
    EndSection
    lspci |grep NVIDIA:
    01:00.0 VGA compatible controller: NVIDIA Corporation GK107M [GeForce GT 640M] (rev a1)
    I hope can help me
    Thanks!
    Last edited by surrealistic (2013-11-04 18:46:35)

    My /var/log/Xorg.8.log:
    [ 337.161]
    X.Org X Server 1.14.4
    Release Date: 2013-10-31
    [ 337.161] X Protocol Version 11, Revision 0
    [ 337.161] Build Operating System: Linux 3.11.6-1-ARCH x86_64
    [ 337.161] Current Operating System: Linux h131h-laptop 3.11.6-1-ARCH #1 SMP PREEMPT Fri Oct 18 23:22:36 CEST 2013 x86_64
    [ 337.161] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=4eb69984-2228-4aba-9863-28a7fa854e51 rw quiet
    [ 337.161] Build Date: 01 November 2013 05:10:48PM
    [ 337.161]
    [ 337.161] Current version of pixman: 0.30.2
    [ 337.161] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 337.161] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 337.161] (==) Log file: "/var/log/Xorg.8.log", Time: Mon Nov 4 14:20:04 2013
    [ 337.161] (++) Using config file: "/etc/bumblebee/xorg.conf.nvidia"
    [ 337.161] (++) Using config directory: "/etc/bumblebee/xorg.conf.d"
    [ 337.161] (==) ServerLayout "Layout0"
    [ 337.161] (==) No screen section available. Using defaults.
    [ 337.161] (**) |-->Screen "Default Screen Section" (0)
    [ 337.161] (**) | |-->Monitor "<default monitor>"
    [ 337.161] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 337.161] (**) | |-->Device "DiscreteNvidia"
    [ 337.161] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 337.161] (**) Option "AutoAddDevices" "false"
    [ 337.161] (**) Option "AutoAddGPU" "false"
    [ 337.161] (**) Not automatically adding devices
    [ 337.161] (==) Automatically enabling devices
    [ 337.161] (**) Not automatically adding GPU devices
    [ 337.161] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 337.162] Entry deleted from font path.
    [ 337.162] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 337.162] Entry deleted from font path.
    [ 337.162] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 337.162] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 337.162] Entry deleted from font path.
    [ 337.162] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 337.162] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 337.162] (++) ModulePath set to "/usr/lib/nvidia/xorg/,/usr/lib/xorg/modules"
    [ 337.162] (==) |-->Input Device "<default pointer>"
    [ 337.162] (==) |-->Input Device "<default keyboard>"
    [ 337.162] (==) The core pointer device wasn't specified explicitly in the layout.
    Using the default mouse configuration.
    [ 337.162] (==) The core keyboard device wasn't specified explicitly in the layout.
    Using the default keyboard configuration.
    [ 337.162] (II) Loader magic: 0x7fdc20
    [ 337.162] (II) Module ABI versions:
    [ 337.162] X.Org ANSI C Emulation: 0.4
    [ 337.162] X.Org Video Driver: 14.1
    [ 337.162] X.Org XInput driver : 19.1
    [ 337.162] X.Org Server Extension : 7.0
    [ 337.162] (II) xfree86: Adding drm device (/dev/dri/card1)
    [ 337.162] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 337.162] setversion 1.4 failed
    [ 337.163] (--) PCI:*(0:1:0:0) 10de:0fd2:1025:0648 rev 161, Mem @ 0xb2000000/16777216, 0xa0000000/268435456, 0xb0000000/33554432, I/O @ 0x00002000/128
    [ 337.163] Initializing built-in extension Generic Event Extension
    [ 337.163] Initializing built-in extension SHAPE
    [ 337.163] Initializing built-in extension MIT-SHM
    [ 337.163] Initializing built-in extension XInputExtension
    [ 337.163] Initializing built-in extension XTEST
    [ 337.163] Initializing built-in extension BIG-REQUESTS
    [ 337.163] Initializing built-in extension SYNC
    [ 337.163] Initializing built-in extension XKEYBOARD
    [ 337.163] Initializing built-in extension XC-MISC
    [ 337.163] Initializing built-in extension SECURITY
    [ 337.163] Initializing built-in extension XINERAMA
    [ 337.163] Initializing built-in extension XFIXES
    [ 337.163] Initializing built-in extension RENDER
    [ 337.163] Initializing built-in extension RANDR
    [ 337.164] Initializing built-in extension COMPOSITE
    [ 337.164] Initializing built-in extension DAMAGE
    [ 337.164] Initializing built-in extension MIT-SCREEN-SAVER
    [ 337.164] Initializing built-in extension DOUBLE-BUFFER
    [ 337.164] Initializing built-in extension RECORD
    [ 337.164] Initializing built-in extension DPMS
    [ 337.164] Initializing built-in extension X-Resource
    [ 337.164] Initializing built-in extension XVideo
    [ 337.164] Initializing built-in extension XVideo-MotionCompensation
    [ 337.164] Initializing built-in extension XFree86-VidModeExtension
    [ 337.164] Initializing built-in extension XFree86-DGA
    [ 337.164] Initializing built-in extension XFree86-DRI
    [ 337.164] Initializing built-in extension DRI2
    [ 337.164] (II) LoadModule: "glx"
    [ 337.164] (II) Loading /usr/lib/nvidia/xorg/modules/extensions/libglx.so
    [ 337.172] (II) Module glx: vendor="NVIDIA Corporation"
    [ 337.172] compiled for 4.0.2, module version = 1.0.0
    [ 337.172] Module class: X.Org Server Extension
    [ 337.172] (II) NVIDIA GLX Module 325.15 Wed Jul 31 18:12:00 PDT 2013
    [ 337.172] Loading extension GLX
    [ 337.172] (II) LoadModule: "nvidia"
    [ 337.172] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 337.172] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 337.172] compiled for 4.0.2, module version = 1.0.0
    [ 337.172] Module class: X.Org Video Driver
    [ 337.172] (II) LoadModule: "mouse"
    [ 337.172] (II) Loading /usr/lib/xorg/modules/input/mouse_drv.so
    [ 337.172] (II) Module mouse: vendor="X.Org Foundation"
    [ 337.172] compiled for 1.14.0, module version = 1.9.0
    [ 337.172] Module class: X.Org XInput Driver
    [ 337.172] ABI class: X.Org XInput driver, version 19.1
    [ 337.172] (II) LoadModule: "kbd"
    [ 337.173] (WW) Warning, couldn't open module kbd
    [ 337.173] (II) UnloadModule: "kbd"
    [ 337.173] (II) Unloading kbd
    [ 337.173] (EE) Failed to load module "kbd" (module does not exist, 0)
    [ 337.173] (II) NVIDIA dlloader X Driver 325.15 Wed Jul 31 17:50:57 PDT 2013
    [ 337.173] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 337.173] (--) using VT number 1
    [ 337.173] (II) Loading sub module "fb"
    [ 337.173] (II) LoadModule: "fb"
    [ 337.173] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 337.173] (II) Module fb: vendor="X.Org Foundation"
    [ 337.173] compiled for 1.14.4, module version = 1.0.0
    [ 337.173] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 337.173] (WW) Unresolved symbol: fbGetGCPrivateKey
    [ 337.173] (II) Loading sub module "wfb"
    [ 337.173] (II) LoadModule: "wfb"
    [ 337.173] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 337.173] (II) Module wfb: vendor="X.Org Foundation"
    [ 337.173] compiled for 1.14.4, module version = 1.0.0
    [ 337.173] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 337.173] (II) Loading sub module "shadow"
    [ 337.173] (II) LoadModule: "shadow"
    [ 337.173] (II) Loading /usr/lib/xorg/modules/libshadow.so
    [ 337.173] (II) Module shadow: vendor="X.Org Foundation"
    [ 337.173] compiled for 1.14.4, module version = 1.1.0
    [ 337.173] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 337.173] (II) Loading sub module "ramdac"
    [ 337.173] (II) LoadModule: "ramdac"
    [ 337.173] (II) Module "ramdac" already built-in
    [ 337.174] (II) NVIDIA(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 337.174] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
    [ 337.174] (==) NVIDIA(0): RGB weight 888
    [ 337.174] (==) NVIDIA(0): Default visual is TrueColor
    [ 337.174] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 337.174] (**) NVIDIA(0): Option "NoLogo" "true"
    [ 337.174] (**) NVIDIA(0): Option "ProbeAllGpus" "false"
    [ 337.174] (**) NVIDIA(0): Option "UseEDID" "false"
    [ 337.174] (**) NVIDIA(0): Option "UseDisplayDevice" "none"
    [ 337.174] (**) NVIDIA(0): Enabling 2D acceleration
    [ 337.174] (**) NVIDIA(0): Ignoring EDIDs
    [ 337.174] (**) NVIDIA(0): Option "UseDisplayDevice" set to "none"; enabling NoScanout
    [ 337.174] (**) NVIDIA(0): mode
    [ 341.309] (EE) NVIDIA(0): Failed to initialize the NVIDIA GPU at PCI:1:0:0. Please
    [ 341.309] (EE) NVIDIA(0): check your system's kernel log for additional error
    [ 341.309] (EE) NVIDIA(0): messages and refer to Chapter 8: Common Problems in the
    [ 341.309] (EE) NVIDIA(0): README for additional information.
    [ 341.309] (EE) NVIDIA(0): Failed to initialize the NVIDIA graphics device!
    [ 341.309] (EE) NVIDIA(0): Failing initialization of X screen 0
    [ 341.309] (II) UnloadModule: "nvidia"
    [ 341.309] (II) UnloadSubModule: "shadow"
    [ 341.309] (II) UnloadSubModule: "wfb"
    [ 341.309] (II) UnloadSubModule: "fb"
    [ 341.309] (EE) Screen(s) found, but none have a usable configuration.
    [ 341.309] (EE)
    Fatal server error:
    [ 341.309] (EE) no screens found(EE)
    [ 341.309] (EE)
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 341.309] (EE) Please also check the log file at "/var/log/Xorg.8.log" for additional information.
    [ 341.309] (EE)
    [ 341.309] (EE) Server terminated with error (1). Closing log file.
    dmesg |grep bbswitch:
    [ 13.570577] bbswitch: version 0.7
    [ 13.570585] bbswitch: Found integrated VGA device 0000:00:02.0: \_SB_.PCI0.GFX0
    [ 13.570591] bbswitch: Found discrete VGA device 0000:01:00.0: \_SB_.PCI0.PEG0.PEGP
    [ 13.570687] bbswitch: detected an Optimus _DSM function
    [ 13.570741] bbswitch: Succesfully loaded. Discrete card 0000:01:00.0 is on
    [ 13.572354] bbswitch: disabling discrete graphics
    [ 261.419114] bbswitch: enabling discrete graphics
    [ 278.445698] bbswitch: disabling discrete graphics
    [ 279.055257] bbswitch: enabling discrete graphics
    [ 286.292315] bbswitch: disabling discrete graphics
    [ 291.911052] bbswitch: enabling discrete graphics
    [ 310.011289] bbswitch: disabling discrete graphics
    [ 336.982794] bbswitch: enabling discrete graphics
    [ 349.526470] bbswitch: enabling discrete graphics
    I used "rcutree" option as shown in the post that you put, but I've deleted all changes made to use default configurations, because the solution of the post didn't work

  • [SOLVED] Problem with UTC and CST

    I probably made a mistake while installing Arch Linux and the clocks in my computer are all a mess.
    Right now the UTC time its 6+ hours, I changed it in the bios to the right hour but that give me -6 hours in the local time thats displayed in Arch Linux and gave me the right hour in Windows 7.
    timedatectl
    Local time: Fri 2013-12-20 12:33:12 CST
    Universal time: Fri 2013-12-20 18:33:12 UTC
             RTC time: Fri 2013-12-20 18:33:12
            Timezone: America/Mexico_City (CST, -0600)
         NTP enabled: yes
    NTP synchronized: yes
    RTC in local TZ: no
          DST active: no
    Last DST change: DST ended at
                      Sun 2013-10-27 01:59:59 CDT
                      Sun 2013-10-27 01:00:00 CST
    Next DST change: DST begins (the clock jumps one hour forward) at
                      Sun 2014-04-06 01:59:59 CST
                      Sun 2014-04-06 03:00:00 CDT
    PS: Already did everything in the wiki and tried with some [SOLVED] posts.
    Edit: The problem with this its that when i use Windows 7 (to play DotA... or using the iPod, since no player can edit the files in the ipod) the hour is 6+ hours, that causes problems with the configuration in the ipod since each time i connect it the clock (that its also my only clock) changes to 6+ hours. Its maybe irrelevant for someone but i would like to have the right hour in all my systems.
    Last edited by Senketsu (2013-12-20 19:16:54)

    I am with Scimmia, everything looks correct.   But, If you boot Windows, it will try to change the BIOS clock to local time unless you tell it otherwise.
    Edit for both of your edits.  Yes, fix windows
    Last edited by ewaller (2013-12-20 18:56:32)

Maybe you are looking for

  • Zcl_file_util= file_copy Issue

    Hi, This is my first post here after some time I've been reading here, great community I must say (-: Let me apologize before I proceed to my question as I'm a PURE abap noob and trying my best to get the answers from former topics but it's not alway

  • User specific previledges on a particular tablespace

    Hi, 1. I have created a user giving him permission for a default tablespace for him.Can i revoke his permissions from all other available tablespaces . If yes? How? 2. I have gone through some related documents that says we can change user's tablespa

  • User Define Field

    Hi, Just wondering, if any one faced the dilemma as I am facing in reference to User Define field. I have user define field and is visible in SBO Interface (Tools - User Defined Field - Manage User Defined field), but unfortunately its not available

  • Is there any Subscription for saudi arabia ??

    Hello All , i'm from saudi arabia and i make calling every day to my friends mobile ! but the rate too high ! i want to Subscription for a month if any for a month unlimitid calls mobile in saudi arabia  is any Subscription for us to saudi arabia ??

  • Transferring data from one planning area to other within the same system

    Hi,       We have two planning areas setup and the corresponding planning books in the same system. Now I have to save the results of first book and transfer the results in the other. They have common key figures. Is the data saved to the key figure