Video in mmapi

Hello-
I've been trying to play video in j2me, and I've got some example source code, but none of them work. Whenever I try to compile a source file that uses VideoControl, the compiler says:
Cannot resolve symbol class VideoControl
Since VideoControl seems to be necessary for playing video, I'm wondering why this would be happening. Does anyone have a clue about this??
thanks
bc

I had the same issue today and it was solved by putting the right import line :
import javax.microedition.media.control.VideoControl;
Maybe it'll help you

Similar Messages

  • Drawing on video in MMAPI

    I'v learnt how to use MMAPI to take snapshots of the video feed from my phone. But I read in the API that it isn't possible to draw onto the area where the video feed is displayed. I really need to overlay some graphics onto the video feed, is there anyway I can do this? (I'm using USE_DIRECT_VIDEO btw )
    Any suggestions would be appreciated!

    Have a look at this thread :
    http://discussion.forum.nokia.com/forum/showthread.php?t=97784
    It talks about a solution for decoding video in pure software, on a phone. Demos are at http://www.versatile-media-format.com and there is one showing a translucent overlay on top of the video stream.

  • Phones that support video with MMAPI (and ideally: UMTS)?

    Hi there,
    does anybody know which phones do currently support playing back video (and ideally: streaming video) with the MMAPI? At the moment, I know the Nokia 3650 supports it...
    More interesting: are there any phones that do support UMTS and playing back video with the MMAPI? At the moment, I have a Nokia 7600 sitting in front of me and I'm still kind of shocked since it tells me it won't play videos and not even AMR soundfiles (only supported content types on this phone: audio/x-tone-seq, audio/midi, audio/sp-midi).
    The tragic thing about this is that the phone does have a media player - I just can't access it via the MMAPI and therefore, I can't access it via Java at all... :-(
    kind regards,
    david

    Hi,
    Your requirements are covered in Sony Ericsson Z1010 phone, which will be released in the market soon.
    /Thilak

  • How to convert jpeg images into video file of any ext using JMF

    I want to convert the Jpeg files into video clip with the help of JMF
    any one can help me?
    Plz reply me at [email protected]
    or [email protected]

    I'm not sure of his/her reasoning behind this, but I have yet to find a way to record video with mmapi on j2me. So with that restriction, I can see how one could make it so that it just records a lot of jpegs, and then makes it a movie.
    I would be interested finding a workaround for this too. Either if someone would explain how to record video with mmapi or how to make recorded images into a video. Thanks!

  • J2ME Video Recording

    Hi all friends,
    Are there any way to record the live captured video clip by J2ME, I have tried to use RecordControl, but it doesn't work, any hints?
    Thanks a lot!
    Winnie

    hi
    actually i was supposed to write a midlet for capturing video using mmapi , save it in specifed format, and also need of playing the recorded video,
    iam tyring with samples aavilable in net, but i didnt get samples for saving the file n playing the rcapture video .
    so can any one help out in dat ...if have complete code send it to [email protected]
    ur suggesting will be helpfulll

  • P2P media streaming

    Hello,
    i am trying to implement a small demo P2P application which involved PC and mobile devices. I wanted to split a media into byte chunks and store them on different peer. If a peer wants to watch a file, it will need to fetch each chuck from different peers one after another.
    What media format (audio and video) J2ME MMAPI supports? For example my nokia N80 supports mp4 and 3gp formats does the MMAPI supports those also?.
    it seems that streaming with RTP/RTSP has been quite tricky if i believed other thread, would it be possible to just send byte to a mobile device and play each chunck separately?
    Can i split any kind of media in byte chunck? Or is there some kind of formatting issues?
    Any other advises which could help me would be welcome. I will post my streaming code when i get it to work.
    thanks a lot
    sebastien

    Hello,
    is there anybody who could give me some hints in my task?
    Is media streaming not possible to a midlet then? If i believe other threads it seems so.
    regards
    sebastien

  • Receiving Video RTP Stream (JMF) in JME ( MMAPI ) - URGENT !!!

    Hi Folks...
    I�m trying to develop an application that sends the images from a web cam connected to the computer, to the PDA that the images can be viewed by the user...
    My code for the JMF RTP Video Stream is as follows.
    Processor proc = null;
              javax.media.protocol.DataSource ds = null;
              TrackControl[] tc = null;
              int y;
              boolean encodingOk = false;
              Vector<javax.media.protocol.DataSource> datasources = new Vector<javax.media.protocol.DataSource>();
              for( int x = 0 ; x < camerasInfo.length ; x++ ){
                   try {
                        proc = Manager.createProcessor(camerasInfo[x].getLocator());
                   }catch (NoProcessorException e) { System.out.println("Erro ao int�nciar PROCESSOR: " + e);     }
                    catch (IOException e) { System.out.println("Erro ao int�nciar PROCESSOR: " + e); }
                   proc.configure();
                   try {
                        Thread.sleep(2000);
                   } catch (InterruptedException e1) {
                        // TODO Auto-generated catch block
                        e1.printStackTrace();
                   proc.setContentDescriptor( new ContentDescriptor(ContentDescriptor.RAW_RTP) );
                   tc = proc.getTrackControls();
                   for( y = 0; y < tc.length ; y++ ){
                        if (!encodingOk && tc[y] instanceof FormatControl){
                             if( ( (FormatControl) tc[y] ).setFormat( new VideoFormat(VideoFormat.RGB) ) != null ){
                                  tc[y].setEnabled(true);                              
                             }else{
                                  encodingOk = true;
                        }else{
                             tc[y].setEnabled(false);
                   proc.realize();
                   try {
                        Thread.sleep(2000);
                   } catch (InterruptedException e1) {
                        e1.printStackTrace();
                   try{
                        ds = proc.getDataOutput();
                   }catch(NotRealizedError e){
                        System.out.println("ERRO ao realizar datasource: " + e);
                   }catch(ClassCastException e){
                        System.out.println("Erro ao realizar datasource: " + e);
                   datasources.add(ds);
                   System.out.println( ds.getLocator() );
                   encodingOk = false;
              MediaLocator ml = new MediaLocator("rtp://10.1.1.100:99/video");
              try {
                   DataSink datSink = Manager.createDataSink(ds , ml);
                   datSink.open();
                   datSink.start();
              } catch (NoDataSinkException e) {
                   System.out.println("Erro ao instanciar DataSink: " + e );
              } catch (SecurityException e) {
                   System.out.println("Erro ao iniciar DataSink: " + e);
              } catch (IOException e) {
                   System.out.println("Erro ao iniciar DataSink: " + e);
              }I�m not sure if this code is correctly... it is ?
    So... the next part of the systems runs on the PDA..
    The code that access this RTP Stream is as follows..
              VideoControl c = null;
              try {
                   player = Manager.createPlayer("rtp://10.1.1.100:99/video");
                   c = (VideoControl) player.getControl("VideoControl");
                   tela = (Item) c.initDisplayMode( GUIControl.USE_GUI_PRIMITIVE, null);
                   player.start();
                   append(tela);
              } catch (IOException e) {
                   str.setText(e.toString());
                   append( str );
              } catch (MediaException e) {
                   str.setText(e.toString());
                   append( str );
              }So when the APP try to create a player for "rtp://10.1.1.100:99/video" an MediaException is throwed..
    javax.microedition.media.MediaException: Unable to create Player for the locator: rtp://10.1.1.100:99/video
    So... I don�t know what happen =/
    The error is in the PDA module ? Or in the computer�s initialization off the RTP Video Streaming ?
    I need finish this job at next week... so any help is usefull..
    Waiting for answers
    Rodrigo Kerkhoff

    First of all: before going onto the j2me part, make sure the server works, before doing anything else! Apparently, it doesn't...
    The MediaLocator is generally used to specify a kind of URL depicting where the data put into the datasink should go to. In your case, This cannot be just some URL where you want it to act as a rtps server. You'll need to implement that server yourself I guess.

  • MMAPI video conversion problem

    Hi All!
    Could anyone please tell me what parameters do I have to use when using ffmpeg to convert flash video to mp4 or other format working on wtk 2.5 emulator, simple converting the video file doesn't display anything on the emulator.
    (I'm asking here for parameters because i use linux but any information about suitable mp4 video characteristics would be great)
    Thanks a lot in advance!
    Kris

    You can try [mpeg4 converter|http://www.yzf888.com/mpeg4-converter.html],it can convert video to mp4.
    Edited by: bill8888 on Jul 13, 2008 5:40 AM

  • RE: receiving streamed RTP video to using MMAPI

    Hi,
    I am trying to create a client interface, that will receive a stream of video over RTP.
    1. Does anybody know of any good source code examples that include RTP?
    2. Will the implementation of the RTP client by similar in J2ME as it is in J2SE?
    Thanks,
    Barry

    Have you succeeded? I have the same problem you had some months ago and just wanna know if it's possible.
    Thanks

  • Video Flicker with MMAPI

    Hey,
    I'm trying to play video from a streaming server in a J2ME app and having an issue with the screen flickering when using a canvas. I was wondering if anyone had a solution to rendering the video on the screen as well as other graphical elements, i.e. a play, pause and stop button. The flicker stops if i remove the call to flushGraphics in my draw loop that is drawing the other graphical elements, but I am wondering if there is a way to get around this flicker issue? Maybe a function that would return the framerate of the video? New to this, so any help would be appreciated.
    -Maurice

    Maybe it's related to using a GameCanvas. Have you tried with a regular Canvas? Video rendering in the particular implmentation may not be completely compatible with flushGraphics due to buffer optimization or other assumptions. Letting repaints be deferred until the device is ready to paint may give you smoother results.
    What kind of phone are you using?

  • How to cpture video from mobile device using MMAPI?

    Dear freinds
    Q1:-
    I am working on a project that require capture image from mobile device (Cell Phone) but in J2ME Wireless Toolkit their is no any code example to do this .
    Q2:-
    Is this possible that i cn plug web cam to capture image from emulator
    if yes than please replay me with code example

    Well i am pretty certain i need to develop a java code which would allow the same. But i was looking forward if anyone knows about any API which have certain interfaces exposed which would support this type of communication. Like you can get code sniplets for SMSC which allows SMS to be sent from application to any mobile phone i was thinking might be some help would also be available for the reverse.
    Or if there are any tutorials available on net which might be of some help then please share.
    Thanks

  • Media back up client in using MIDP 2.0 MMAPI

    Hi everybody,
    I want to use J2ME MIDP 2.0 MMAPI for series 60 v2.0 in order to develop application that can upload and download medias files to and from a Server, therefore my questions are:
    -Can You access the default media files folders (Image, sounds and videos) ?
    -Is it in these folders that you store the downloaded media files ? or are you obliged to store them
    elsewhere (RMS in particular ).
    I am currently using Symbian C++ as developing langage but if I could move to Java It would be great because It's too hard to master symbian C++ (every thing is a nightmare...).
    Thanks in advance for your anwser
    Have a nine day

    -Can You access the default media files folders (Image, sounds and videos) ?
    No.
    -Is it in these folders that you store the downloaded media files ?
    Well, yes. But you don't have access to them so that doesn't help you.
    - or are you obliged to store them elsewhere (RMS in particular ).
    You have no choice but to store them in the RMS because that is the only form of persistent storage you have. That means that only your application will have access to the files.
    shmoove

  • Streaming video from phone

    I want to stream video from phone's cam to a server.
    I found MMAPI, with RecordControl I can:
    try
    Player player = Manager.createPlayer("capture://video ?encoding=gray8");
    player.realize();
    RecordControl rc = (RecordControl)player.getControl("RecordControl");
    ByteArrayOutputStream output = new ByteArrayOutputStream();
    rc.setRecordStream(output);
    rc.startRecord();
    p.start();
    //Thread.currentThread().sleep(5000);
    rc.commit();
    p.close();
    catch (Exception e)
    this way the video is in "output" only after "commit()", then I could send it. Is there any way to have real streaming??

    What do you understand with "real streaming"? Do you refer to frequency of transmission? The real time streaming is "not so real". If you put a small sleep time you will get a higher frequency and it will simulate a "real-time" streaming. To speed up your transmission, use UDP protocol instead of TCP, because media streaming in all techs is on top of UDP.

  • Crash when uploading video to Mobileme from iPhoto '09

    I get this when I try to upload. It used to work...well, I won't say great...but pretty well. But now it crashes every time when I try to upload a video. I've tried it with just one video and it still crashes. I'll happilly answer questions about details, but for now I will post the crash log, as that is the only detail that I know is relevant. I also have a string of crashes...this is the latest. I can provide those as well.
    Process: iPhoto [1500]
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier: com.apple.iPhoto
    Version: 8.0.4 (8.0.4)
    Build Info: iPhotoProject-4090000~8
    Code Type: X86 (Native)
    Parent Process: launchd [119]
    Date/Time: 2009-07-30 14:31:43.842 -0700
    OS Version: Mac OS X 10.5.7 (9J61)
    Report Version: 6
    Anonymous UUID: 582117CB-E8D9-4A16-9B86-6FDCDF64161F
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000024
    Crashed Thread: 23
    Thread 0:
    0 libSystem.B.dylib 0x93937286 machmsgtrap + 10
    1 libSystem.B.dylib 0x9393ea7c mach_msg + 72
    2 libSystem.B.dylib 0x9395f755 notify_server_registerplain + 172
    3 libSystem.B.dylib 0x9395f65c notifyregisterplain + 393
    4 libSystem.B.dylib 0x93963d23 asl_notifyopen + 151
    5 libSystem.B.dylib 0x93963968 asl_opendefault + 99
    6 libSystem.B.dylib 0x93963668 asl_vlog + 30
    7 com.apple.CoreGraphics 0x93bec1f5 defaultlogmessage + 53
    8 com.apple.CoreGraphics 0x93caa262 CGPostErrorWithArguments + 24
    9 com.apple.CoreGraphics 0x93caa248 CGPostError + 27
    10 com.apple.CoreGraphics 0x93af21d5 CGTypeCreateInstanceWithAllocator + 99
    11 com.apple.CoreGraphics 0x93af203f CGSNewRegion + 47
    12 com.apple.CoreGraphics 0x93af7af5 CGSUnionRegionWithRect + 565
    13 com.apple.AppKit 0x92fe3262 -[NSRegion addRect:] + 216
    14 com.apple.AppKit 0x92fe3155 -[NSWindow _setNeedsDisplayInRect:] + 247
    15 com.apple.AppKit 0x92fde1e5 -[NSView setNeedsDisplayInRect:] + 400
    16 com.apple.AppKit 0x92fddf82 -[NSView setNeedsDisplay:] + 76
    17 com.apple.iPhoto 0x00400436 0x1000 + 4191286
    18 com.apple.Foundation 0x94ea4493 __NSFireTimer + 147
    19 com.apple.CoreFoundation 0x9084bac5 CFRunLoopRunSpecific + 4469
    20 com.apple.CoreFoundation 0x9084bc78 CFRunLoopRunInMode + 88
    21 com.apple.HIToolbox 0x9711028c RunCurrentEventLoopInMode + 283
    22 com.apple.HIToolbox 0x971100a5 ReceiveNextEventCommon + 374
    23 com.apple.HIToolbox 0x9710ff19 BlockUntilNextEventMatchingListInMode + 106
    24 com.apple.AppKit 0x93001d0d _DPSNextEvent + 657
    25 com.apple.AppKit 0x930015c0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    26 com.apple.AppKit 0x92ffa5fb -[NSApplication run] + 795
    27 com.apple.AppKit 0x92fc7834 NSApplicationMain + 574
    28 com.apple.iPhoto 0x00123432 0x1000 + 1188914
    29 com.apple.iPhoto 0x0000395a 0x1000 + 10586
    Thread 1:
    0 libSystem.B.dylib 0x939372e6 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x939692af pthread_condwait + 1244
    2 libSystem.B.dylib 0x9396ab33 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x94eb5dcc -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x94eb5be0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.Foundation 0x94eb5b45 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.proxtcore 0x01359201 -[XTMsgQueue waitForMessage] + 49
    7 com.apple.proxtcore 0x01347363 -[XTThread run:] + 387
    8 com.apple.Foundation 0x94e6fe0d -[NSThread main] + 45
    9 com.apple.Foundation 0x94e6f9b4 _NSThread__main_ + 308
    10 libSystem.B.dylib 0x93968155 pthreadstart + 321
    11 libSystem.B.dylib 0x93968012 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x939372e6 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x939692af pthread_condwait + 1244
    2 libSystem.B.dylib 0x9396ab33 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x94eb5dcc -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x94eb5be0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.Foundation 0x94eb5b45 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.proxtcore 0x01359201 -[XTMsgQueue waitForMessage] + 49
    7 com.apple.proxtcore 0x01347363 -[XTThread run:] + 387
    8 com.apple.Foundation 0x94e6fe0d -[NSThread main] + 45
    9 com.apple.Foundation 0x94e6f9b4 _NSThread__main_ + 308
    10 libSystem.B.dylib 0x93968155 pthreadstart + 321
    11 libSystem.B.dylib 0x93968012 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x93937286 machmsgtrap + 10
    1 libSystem.B.dylib 0x9393ea7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9084b04e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x9084bc78 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x94ea43e5 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    5 com.apple.proxtcore 0x013488a5 -[XTRunLoopThread run:] + 421
    6 com.apple.Foundation 0x94e6fe0d -[NSThread main] + 45
    7 com.apple.Foundation 0x94e6f9b4 _NSThread__main_ + 308
    8 libSystem.B.dylib 0x93968155 pthreadstart + 321
    9 libSystem.B.dylib 0x93968012 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x9393e46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x93968dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.iPhoto 0x00500e19 0x1000 + 5242393
    3 com.apple.Foundation 0x94e6fe0d -[NSThread main] + 45
    4 com.apple.Foundation 0x94e6f9b4 _NSThread__main_ + 308
    5 libSystem.B.dylib 0x93968155 pthreadstart + 321
    6 libSystem.B.dylib 0x93968012 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x93937286 machmsgtrap + 10
    1 libSystem.B.dylib 0x9393ea7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9084b04e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x9084bc78 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x913af298 CFURLCacheWorkerThread(void*) + 388
    5 libSystem.B.dylib 0x93968155 pthreadstart + 321
    6 libSystem.B.dylib 0x93968012 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x939866fa select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x93968155 pthreadstart + 321
    2 libSystem.B.dylib 0x93968012 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x9393e46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x93968dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.QuartzCore 0x96698a09 fefragmentthread + 54
    3 libSystem.B.dylib 0x93968155 pthreadstart + 321
    4 libSystem.B.dylib 0x93968012 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x93937286 machmsgtrap + 10
    1 libSystem.B.dylib 0x9393ea7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9084b04e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x9084bc78 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x94ed3530 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5 com.apple.Foundation 0x94e6fe0d -[NSThread main] + 45
    6 com.apple.Foundation 0x94e6f9b4 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x93968155 pthreadstart + 321
    8 libSystem.B.dylib 0x93968012 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x9393e46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x93968dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.Foundation 0x94eb7942 -[NSCondition wait] + 210
    3 com.apple.iPhoto 0x0050c974 0x1000 + 5290356
    4 com.apple.iPhoto 0x0050c192 0x1000 + 5288338
    5 com.apple.Foundation 0x94e6fe0d -[NSThread main] + 45
    6 com.apple.Foundation 0x94e6f9b4 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x93968155 pthreadstart + 321
    8 libSystem.B.dylib 0x93968012 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x9393e46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x93968dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.Foundation 0x94eb7942 -[NSCondition wait] + 210
    3 com.apple.iPhoto 0x0050c974 0x1000 + 5290356
    4 com.apple.iPhoto 0x0050c192 0x1000 + 5288338
    5 com.apple.Foundation 0x94e6fe0d -[NSThread main] + 45
    6 com.apple.Foundation 0x94e6f9b4 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x93968155 pthreadstart + 321
    8 libSystem.B.dylib 0x93968012 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x939372e6 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x939692af pthread_condwait + 1244
    2 libSystem.B.dylib 0x9396ab33 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x94eb5dcc -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x94eb5be0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.Foundation 0x94eb5b45 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.AppKit 0x93067d20 -[NSUIHeartBeat _heartBeatThread:] + 753
    7 com.apple.Foundation 0x94e6fe0d -[NSThread main] + 45
    8 com.apple.Foundation 0x94e6f9b4 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x93968155 pthreadstart + 321
    10 libSystem.B.dylib 0x93968012 thread_start + 34
    Thread 12:
    0 libSystem.B.dylib 0x93937286 machmsgtrap + 10
    1 libSystem.B.dylib 0x9393ea7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9084b04e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x9084bc78 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x94ea43e5 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    5 com.apple.proxtcore 0x013488a5 -[XTRunLoopThread run:] + 421
    6 com.apple.Foundation 0x94e6fe0d -[NSThread main] + 45
    7 com.apple.Foundation 0x94e6f9b4 _NSThread__main_ + 308
    8 libSystem.B.dylib 0x93968155 pthreadstart + 321
    9 libSystem.B.dylib 0x93968012 thread_start + 34
    Thread 13:
    0 libSystem.B.dylib 0x9393e46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x93968dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.iPhoto 0x00500e19 0x1000 + 5242393
    3 com.apple.Foundation 0x94e6fe0d -[NSThread main] + 45
    4 com.apple.Foundation 0x94e6f9b4 _NSThread__main_ + 308
    5 libSystem.B.dylib 0x93968155 pthreadstart + 321
    6 libSystem.B.dylib 0x93968012 thread_start + 34
    Thread 14:
    0 libSystem.B.dylib 0x93937286 machmsgtrap + 10
    1 libSystem.B.dylib 0x9393ea7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9084b04e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x9084bcd4 CFRunLoopRun + 84
    4 com.apple.iLifeMediaBrowser 0x96a885cd -[ILMediaBrowserPathWatcher(FSEvents) iLMBPathWatcherRunLoop] + 849
    5 com.apple.Foundation 0x94e6fe0d -[NSThread main] + 45
    6 com.apple.Foundation 0x94e6f9b4 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x93968155 pthreadstart + 321
    8 libSystem.B.dylib 0x93968012 thread_start + 34
    Thread 15:
    0 libSystem.B.dylib 0x939679c6 kevent + 10
    1 libSystem.B.dylib 0x93968155 pthreadstart + 321
    2 libSystem.B.dylib 0x93968012 thread_start + 34
    Thread 16:
    0 libSystem.B.dylib 0x93937286 machmsgtrap + 10
    1 libSystem.B.dylib 0x9393ea7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9084b04e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x9084bc78 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x94ea43e5 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    5 com.apple.proxtcore 0x013488a5 -[XTRunLoopThread run:] + 421
    6 com.apple.Foundation 0x94e6fe0d -[NSThread main] + 45
    7 com.apple.Foundation 0x94e6f9b4 _NSThread__main_ + 308
    8 libSystem.B.dylib 0x93968155 pthreadstart + 321
    9 libSystem.B.dylib 0x93968012 thread_start + 34
    Thread 17:
    0 libSystem.B.dylib 0x939792f7 sigaltstack + 7
    1 libSystem.B.dylib 0x93a1a618 simpleesprintf + 41
    2 libSystem.B.dylib 0x93a1a90c simple_asllog + 382
    3 libSystem.B.dylib 0x93a1890b mallocvprintf + 425
    4 libSystem.B.dylib 0x93a18943 malloc_printf + 35
    5 libSystem.B.dylib 0x93a1341a szone_error + 174
    6 libSystem.B.dylib 0x93940996 allocate_pages + 223
    7 libSystem.B.dylib 0x93960a78 tinymalloc_from_region_nolock + 151
    8 libSystem.B.dylib 0x939381dd szone_malloc + 196
    9 libSystem.B.dylib 0x939380d8 malloczonemalloc + 81
    10 com.apple.CoreFoundation 0x9084d3d1 _CFRuntimeCreateInstance + 145
    11 com.apple.CoreFoundation 0x908133d4 CFDateCreate + 52
    12 com.apple.CoreFoundation 0x908bdec3 -[__NSPlaceholderDate initWithTimeIntervalSinceReferenceDate:] + 99
    13 com.apple.CoreFoundation 0x908be75d +[NSDate dateWithTimeIntervalSinceNow:] + 93
    14 com.apple.iPhoto 0x003e09cc 0x1000 + 4061644
    15 com.apple.proxtcore 0x0135ae20 -[XTSubscription postMessage:] + 224
    16 com.apple.proxtcore 0x01342b90 -[XTList makeObjectsPerformSelector:withObject:] + 64
    17 com.apple.proxtcore 0x01354fb9 -[XTDistributor distributeMessage:] + 713
    18 com.apple.proxtcore 0x0134773c -[XTThread handleMessage:] + 684
    19 com.apple.proxtcore 0x0134737e -[XTThread run:] + 414
    20 com.apple.Foundation 0x94e6fe0d -[NSThread main] + 45
    21 com.apple.Foundation 0x94e6f9b4 _NSThread__main_ + 308
    22 libSystem.B.dylib 0x93968155 pthreadstart + 321
    23 libSystem.B.dylib 0x93968012 thread_start + 34
    Thread 18:
    0 libSystem.B.dylib 0x939372e6 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x939692af pthread_condwait + 1244
    2 libSystem.B.dylib 0x9396ab33 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x94eb5dcc -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x94eb5be0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.Foundation 0x94eb5b45 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.proxtcore 0x01359201 -[XTMsgQueue waitForMessage] + 49
    7 com.apple.proxtcore 0x01347363 -[XTThread run:] + 387
    8 com.apple.Foundation 0x94e6fe0d -[NSThread main] + 45
    9 com.apple.Foundation 0x94e6f9b4 _NSThread__main_ + 308
    10 libSystem.B.dylib 0x93968155 pthreadstart + 321
    11 libSystem.B.dylib 0x93968012 thread_start + 34
    Thread 19:
    0 libSystem.B.dylib 0x93940b02 mmap + 10
    1 libSystem.B.dylib 0x93960a78 tinymalloc_from_region_nolock + 151
    2 libSystem.B.dylib 0x939381dd szone_malloc + 196
    3 libSystem.B.dylib 0x939380d8 malloczonemalloc + 81
    4 com.apple.CoreFoundation 0x9084d3d1 _CFRuntimeCreateInstance + 145
    5 com.apple.CoreFoundation 0x908133d4 CFDateCreate + 52
    6 com.apple.CoreFoundation 0x908bdec3 -[__NSPlaceholderDate initWithTimeIntervalSinceReferenceDate:] + 99
    7 com.apple.CoreFoundation 0x908be75d +[NSDate dateWithTimeIntervalSinceNow:] + 93
    8 ...le.iPhoto.MobileMePublisher 0x16954900 _removeUserName + 65009
    9 ...le.iPhoto.MobileMePublisher 0x16953d43 _removeUserName + 62004
    10 ...le.iPhoto.MobileMePublisher 0x169509d0 _removeUserName + 48833
    11 com.apple.iPhoto 0x003ddd56 0x1000 + 4050262
    12 com.apple.iPhoto 0x0066095e 0x1000 + 6682974
    13 com.apple.proxtcore 0x0135ae20 -[XTSubscription postMessage:] + 224
    14 com.apple.proxtcore 0x013550d6 -[XTDistributor distributeMessage:] + 998
    15 com.apple.proxtcore 0x0134773c -[XTThread handleMessage:] + 684
    16 com.apple.proxtcore 0x0134737e -[XTThread run:] + 414
    17 com.apple.Foundation 0x94e6fe0d -[NSThread main] + 45
    18 com.apple.Foundation 0x94e6f9b4 _NSThread__main_ + 308
    19 libSystem.B.dylib 0x93968155 pthreadstart + 321
    20 libSystem.B.dylib 0x93968012 thread_start + 34
    Thread 20:
    0 libSystem.B.dylib 0x939372e6 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x939692af pthread_condwait + 1244
    2 libSystem.B.dylib 0x9396ab33 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x94eb5dcc -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x94eb5be0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.Foundation 0x94eb5b45 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.proxtcore 0x01359201 -[XTMsgQueue waitForMessage] + 49
    7 com.apple.proxtcore 0x01347363 -[XTThread run:] + 387
    8 com.apple.Foundation 0x94e6fe0d -[NSThread main] + 45
    9 com.apple.Foundation 0x94e6f9b4 _NSThread__main_ + 308
    10 libSystem.B.dylib 0x93968155 pthreadstart + 321
    11 libSystem.B.dylib 0x93968012 thread_start + 34
    Thread 21:
    0 libSystem.B.dylib 0x93937286 machmsgtrap + 10
    1 libSystem.B.dylib 0x9393ea7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9084b04e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x9084bc78 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x94ea43e5 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    5 com.apple.proxtcore 0x013488a5 -[XTRunLoopThread run:] + 421
    6 com.apple.Foundation 0x94e6fe0d -[NSThread main] + 45
    7 com.apple.Foundation 0x94e6f9b4 _NSThread__main_ + 308
    8 libSystem.B.dylib 0x93968155 pthreadstart + 321
    9 libSystem.B.dylib 0x93968012 thread_start + 34
    Thread 22:
    0 libSystem.B.dylib 0x9393e46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x93968dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.ColorSync 0x96bfb45c pthreadSemaphoreWait(t_pthreadSemaphore*) + 42
    3 com.apple.ColorSync 0x96c0dd8e CMMConvTask(void*) + 54
    4 libSystem.B.dylib 0x93968155 pthreadstart + 321
    5 libSystem.B.dylib 0x93968012 thread_start + 34
    Thread 23 Crashed:
    0 com.apple.CoreFoundation 0x9081d3c4 CFDictionaryCreate + 36
    1 com.apple.CoreFoundation 0x908bf14b -[__NSPlaceholderDictionary initWithObjects:forKeys:count:] + 699
    2 com.apple.CoreFoundation 0x908c226c +[NSDictionary dictionaryWithObjectsAndKeys:] + 332
    3 com.apple.MobileMe 0x00d0ed39 -[MM_DAVRequest(Private) _bodyStreamRead:bufferLength:error:atEOF:] + 589
    4 com.apple.CoreFoundation 0x908600cd CFReadStreamRead + 477
    5 com.apple.CFNetwork 0x914025c2 HTTPNetConnection::transmitRequest(HTTPNetStreamInfo*, __CFWriteStream*, CFStreamError*, unsigned char) + 652
    6 com.apple.CFNetwork 0x914028f0 HTTPNetConnection::requestStreamCallback(void*, __CFWriteStream*, unsigned long) + 74
    7 com.apple.CFNetwork 0x91400217 NetConnection::connectionRequest(__CFWriteStream*, unsigned long) + 73
    8 com.apple.CoreFoundation 0x9085d549 _CFStreamSignalEventSynch + 137
    9 com.apple.CoreFoundation 0x9085f0e7 CFWriteStreamSignalEvent + 39
    10 com.apple.CFNetwork 0x91408d89 HTTPWriteFilter::streamFilterCallback(__CFWriteStream*, unsigned long) + 351
    11 com.apple.CFNetwork 0x91408dde HTTPWriteFilter::httpWrFilterStreamCallBack(_CFWriteStream*, unsigned long, void*) + 60
    12 com.apple.CoreFoundation 0x9085d549 _CFStreamSignalEventSynch + 137
    13 com.apple.CoreFoundation 0x9085f0e7 CFWriteStreamSignalEvent + 39
    14 com.apple.CFNetwork 0x9141106b SocketStream::socketCallback(__CFSocket*, unsigned long, __CFData const*, void const*) + 1099
    15 com.apple.CFNetwork 0x91411153 SocketStream::SocketCallBack_stream(_CFSocket*, unsigned long, __CFData const*, void const*, void*) + 83
    16 com.apple.CoreFoundation 0x90854751 __CFSocketDoCallback + 273
    17 com.apple.CoreFoundation 0x90855f05 __CFSocketPerformV0 + 133
    18 com.apple.CoreFoundation 0x9084b595 CFRunLoopRunSpecific + 3141
    19 com.apple.CoreFoundation 0x9084bc78 CFRunLoopRunInMode + 88
    20 com.apple.MobileMe 0x00d1297d -[MM_AYOperation runOperationWithTimeOut:] + 331
    21 com.apple.MobileMe 0x00d0e4f6 -[MM_DAVRequest dispatch] + 161
    22 com.apple.CoreFoundation 0x908ca9dd _invoking__ + 29
    23 com.apple.CoreFoundation 0x908ca3c8 -[NSInvocation invoke] + 136
    24 com.apple.MobileMe 0x00d1119c +[MM_AYOperation _dispatchNextOperationInQueue] + 799
    25 com.apple.MobileMe 0x00d113ef +[MM_AYOperation _workerThread] + 235
    26 com.apple.Foundation 0x94e6fe0d -[NSThread main] + 45
    27 com.apple.Foundation 0x94e6f9b4 _NSThread__main_ + 308
    28 libSystem.B.dylib 0x93968155 pthreadstart + 321
    29 libSystem.B.dylib 0x93968012 thread_start + 34
    Thread 23 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x908beea1 ecx: 0xb0da754c edx: 0x01a2e000
    edi: 0x00000000 esi: 0x00000000 ebp: 0xb0da7858 esp: 0xb0da7840
    ss: 0x0000001f efl: 0x00010282 eip: 0x9081d3c4 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x00000024
    Binary Images:
    0x1000 - 0x9f0ff6 com.apple.iPhoto 8.0.4 (8.0.4) <cd9cc6787eb2516c5757055072a23dcc> /Applications/iPhoto.app/Contents/MacOS/iPhoto
    0xb26000 - 0xbeffe5 com.apple.DiscRecording 4.0.5 (4050.4.1) <503c77a4da92eb3262d3fbfe46e74f20> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0xc5a000 - 0xc85ff7 com.apple.DiscRecordingUI 4.0.5 (4050.4.1) <7971c12820403a195484a0e5ff45a1ae> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0xca3000 - 0xca5fff com.apple.ExceptionHandling 1.5 (10) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0xcac000 - 0xcb6fff com.apple.UpgradeChecker 1.0 (1.1) /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0xcc0000 - 0xd5cffc com.apple.MobileMe 8 (1.0) <47df6c2078c51aa21d64274eae522d93> /Applications/iPhoto.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
    0xdbe000 - 0x1017ffb com.apple.MessageFramework 3.6 (935.3) <7bb200e90f1ed167a562700f6c6f2baf> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x116e000 - 0x116efff +eOkaoCom.dylib ??? (???) <17adb0f4bf830b0b5293f843f1724644> /Applications/iPhoto.app/Contents/MacOS/eOkaoCom.dylib
    0x1172000 - 0x11a5fe7 +eOkaoDt.dylib ??? (???) <673bd0c5fac4abb7b55efd8a75e4759d> /Applications/iPhoto.app/Contents/MacOS/eOkaoDt.dylib
    0x11ab000 - 0x1311fff +eOkaoFr.dylib ??? (???) <684982fe55e4174d9cf3da4319bd57f9> /Applications/iPhoto.app/Contents/MacOS/eOkaoFr.dylib
    0x1315000 - 0x1339ff2 +eOkaoPt.dylib ??? (???) <e2ed8de87a2d83093cb52e87f135a8a8> /Applications/iPhoto.app/Contents/MacOS/eOkaoPt.dylib
    0x1340000 - 0x1387ff7 com.apple.proxtcore 1.0.0 (1.0.0) /Applications/iPhoto.app/Contents/Frameworks/ProXTCore.framework/Versions/A/Pro XTCore
    0x13cb000 - 0x13cbffa com.apple.iLifeSlideshow 1.0.3 (357.8) <3972fd155fdca7dc3144255d352a00ce> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/iLifeSlid eshow
    0x13cf000 - 0x144ffef com.apple.NetServices.NetServices 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Frameworks/NetServices.framework/ Versions/A/NetServices
    0x14b1000 - 0x14b1ffd com.apple.AppleAppSupport 1.5 (1.5) /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/AppleApp Support
    0x14b5000 - 0x14d9fe7 com.apple.speech.LatentSemanticMappingFramework 2.6.4 (2.6.4) <623d0f3f1b3fb665dc9cb196c482510a> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0x14ee000 - 0x15f4ff7 com.apple.PubSub 1.0.4 (65.11) <296d6ac9aec1acb5386e761bcd8e4d47> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x1684000 - 0x16acfff com.apple.iLifeSlideshowCore 1.0.3 (126) <cb45910ef1f302784d76e995ef03da9d> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowCore.framework/Versions/A/iLifeSlideshowCore
    0x16c6000 - 0x17dffe7 com.apple.iLifeSlideshowProducer 1.0.3 (319.5) <ce73bb90e7ab525dcd4a1576dfc6ef76> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowProducer.framework/Versions/A/iLifeSlideshowProducer
    0x185d000 - 0x195bfe3 com.apple.iLifeSlideshowRenderer 1.0.3 (313.7) <efad06d8111e15c561055c878aaf3086> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowRenderer.framework/Versions/A/iLifeSlideshowRenderer
    0x19cc000 - 0x19d4fff com.apple.iLifeSlideshowExporter 1.0.3 (125.2) <ee2c7a8e68a25f6072d8fe45c5eb5b52> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowExporter.framework/Versions/A/iLifeSlideshowExporter
    0x19dd000 - 0x19fcfed com.apple.audio.CoreAudioKit 1.5 (1.5) <585f5ec95dc8f1efe51d820be84d53a6> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x1a0e000 - 0x1a16fe7 com.apple.NetServices.BDControl 1.0.5 (1.0.5) /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDControl.framework/Ve rsions/A/BDControl
    0x1a22000 - 0x1a25fff com.apple.NetServices.BDRuleEngine 1.0.2 (1.0.2) /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDRuleEngine.framework /Versions/A/BDRuleEngine
    0x1d24000 - 0x1d25ff3 ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x1d5f000 - 0x1d6fffb com.apple.iPhoto.FlickrPublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/FlickrPublisher.publisher/Contents/Ma cOS/FlickrPublisher
    0x1fde000 - 0x1ff3fff com.apple.iPhoto.FacebookPublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/FacebookPublisher.publisher/Contents/ MacOS/FacebookPublisher
    0x16942000 - 0x16972ff7 com.apple.iPhoto.MobileMePublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/MobileMePublisher.publisher/Contents/ MacOS/MobileMePublisher
    0x1698a000 - 0x1698efff com.apple.iPhoto.RSSPublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/RSSPublisher.publisher/Contents/MacOS /RSSPublisher
    0x16a85000 - 0x16a8afff com.apple.DictionaryServiceComponent 1.1 (1.1) <0c718fcdccb0e50ce699cb46073b5b88> /System/Library/Components/DictionaryService.component/Contents/MacOS/Dictionar yService
    0x16c84000 - 0x16e8bfef com.apple.RawCamera.bundle 2.0.15 (471) <557c94fbd7c15219746393464a79cf87> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x17124000 - 0x17129ff3 libCGXCoreImage.A.dylib ??? (???) <3a78abc535c80f9819931b670da804a2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x171ba000 - 0x171bbfe1 com.apple.textencoding.unicode 2.2 (2.2) <09ac11c81bf4e673a30cc364868fdc11> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x171f7000 - 0x171f8fff com.apple.iLMBAppDefPlugin 2.0.3 (110) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAppDefPlugin.ilmbplugin/Contents/MacOS/i LMBAppDefPlugin
    0x181b2000 - 0x181bdfff com.apple.BookService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/BookService.NetService/Co ntents/MacOS/BookService
    0x181c7000 - 0x181d1fff com.apple.CalendarsService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/CalendarsService.NetServi ce/Contents/MacOS/CalendarsService
    0x181db000 - 0x181e5fff com.apple.CardsService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/CardsService.NetService/C ontents/MacOS/CardsService
    0x19c80000 - 0x19c8bfff com.apple.PrintsService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/PrintsService.NetService/ Contents/MacOS/PrintsService
    0x19cdb000 - 0x19ce2fff com.apple.iLMBAperturePlugin 2.0.3 (110) <3fa8968bafb9b6371dc0603a31120ad0> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAperturePlugin.ilmbplugin/Contents/MacOS /iLMBAperturePlugin
    0x19cea000 - 0x19cebfff com.apple.iLMBFolderPlugin 2.0.3 (110) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBFolderPlugin.ilmbplugin/Contents/MacOS/i LMBFolderPlugin
    0x19cf1000 - 0x19cf5fff com.apple.iLMBGarageBandPlugin 2.0.3 (110) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBGarageBandPlugin.ilmbplugin/Contents/Mac OS/iLMBGarageBandPlugin
    0x19e00000 - 0x19e0bfff com.apple.iLMBiMoviePlugin 2.0.3 (110) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiMoviePlugin.ilmbplugin/Contents/MacOS/i LMBiMoviePlugin
    0x1aaa4000 - 0x1aab5fff com.apple.iLMBiPhoto8Plugin 2.0.3 (110) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhoto8Plugin.ilmbplugin/Contents/MacOS/ iLMBiPhoto8Plugin
    0x1aabf000 - 0x1aac7fff com.apple.iLMBiPhotoPlugin 2.0.3 (110) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhotoPlugin.ilmbplugin/Contents/MacOS/i LMBiPhotoPlugin
    0x1aacf000 - 0x1aad7fff com.apple.iLMBiTunesPlugin 2.0.3 (110) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiTunesPlugin.ilmbplugin/Contents/MacOS/i LMBiTunesPlugin
    0x1aadf000 - 0x1ab9bfff com.apple.iTunesAccess 8.2.1 (8.2.1) <6133927fda20b296535a3e3ad5d0d30d> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x1abbb000 - 0x1abbdfff com.apple.iLMBMoviesFolderPlugin 2.0.3 (110) <72e5bf09a3f193f6ab4df1696964c9b9> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBMoviesFolderPlugin.ilmbplugin/Contents/M acOS/iLMBMoviesFolderPlugin
    0x1abc4000 - 0x1abc6fff com.apple.iLMBPhotoBoothPlugin 2.0.3 (110) <5e8b1fc9b67a374bf41ee4b64fbaf5a6> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBPhotoBoothPlugin.ilmbplugin/Contents/Mac OS/iLMBPhotoBoothPlugin
    0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <45ae763de6d253ccfc0eded8d82876a6> /usr/lib/dyld
    0x90003000 - 0x900caff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x900cb000 - 0x9021dff3 com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x902e8000 - 0x90344ff7 com.apple.htmlrendering 68 (1.1.3) <1c5c0c417891b920dfe139385fc6c155> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x90345000 - 0x90349fff libGIF.dylib ??? (???) <7714ae24eb64b48fa719fb99bcbe34f3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9034a000 - 0x903ddfff com.apple.ink.framework 101.3 (86) <d4c85b5cafa8027fff042b84a8be71dc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x903de000 - 0x90704fe2 com.apple.QuickTime 7.6.2 (1327) <3754e41d846b7948f96c9ec4c690b520> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x90705000 - 0x9070dfff com.apple.DiskArbitration 2.2.1 (2.2.1) <2664eeb3a4d0c95a21c089892a0ae8d0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9070e000 - 0x9071aff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x9071b000 - 0x9071ffff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x90720000 - 0x90764feb com.apple.DirectoryService.PasswordServerFramework 3.0.3 (3.0.3) <16be0a5cd0e8f811df4ed8fc94f6227d> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x90765000 - 0x9078dff7 com.apple.shortcut 1.0.1 (1.0) <131202e7766e327d02d55c0f5fc44ad7> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x9078e000 - 0x907d7fef com.apple.Metadata 10.5.2 (398.25) <7eb2df3e510cd308e91a6cf6d8e9fba5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x907d8000 - 0x9090bfef com.apple.CoreFoundation 6.5.6 (476.18) <2d52bab73660117571bd6486dc318f8e> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9090c000 - 0x90ac8ff3 com.apple.QuartzComposer 2.1 (106.13) <40f034e8c8fd31c9081f5283dcf22b78> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x90ac9000 - 0x90af2fff libcups.2.dylib ??? (???) <1b0435164b9dc6c773d0b1f24701e554> /usr/lib/libcups.2.dylib
    0x90af3000 - 0x90bd3fff libobjc.A.dylib ??? (???) <400e943f9e8a678eea22a1d1205490ee> /usr/lib/libobjc.A.dylib
    0x90bd4000 - 0x90bdefeb com.apple.audio.SoundManager 3.9.2 (3.9.2) <df077a8048afc3075c6f2d9e7780e78e> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x90bdf000 - 0x90c59ff8 com.apple.print.framework.PrintCore 5.5.4 (245.6) <03d0585059c20cb0bde5e000438c49e1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x90c5a000 - 0x90c72ff7 com.apple.CoreVideo 1.6.0 (20.0) <dd60118bac9aefaf88d9ab44558f05c4> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x90c73000 - 0x90c78fff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x90c79000 - 0x90c79ffe com.apple.quartzframework 1.5 (1.5) <6865aa0aeaa584b5a54d43f2f21d6c08> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x90c7a000 - 0x90ca9fe3 com.apple.AE 402.3 (402.3) <b13bfda0ad9314922ee37c0d018d7de9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x90caa000 - 0x90d27feb com.apple.audio.CoreAudio 3.1.2 (3.1.2) <5a4e6329f8dbca5dcd70924525afd24a> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x90d28000 - 0x90ef9ffb com.apple.security 5.0.5 (36371) <c13e0bb1acfdcf94be4d3ee118ef190e> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x90efa000 - 0x90f27feb libvDSP.dylib ??? (???) <4daafed78a471133ec30b3ae634b6d3e> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x90f28000 - 0x910b0fe3 com.apple.JavaScriptCore 5530.19 (5530.19) <df70ffca834a208aae04aa045009a6e7> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x910b1000 - 0x91161fff edu.mit.Kerberos 6.0.13 (6.0.13) <804bd1b3f08fb57396781f012006367c> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x91162000 - 0x91169ff7 libCGATS.A.dylib ??? (???) <211348279493364e9920adc86484cedd> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x9116a000 - 0x91175fff com.apple.dotMacLegacy 3.1 (246) <1303cf72b1dd19c762e28784dfa78db8> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x91176000 - 0x9118bffb com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9118c000 - 0x9119cfff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <273d96ff861dc68be659c07ef56f599a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9119d000 - 0x9119dfff com.apple.Carbon 136 (136) <eb3c292d5544512f86e1e4e743c23f8e> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9119e000 - 0x911a0fff com.apple.securityhi 3.0 (30817) <b3517782ad664a21e4fd60242e92723e> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x911a1000 - 0x911a2ffc libffi.dylib ??? (???) <eaf10b99a3fbc4920b175809407466c0> /usr/lib/libffi.dylib
    0x911a3000 - 0x911d5ff7 com.apple.DotMacSyncManager 1.2.4 (308) <99bb01aa2cdb0d860a11a1097ffe421d> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x911d6000 - 0x91279ff7 com.apple.QuickTimeImporters.component 7.6.2 (1327) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x9127a000 - 0x91281ffe libbsm.dylib ??? (???) <fa7ae5f1a621d9b69e7e18747c9405fb> /usr/lib/libbsm.dylib
    0x91282000 - 0x9128dfe7 libCSync.A.dylib ??? (???) <9e3544fe087bb4dc760b7afe0850dd6c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9128e000 - 0x912c2fef com.apple.bom 9.0.1 (136.1.1) <f69713d261e9a8ba1d48654a4a15057f> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x912c3000 - 0x913abff3 com.apple.CoreData 100.2 (186.1) <8fb61e1714a4b8d587ce97605ad32547> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x913ac000 - 0x91450fec com.apple.CFNetwork 438.10 (438.12) <fde64bbb20532794396fb21911ccaa98> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91451000 - 0x91470ffa libJPEG.dylib ??? (???) <b822342bcc764c83d4557a8b67fa0c1c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91471000 - 0x915aaff7 libicucore.A.dylib ??? (???) <cac059ebdac7d9a63ee0f7a648c9f6cf> /usr/lib/libicucore.A.dylib
    0x915ab000 - 0x915cffff libxslt.1.dylib ??? (???) <6a58a8724941e8a0cfeb0cae28ea3f37> /usr/lib/libxslt.1.dylib
    0x915d0000 - 0x925abff6 com.apple.QuickTimeComponents.component 7.6.2 (1327) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x925ac000 - 0x925b5fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <da2d8411921a3fd8bc898dc753b7f3ee> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x925b6000 - 0x925b6ff8 com.apple.ApplicationServices 34 (34) <ee7bdf593da050bb30c7a1fc446eb8a6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x925b7000 - 0x925d3fff com.apple.IMFramework 4.0.8 (584) <49551f914cd1c3ba154f15f3765803a9> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x925d4000 - 0x925d4ffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x925d5000 - 0x92aa6fbe libGLProgrammability.dylib ??? (???) <7f18294a7bd0b6afe4319f29187fc70d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x92aa7000 - 0x92ad9fff com.apple.LDAPFramework 1.4.5 (110) <0625b4f70c28b2f239ca088edaf9cf0f> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x92ada000 - 0x92ae9fff libsasl2.2.dylib ??? (???) <2091a1973f23f66ea9b377d43daf50ea> /usr/lib/libsasl2.2.dylib
    0x92aea000 - 0x92b7dff3 com.apple.ApplicationServices.ATS 3.7 (???) <a535fc4982d3acff6530ec25c402e679> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x92b7e000 - 0x92b7effd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x92b7f000 - 0x92c26feb com.apple.QD 3.11.56 (???) <a94d0f5438b730e88e5efdb233295c52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x92c27000 - 0x92c2cfff com.apple.DisplayServicesFW 2.0.2 (2.0.2) <cd0842e3c0bab2806e3eba5f723f4c4a> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x92c2d000 - 0x92c30fff com.apple.help 1.1 (36) <1a25a8fbb49a830efb31d5c0a52939cd> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92c31000 - 0x92c9effb com.apple.WhitePagesFramework 1.2 (122.0) /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x92c9f000 - 0x92cacfe7 com.apple.opengl 1.5.10 (1.5.10) <5a2813f80c9441170cc1ab8a3dac5038> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x92cc5000 - 0x92cdbfff com.apple.DictionaryServices 1.0.0 (1.0.0) <7d20b8d1fb238c3e71d0fa6fda18c4f7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x92cdc000 - 0x92ce1ffc com.apple.KerberosHelper 1.1 (1.0) <c6b942d705fa0460ace11af01f316db1> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x92ce2000 - 0x92d00fff libresolv.9.dylib ??? (???) <9ed809256ce8913cddc3269c2e364654> /usr/lib/libresolv.9.dylib
    0x92d01000 - 0x92d73fff com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x92d74000 - 0x92da5ffb com.apple.quartzfilters 1.5.0 (1.5.0) <92b4f39479fdcabae0d8f53febd22fad> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x92e9b000 - 0x92ee5fe1 com.apple.securityinterface 3.0.2 (36684) <7109034b9898a11506fc67e887e69d2b> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x92ee6000 - 0x92fa0fe3 com.apple.CoreServices.OSServices 227 (227) <30cebcb68b1b571df7d77474e0c31556> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x92fa1000 - 0x92fb1ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <bc7eb703ddc37bf85adf93e35efd3947> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x92fb5000 - 0x92fb5ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x92fc0000 - 0x92fc0ff8 com.apple.Cocoa 6.5 (???) <a1bc9247cf65c20f1a44d0973cbe649c> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x92fc1000 - 0x937bffef com.apple.AppKit 6.5.7 (949.46) <a80f8cb62f6bdcb3bed3c8675d55881d> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x937c0000 - 0x9384afe3 com.apple.DesktopServices 1.4.8 (1.4.8) <3065de6531ce839c7cb5b6dd70e03f4f> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9384b000 - 0x93869ff3 com.apple.DirectoryService.Framework 3.5.6 (3.5.6) <daa1307737197c7757f44f16370249dc> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9386a000 - 0x938f6ff7 com.apple.LaunchServices 290.3 (290.6) <bdba267184df88bd5b8e2116ea903872> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x938f7000 - 0x93935fff libGLImage.dylib ??? (???) <a6425aeb77f4da13212ac75df57b056d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x93936000 - 0x93a9dff3 libSystem.B.dylib ??? (???) <b47c8e6e45aef620730710a732bf1930> /usr/lib/libSystem.B.dylib
    0x93a9e000 - 0x93aedfff com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x93aee000 - 0x9418efe3 com.apple.CoreGraphics 1.409.3 (???) <25dceb14af3455b768f56e8765ecf3ca> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9418f000 - 0x941bafe7 libauto.dylib ??? (???) <2e44c523b851e8e25f05d13a48070a58> /usr/lib/libauto.dylib
    0x941bb000 - 0x94214ff7 libGLU.dylib ??? (???) <a3b9be30100a25a6cd3ad109892f52b7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x94215000 - 0x9426fff7 com.apple.CoreText 2.0.4 (???) <f0b6c1d4f40bd21505097f0255abfead> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x94270000 - 0x943d3ff2 com.apple.CalendarStore 3.0.7 (858) /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x943d4000 - 0x9443affb com.apple.ISSupport 1.8 (38.3) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x9443b000 - 0x94441fff com.apple.print.framework.Print 218.0.3 (220.2) <5b7f4ef7c2df36aff9605377775781e4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x94442000 - 0x9445dffb libPng.dylib ??? (???) <0d6b991afc831ea06f2958e5933d33dd> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9445e000 - 0x9445effd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9445f000 - 0x94470ffe com.apple.CFOpenDirectory 10.5 (10.5) <4f1fe76bbb063b97eb78057f6be30d66> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x94471000 - 0x94552ff7 libxml2.2.dylib ??? (???) <2f6b294896866822330a8888b7f53b75> /usr/lib/libxml2.2.dylib
    0x94556000 - 0x94630ff7 com.apple.WebKit 5530.19 (5530.19.2) <b111dcaa90ec230e037d757cc9b56547> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x94631000 - 0x94649fff com.apple.openscripting 1.2.8 (???) <0129d2f750f5ddcb92f4acf8a3541952> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9464a000 - 0x94658ffd libz.1.dylib ??? (???) <a98b3b221a72b54faf73ded3dd7000e5> /usr/lib/libz.1.dylib
    0x94659000 - 0x94933ff3 com.apple.CoreServices.CarbonCore 786.11 (786.13) <9e2d85d52e5e2951aa4dd53c48ccc52f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x94934000 - 0x94985ff7 com.apple.HIServices 1.7.0 (???) <67988718780a0a367b1bde62f5a67c4b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x94986000 - 0x949d7feb com.apple.framework.familycontrols 1.0.4 (1.0.4) <0c445b73c4531aca4355e3ffdd2715fa> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x949d8000 - 0x949f5ff7 com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x949f6000 - 0x94a38fef com.apple.NavigationServices 3.5.2 (163) <72cdc9d21f6690837870923e7b8ca358> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x94a39000 - 0x94a75fff com.apple.DAVKit 3.0.6 (661) /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x94a76000 - 0x94a9ffff com.apple.CoreMediaPrivate 15.0 (15.0) /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x94aa0000 - 0x94b2cff7 com.apple.framework.IOKit 1.5.2 (???) <97b9f9d584f48891377f0481b9104434> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x94b2d000 - 0x94b2dffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x94b2e000 - 0x94babfef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x94bac000 - 0x94bedfe7 libRIP.A.dylib ??? (???) <69bd09fcd8d8b235cee7a405290d6818> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94bee000 - 0x94d6dfff com.apple.AddressBook.framework 4.1.2 (700) <41a71b250286dc8d8bcee30784b894c8> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94d6e000 - 0x94da4fef libtidy.A.dylib ??? (???) <7b9fc90dc0d50da27a24f6f84ccdd7b7> /usr/lib/libtidy.A.dylib
    0x94da5000 - 0x94db1fff libbz2.1.0.dylib ??? (???) <1922ca2214a131073cd1c7ef3ee76398> /usr/lib/libbz2.1.0.dylib
    0x94db2000 - 0x94e64ffb libcrypto.0.9.7.dylib ??? (???) <9d714c92872a93dd127ea8556b2c8945> /usr/lib/libcrypto.0.9.7.dylib
    0x94e65000 - 0x950e1fe7 com.apple.Foundation 6.5.8 (677.24) <aa84b0383891378c348ffa4a94853082> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x950e2000 - 0x950e4ff5 libRadiance.dylib ??? (???) <82d606c49f5dc77231f9d0e2be9ed6ab> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x950e5000 - 0x95976fff com.apple.WebCore 5530.19 (5530.19) <1b48d8dc3e18ac4a1e62af44f0a6f796> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95977000 - 0x9597efe9 libgcc_s.1.dylib ??? (???) <e280ddf3f5fb3049e674edcb109f389a> /usr/lib/libgcc_s.1.dylib
    0x9597f000 - 0x959dcffb libstdc++.6.dylib ??? (???) <f75e5133d72769de5ce6c06153fc65f6> /usr/lib/libstdc++.6.dylib
    0x959dd000 - 0x959f0fff com.apple.IMUtils 4.0.8 (584) <2105663d09d2bee0d8742159d0581a3e> /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x959f1000 - 0x95a70ff5 com.apple.SearchKit 1.2.1 (1.2.1) <f28f8dd0f155a6453411a0c9b5702764> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x95a71000 - 0x95a75fff com.apple.OpenDirectory 10.5 (10.5) <46ccc9f47cedee69d1c65838c8e4f642> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x95a76000 - 0x95bbcff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) <b407f06ff9b6893899e2e399cb65c953> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x95bbd000 - 0x95bfcfef libTIFF.dylib ??? (???) <d4bcc9b9c508e53849d2d46bb6900922> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x95bfd000 - 0x95d35fe7 com.apple.imageKit 1.0.2 (1.0) <c6dd88d87997153684f4aa468512c1a8> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x95d36000 - 0x95d6dfff com.apple.SystemConfiguration 1.9.2 (1.9.2) <eab546255ac099b9616df999c9359d0e> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x95d6e000 - 0x95d7affe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x95d7b000 - 0x95d9ffeb libssl.0.9.7.dylib ??? (???) <8084593b773bec8f2b9614fd23c5ed73> /usr/lib/libssl.0.9.7.dylib
    0x96009000 - 0x9600efff com.apple.CommonPanels 1.2.4 (85) <c135f02edd6b2e2864311e0b9d08a98d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9600f000 - 0x9619efe7 com.apple.CoreAUC 3.07.3 (3.07.3) <f98585dd6479989bf85beae472aa3656> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x9619f000 - 0x961a3ffd com.apple.AOSNotification 1.0.0 (68.13) <d2a1f7c6e054d7451b17c7301e4dadd5> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x961a4000 - 0x96562fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x96563000 - 0x965a3fff com.apple.CoreMediaIOServicesPrivate 20.0 (20.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x965a4000 - 0x96941fef com.apple.QuartzCore 1.5.8 (1.5.8) <a28fa54346a9f9d5b3bef076a1ee0fcf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x96942000 - 0x96951ffe com.apple.DSObjCWrappers.Framework 1.3 (1.3) <182986b74247b459b2a67a47071bdc6b> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x96952000 - 0x96952ffa com.apple.CoreServices 32 (32) <373d6a888f9204641f313bc6070ae065> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x96953000 - 0x96a0aff3 com.apple.QTKit 7.6.2 (1327) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x96a0b000 - 0x96a45fe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x96a46000 - 0x96a4dfff com.apple.agl 3.0.9 (AGL-3.0.9) <bc62de7d16827bd12a2cb1016aedfcdc> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x96a4e000 - 0x96ac0ff7 com.apple.iLifeMediaBrowser 2.0.3 (346) <2f558ebc56b9b3122efac1bcad78a0db> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x96af1000 - 0x96b78ff7 libsqlite3.0.dylib ??? (???) <3334ea5af7a911637413334154bb4100> /usr/lib/libsqlite3.0.dylib
    0x96bc8000 - 0x96c93fff com.apple.ColorSync 4.5.1 (4.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x96c94000 - 0x96cceffe com.apple.securityfoundation 3.0.2 (36131) <39663c9b6f1a09d0566305d9f87cfc91> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x96ccf000 - 0x970dffef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x970e0000 - 0x973e8fff com.apple.HIToolbox 1.5.5 (???) <b17766e3d8800a73f534c41f624f5ac4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x973e9000 - 0x974cafff com.apple.syncservices 3.2 (389.17) <baa8467fb9c7ded4bbcccc864d24d327> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x974d0000 - 0x974d0ffe com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <1f4c10fcc17187a6f106e0a0be8236b0> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0xba900000 - 0xba916fff libJapaneseConverter.dylib ??? (???) <25118755c7d20dc68991f00f2e1fb979> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    kown
    I was able to do exactly what you said and import one of the movies that was an issue before, then upload it to Mobileme.
    That suggests some minor corruption in the original Library.
    Option 1
    Back Up and try rebuild the library: hold down the apple and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.
    However, when it downloaded some of my videos from the gallery folder in question, about half of the videos downloaded a 0:00 minutes and basically only show the first frame. Could this have something to do with it or is this a separate issue?
    A Separate issue I would guess. It sounds like you’re downloading the +thumbnail icon+ for these guys rather than the actual video.
    Regards
    TD

  • Problem with video recording in wtk2.2

    Hi,
    I was trying to create a small utility for video recording using MMAPI.but the problem is that its is not working in the wtk2.2 emulator even after i include the mmapi package to the environment.
    Video player created by the following way is not working
    videoPlayer = Manager.createPlayer("capture://video");//
    but Audio recording is working properly
    audioPlayer = Manager.createPlayer("capture://audio");//
    any help?
    Mandrake

    At last video recording using the combination of JSR 135+JSR 75 worked fine for me in Nokia N70 as well as Siemens S75!!!!!
    Cheers
    Prashanth

Maybe you are looking for