Pictures in a database

Hi.
Which is the best way (which format) to save a picture in the database. I have a table:
Picture (id(number), pic(long raw)).
I noticed that pictures stored in a database as long raw occupied about 30% more disk space as if they are stored in a file system. Is this true? I tried GIF format.
I'm using Form to store and retrive(view) pictures from a database.
Thanks, Miha.

Pls check following MOS notes, you will get your answer
How to enter images in the HRMS Application [ID 103263.1]
Cannot Load Images in Oracle HRMS [ID 398926.1]
How To Upload 100 Employee Pictures in Oracle HRMS (Persons Screen) Via API [ID 602252.1]
from GUI
How To Load New Photographs to the Employee Directory [ID 452165.1]
regards,

Similar Messages

  • Vanishing pictures in the database

    I have an AppleWorks (6.2.9) database which contains some multi-media containers with pictures.
    One picture in the database (usually the same) disapears regularly. Somtimes it is gone after scrolling through the database sometimes after reopening. In rare occasions it even reapears (so the data seames to be somewhere).
    This happens with all layouts.
    Putting this (or an other) picture again in container does not help for long, soon it will be "lost" again. Moreover putting the picture again, sometimes has the effect that the next picture(s) also get "lost".
    Also Appleworks crashes in irregular intervals when opening this data base. The database then is lost I have to go back to an backup.
    Or if I want to use this database for a serial-letter (right English word?) AppleWorks crashes.
    Deleting the preferences had no effect.
    And I do not use an Unicode keyboard-Setup.
    The database contains about 150 "files" with one-two pictures each. The pictures are JPEGs of about 720x720 Pixels. The database file is about 10MB in total.
    If there is no "solution", is there an more recent Database application I can buy that can import (content, layouts, ...) of the Appleworks database (Filemaker...)? Continue like that becomes to dangerous for me, it crashes to frequent and there is a lot of work in this database.
    Thanks
    G5 (M9032)   Mac OS X (10.4.10)   3GB Ram, Radeon 9800 BTO

    Hello
    The AppleWorks database containing multimedia fields are highly prone to corruption.
    It seems that your database IS corrupted.
    My point of vue is that for important tasks assuming multimedia fields it would be better to use something like FileMaker.
    Alas, only embedded datas may be transferred from AW database to FM one.
    The two apps where created by Claris, they have some resemblances in the patterns but the functionnalities are highly different.
    Switch from AW database to FM one would not be trivial but when it will be done, you will have a stable tool.
    Maybe one day iWork will offer a database application able to import AW database but, at this time it is simply a dream.
    Yvan KOENIG (from FRANCE samedi 21 juillet 2007 19:41:00)

  • Pictures In Oracle Database

    Hi,
    I want to store images into oracle database but i dont know how. I have a form from developer and a database.
    Please help.
    Grace

    To store pictures in your database you need a table with a BLOB column and one application in oracle forms or java to load them. This code is a web servlet to display photos in a web page:
    package kas.web.interfases.metrics;
    * GetFoto.java
    import java.io.*;
    import java.sql.*;
    import javax.servlet.ServletException;
    import javax.servlet.http.*;
    import oracle.jdbc.driver.OracleDriver;
    public class GetFoto extends HttpServlet {
    public GetFoto() {
    public void doGet(HttpServletRequest request, HttpServletResponse response)
    throws IOException, ServletException {
    doPost(request, response);
    public void doPost(HttpServletRequest request, HttpServletResponse response)
    throws IOException, ServletException
    {   System.out.println("test");
    try {
    DriverManager.registerDriver(new OracleDriver());
    catch(Exception exception) { }
    try {
    Connection conn = DriverManager.getConnection("jdbc:oracle:thin:@172.21.0.96:1521:PRESIDEN", "kas", "kas");
    Statement stmt = conn.createStatement();
    if(conn != null) {
    String cod = request.getParameter("cod");
    if(cod == null)
    cod = "2";
    String sql = "SELECT emf_foto1 FROM pla_emf_empfoto WHERE emf_codemp=" + cod;
    if(!cod.equals("")) {
    ResultSet rset = stmt.executeQuery(sql);
    try {
    if(rset.next()) {   ////System.out.println("test2");
    Blob ablob = rset.getBlob("emf_foto1");
    response.setContentType("image/gif");
    OutputStream out = response.getOutputStream();
    long bloblen = ablob.length();
    int buffersize = (int)bloblen;
    int bytesRead = 0;
    byte b[] = new byte[buffersize];
    InputStream is = ablob.getBinaryStream();
    while((bytesRead = is.read(b)) != -1)
    out.write(b, 0, bytesRead);
    is.close();
    response.flushBuffer();
    finally {
    rset.close();
    conn.close();
    catch(SQLException sqlexception) {
    System.out.println(sqlexception.toString());

  • Store Pictures in Oracle databases

    Please anybody can tell about that, how to store pictures or images in oracle database 9i.

    To store pictures in your database you need a table with a BLOB column and one application in oracle forms or java to load them. This code is a web servlet to display photos in a web page:
    package kas.web.interfases.metrics;
    * GetFoto.java
    import java.io.*;
    import java.sql.*;
    import javax.servlet.ServletException;
    import javax.servlet.http.*;
    import oracle.jdbc.driver.OracleDriver;
    public class GetFoto extends HttpServlet {
    public GetFoto() {
    public void doGet(HttpServletRequest request, HttpServletResponse response)
    throws IOException, ServletException {
    doPost(request, response);
    public void doPost(HttpServletRequest request, HttpServletResponse response)
    throws IOException, ServletException
    {   System.out.println("test");
    try {
    DriverManager.registerDriver(new OracleDriver());
    catch(Exception exception) { }
    try {
    Connection conn = DriverManager.getConnection("jdbc:oracle:thin:@172.21.0.96:1521:PRESIDEN", "kas", "kas");
    Statement stmt = conn.createStatement();
    if(conn != null) {
    String cod = request.getParameter("cod");
    if(cod == null)
    cod = "2";
    String sql = "SELECT emf_foto1 FROM pla_emf_empfoto WHERE emf_codemp=" + cod;
    if(!cod.equals("")) {
    ResultSet rset = stmt.executeQuery(sql);
    try {
    if(rset.next()) {   ////System.out.println("test2");
    Blob ablob = rset.getBlob("emf_foto1");
    response.setContentType("image/gif");
    OutputStream out = response.getOutputStream();
    long bloblen = ablob.length();
    int buffersize = (int)bloblen;
    int bytesRead = 0;
    byte b[] = new byte[buffersize];
    InputStream is = ablob.getBinaryStream();
    while((bytesRead = is.read(b)) != -1)
    out.write(b, 0, bytesRead);
    is.close();
    response.flushBuffer();
    finally {
    rset.close();
    conn.close();
    catch(SQLException sqlexception) {
    System.out.println(sqlexception.toString());

  • Can I repair Pictures/iPhoto Library/Database/History/Changes/.....plist

    Tech tool pro is giving me a list of four playlists with unrepairable errors. Should I delete them, try to find them somewhere in my Time Machine backup or just ignore them? I have listed them below. Everything seems to work but I have nearly 20 000 pictures.
    Close tag on line 50787 does not match open tag integer:
    /Volumes/Untitled/Users/myname/Pictures/iPhoto Library/Database/History/Changes/0000000002.plist
    Encountered unexpected character d on line 906:
    /Volumes/Untitled/Users/myname/Pictures/iPhoto Library/Database/History/Changes/0000000003.plist
    Encountered unexpected character d on line 23777:
    /Volumes/Untitled/Users/myname/Pictures/iPhoto Library/Database/History/Changes/0000000004.plist
    Found non-key inside <dict> at line 195087:
    /Volumes/Untitled/Users/myname/Pictures/iPhoto Library/Database/History/Changes/0000000006.plist
    Using version  9.4.2

    Hi Terence,
    If you could please help me.
    Thanks.
    Bidhan.
    Process:         iPhoto [1332]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.4.2 (9.4.2)
    Build Info:      iPhotoProject-710042000000000~1
    Code Type:       X86 (Native)
    Parent Process:  launchd [198]
    User ID:         501
    Date/Time:       2012-12-27 15:34:59.449 +0530
    OS Version:      Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Interval Since Last Report:          54712 sec
    Crashes Since Last Report:           14
    Per-App Interval Since Last Report:  7162 sec
    Per-App Crashes Since Last Report:   13
    Anonymous UUID:                      9C0087D9-04E5-50E9-22E9-7DDA1C8551B6
    Crashed Thread:  18  Import thread 0
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000c49
    VM Regions Near 0xc49:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/iPhoto.app/Contents/MacOS/iPhoto
        VM_ALLOCATE            0000000000001000-000000000003a000 [  228K] ---/--- SM=NUL 
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x92f9c7d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x92f9bcb0 mach_msg + 68
    2   com.apple.CoreFoundation                0x93107599 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x9310cf7f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x9310c63a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x9310c4ab CFRunLoopRunInMode + 123
    6   com.apple.HIToolbox                     0x9813b15a RunCurrentEventLoopInMode + 242
    7   com.apple.HIToolbox                     0x9813aec9 ReceiveNextEventCommon + 374
    8   com.apple.HIToolbox                     0x9813ad44 BlockUntilNextEventMatchingListInMode + 88
    9   com.apple.AppKit                        0x9081fa3a _DPSNextEvent + 724
    10  com.apple.AppKit                        0x9081f26c -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    11  com.apple.AppKit                        0x908156cc -[NSApplication run] + 855
    12  com.apple.AppKit                        0x907b86f6 NSApplicationMain + 1053
    13  com.apple.iPhoto                        0x00049c99 0x3a000 + 64665
    14  com.apple.iPhoto                        0x000492e5 0x3a000 + 62181
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x92f9ec02 __select_nocancel + 10
    1   libdispatch.dylib                       0x97962a08 _dispatch_mgr_invoke + 376
    2   libdispatch.dylib                       0x979627a9 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x92f9e8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x98af8289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x98af8512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x960953c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x960951ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x9609a740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01fe2e12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x01fe1efa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x960671d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9606715b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x98af3557 _pthread_start + 344
    11  libsystem_c.dylib                       0x98addcee thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x92f9e8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x98af8289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x98af8512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x960953c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x960951ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x9609a740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01fe2e12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x01fe1efa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x960671d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9606715b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x98af3557 _pthread_start + 344
    11  libsystem_c.dylib                       0x98addcee thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x92f9e8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x98af8289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x98af8512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x960953c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x960951ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x9609a740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01fe2e12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x01fe1efa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x960671d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9606715b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x98af3557 _pthread_start + 344
    11  libsystem_c.dylib                       0x98addcee thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x92f9e8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x98af8289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x98af8512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x960953c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x960951ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x9609a740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01fe2e12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x01fe1efa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x960671d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9606715b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x98af3557 _pthread_start + 344
    11  libsystem_c.dylib                       0x98addcee thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x92f9e8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x98af8289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x98af8512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x960953c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x960951ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x9609a740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01fe2e12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x01fe1efa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x960671d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9606715b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x98af3557 _pthread_start + 344
    11  libsystem_c.dylib                       0x98addcee thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x92f9e8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x98af8289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x98af8512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x960953c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x960951ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x9609a740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01fe2e12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x01fe1efa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x960671d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9606715b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x98af3557 _pthread_start + 344
    11  libsystem_c.dylib                       0x98addcee thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x92f9e8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x98af8289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x98af8512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x960953c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x960951ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x9609a740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01fe2e12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x01fe1efa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x960671d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9606715b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x98af3557 _pthread_start + 344
    11  libsystem_c.dylib                       0x98addcee thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x92f9f0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x98af604c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x98af5e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x98addcca start_wqthread + 30
    Thread 10:
    0   libsystem_kernel.dylib                  0x92f9f0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x98af604c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x98af5e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x98addcca start_wqthread + 30
    Thread 11:
    0   libsystem_kernel.dylib                  0x92f9e8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x98af8289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x98af8512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x960953c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x960951ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x9609a740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.RedRock                       0x0262f48f -[RKAsyncImageRenderer _backgroundRenderThread:] + 173
    7   libobjc.A.dylib                         0x923c8586 -[NSObject performSelector:] + 62
    8   com.apple.proxtcore                     0x01febdf9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    9   libobjc.A.dylib                         0x923c85d3 -[NSObject performSelector:withObject:] + 70
    10  com.apple.proxtcore                     0x01fe422c -[XTSubscription postMessage:] + 191
    11  com.apple.proxtcore                     0x01fe3aef -[XTDistributor distributeMessage:] + 681
    12  com.apple.proxtcore                     0x01fe3313 -[XTThread handleMessage:] + 515
    13  com.apple.proxtcore                     0x01fe1f10 -[XTThread run:] + 434
    14  com.apple.Foundation                    0x960671d8 -[NSThread main] + 45
    15  com.apple.Foundation                    0x9606715b __NSThread__main__ + 1396
    16  libsystem_c.dylib                       0x98af3557 _pthread_start + 344
    17  libsystem_c.dylib                       0x98addcee thread_start + 34
    Thread 12:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x92f9c7d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x92f9bcb0 mach_msg + 68
    2   com.apple.CoreFoundation                0x93107599 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x9310cf7f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x9310c63a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x9310c4ab CFRunLoopRunInMode + 123
    6   com.apple.Foundation                    0x9600313a +[NSURLConnection(Loader) _resourceLoadLoop:] + 395
    7   com.apple.Foundation                    0x960671d8 -[NSThread main] + 45
    8   com.apple.Foundation                    0x9606715b __NSThread__main__ + 1396
    9   libsystem_c.dylib                       0x98af3557 _pthread_start + 344
    10  libsystem_c.dylib                       0x98addcee thread_start + 34
    Thread 13:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x92f9ebe6 __select + 10
    1   com.apple.CoreFoundation                0x93150c00 __CFSocketManager + 1632
    2   libsystem_c.dylib                       0x98af3557 _pthread_start + 344
    3   libsystem_c.dylib                       0x98addcee thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x92f9f0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x98af604c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x98af5e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x98addcca start_wqthread + 30
    Thread 15:
    0   libsystem_kernel.dylib                  0x92f9f0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x98af604c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x98af5e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x98addcca start_wqthread + 30
    Thread 16:
    0   libsystem_kernel.dylib                  0x92f9f0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x98af604c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x98af5e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x98addcca start_wqthread + 30
    Thread 17:
    0   libsystem_kernel.dylib                  0x92f9e8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x98af8220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x98b7e0a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.Foundation                    0x96065734 -[NSCondition wait] + 274
    4   com.apple.iPhoto                        0x0008ba64 0x3a000 + 334436
    5   com.apple.iPhoto                        0x0008b672 0x3a000 + 333426
    6   com.apple.CoreFoundation                0x93162d6d __invoking___ + 29
    7   com.apple.CoreFoundation                0x93162ca7 -[NSInvocation invoke] + 279
    8   com.apple.RedRock                       0x0264b85b -[RKInvoker _invokeTarget:] + 33
    9   com.apple.RedRock                       0x0265c5f4 -[RKInvoker _invokeTargetWithPool:] + 68
    10  libobjc.A.dylib                         0x923c85d3 -[NSObject performSelector:withObject:] + 70
    11  com.apple.proxtcore                     0x01febdf9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    12  libobjc.A.dylib                         0x923c85d3 -[NSObject performSelector:withObject:] + 70
    13  com.apple.proxtcore                     0x01fe422c -[XTSubscription postMessage:] + 191
    14  com.apple.proxtcore                     0x01fe3aef -[XTDistributor distributeMessage:] + 681
    15  com.apple.proxtcore                     0x01fe3313 -[XTThread handleMessage:] + 515
    16  com.apple.proxtcore                     0x01fe1f10 -[XTThread run:] + 434
    17  com.apple.Foundation                    0x960671d8 -[NSThread main] + 45
    18  com.apple.Foundation                    0x9606715b __NSThread__main__ + 1396
    19  libsystem_c.dylib                       0x98af3557 _pthread_start + 344
    20  libsystem_c.dylib                       0x98addcee thread_start + 34
    Thread 18 Crashed:: Import thread 0
    0   com.apple.QuickTimeComponents.component          0x91d4a129 0x91640000 + 7381289
    1   com.apple.QuickTimeComponents.component          0x91d4ccbd 0x91640000 + 7392445
    2   com.apple.QuickTimeComponents.component          0x91d34e52 0x91640000 + 7294546
    3   com.apple.CoreServices.CarbonCore          0x92963adb callComponentStorage_44 + 25
    4   com.apple.CoreServices.CarbonCore          0x92954abf CallComponentFunctionCommonWithStorage(char**, ComponentParameters*, long (*)(), unsigned long) + 45
    5   com.apple.CoreServices.CarbonCore          0x92954aff CallComponentFunctionWithStorageProcInfo + 30
    6   com.apple.QuickTimeComponents.component          0x91d3360d JPEG_DComponentDispatch + 77
    7   com.apple.CoreServices.CarbonCore          0x928ceaee CallComponent + 151
    8   com.apple.CoreServices.CarbonCore          0x928ceb48 CallComponentDispatch + 29
    9   com.apple.QuickTimeComponents.component          0x921d1c21 0x91640000 + 12131361
    10  com.apple.QuickTimeComponents.component          0x91d2f51b 0x91640000 + 7271707
    11  com.apple.QuickTimeComponents.component          0x91d30aef 0x91640000 + 7277295
    12  com.apple.QuickTimeComponents.component          0x91d31ea8 0x91640000 + 7282344
    13  com.apple.CoreServices.CarbonCore          0x92963adb callComponentStorage_44 + 25
    14  com.apple.CoreServices.CarbonCore          0x92954abf CallComponentFunctionCommonWithStorage(char**, ComponentParameters*, long (*)(), unsigned long) + 45
    15  com.apple.CoreServices.CarbonCore          0x92954aff CallComponentFunctionWithStorageProcInfo + 30
    16  com.apple.QuickTimeComponents.component          0x91d2e187 Base_CDComponentDispatch + 81
    17  com.apple.CoreServices.CarbonCore          0x928ceaee CallComponent + 151
    18  com.apple.CoreServices.CarbonCore          0x928ceb65 DelegateComponentCall + 24
    19  com.apple.QuickTimeComponents.component          0x91d33625 JPEG_DComponentDispatch + 101
    20  com.apple.CoreServices.CarbonCore          0x928ceaee CallComponent + 151
    21  com.apple.CoreServices.CarbonCore          0x928ceb48 CallComponentDispatch + 29
    22  com.apple.QuickTime                     0x98f31f4d ImageCodecBandDecompress + 43
    23  com.apple.QuickTime                     0x98f25b05 DoBandedDecompress + 17336
    24  com.apple.QuickTime                     0x98f216e0 ICMAction + 1286
    25  com.apple.QuickTime                     0x98f20fd0 ICMDeviceLoop + 3924
    26  com.apple.QuickTime                     0x98f270a0 DecompressSequenceFrameWhen + 803
    27  com.apple.QuickTime                     0x98f26d74 DecompressSequenceFrameS + 61
    28  com.apple.QuickTimeImporters.component          0x900b97ad importGraphicDrawInternal + 1834
    29  com.apple.QuickTimeImporters.component          0x900b31ea importGraphicDrawOrDecide + 1782
    30  com.apple.CoreServices.CarbonCore          0x92954abf CallComponentFunctionCommonWithStorage(char**, ComponentParameters*, long (*)(), unsigned long) + 45
    31  com.apple.CoreServices.CarbonCore          0x92954aff CallComponentFunctionWithStorageProcInfo + 30
    32  com.apple.QuickTimeImporters.component          0x900b1d31 ImportGraphicComponentDispatch + 81
    33  com.apple.CoreServices.CarbonCore          0x928ceaee CallComponent + 151
    34  com.apple.CoreServices.CarbonCore          0x928ceb65 DelegateComponentCall + 24
    35  com.apple.QuickTimeImporters.component          0x90050768 ImportJFIFComponentDispatch + 98
    36  com.apple.CoreServices.CarbonCore          0x928ceaee CallComponent + 151
    37  com.apple.CoreServices.CarbonCore          0x928ceb48 CallComponentDispatch + 29
    38  com.apple.QuickTimeComponents.component          0x921d2b61 0x91640000 + 12135265
    39  com.apple.QuickTimeComponents.component          0x91f0fbe0 0x91640000 + 9239520
    40  com.apple.CoreServices.CarbonCore          0x9296391f callComponentStorage_444 + 32
    41  com.apple.CoreServices.CarbonCore          0x92954abf CallComponentFunctionCommonWithStorage(char**, ComponentParameters*, long (*)(), unsigned long) + 45
    42  com.apple.CoreServices.CarbonCore          0x92954aff CallComponentFunctionWithStorageProcInfo + 30
    43  com.apple.QuickTimeComponents.component          0x91f0eb92 ExportBaseComponentDispatch + 81
    44  com.apple.CoreServices.CarbonCore          0x928ceaee CallComponent + 151
    45  com.apple.CoreServices.CarbonCore          0x928ceb65 DelegateComponentCall + 24
    46  com.apple.QuickTimeComponents.component          0x91f133e2 ExportJFIFComponentDispatch + 98
    47  com.apple.CoreServices.CarbonCore          0x928ceaee CallComponent + 151
    48  com.apple.CoreServices.CarbonCore          0x928ceb48 CallComponentDispatch + 29
    49  com.apple.QuickTimeComponents.component          0x921d3825 0x91640000 + 12138533
    50  com.apple.QuickTimeComponents.component          0x91f0f125 0x91640000 + 9236773
    51  com.apple.CoreServices.CarbonCore          0x92963adb callComponentStorage_44 + 25
    52  com.apple.CoreServices.CarbonCore          0x92954abf CallComponentFunctionCommonWithStorage(char**, ComponentParameters*, long (*)(), unsigned long) + 45
    53  com.apple.CoreServices.CarbonCore          0x92954aff CallComponentFunctionWithStorageProcInfo + 30
    54  com.apple.QuickTimeComponents.component          0x91f0eb92 ExportBaseComponentDispatch + 81
    55  com.apple.CoreServices.CarbonCore          0x928ceaee CallComponent + 151
    56  com.apple.CoreServices.CarbonCore          0x928ceb65 DelegateComponentCall + 24
    57  com.apple.QuickTimeComponents.component          0x91f133e2 ExportJFIFComponentDispatch + 98
    58  com.apple.CoreServices.CarbonCore          0x928ceaee CallComponent + 151
    59  com.apple.CoreServices.CarbonCore          0x928ceb48 CallComponentDispatch + 29
    60  com.apple.QuickTime                     0x991128b7 GraphicsExportDoExport + 43
    61  com.apple.iPhoto                        0x0015e5b9 0x3a000 + 1197497
    62  com.apple.iPhoto                        0x0015e0e1 0x3a000 + 1196257
    63  com.apple.iPhoto                        0x00159212 0x3a000 + 1176082
    64  com.apple.iPhoto                        0x00157ead 0x3a000 + 1171117
    65  libsystem_c.dylib                       0x98af3557 _pthread_start + 344
    66  libsystem_c.dylib                       0x98addcee thread_start + 34
    Thread 19:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x92f9e8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x98af8289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x98af8512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreVideo                     0x9a55cfe9 CVDisplayLink::waitUntil(unsigned long long) + 297
    4   com.apple.CoreVideo                     0x9a55c078 CVDisplayLink::runIOThread() + 658
    5   com.apple.CoreVideo                     0x9a55bdce startIOThread(void*) + 160
    6   libsystem_c.dylib                       0x98af3557 _pthread_start + 344
    7   libsystem_c.dylib                       0x98addcee thread_start + 34
    Thread 20:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x92f9ec72 __semwait_signal + 10
    1   libsystem_c.dylib                       0x98b7da61 nanosleep$UNIX2003 + 189
    2   libsystem_c.dylib                       0x98b7d92a usleep$UNIX2003 + 60
    3   com.apple.AppKit                        0x90a04d4d -[NSUIHeartBeat _heartBeatThread:] + 879
    4   com.apple.Foundation                    0x960671d8 -[NSThread main] + 45
    5   com.apple.Foundation                    0x9606715b __NSThread__main__ + 1396
    6   libsystem_c.dylib                       0x98af3557 _pthread_start + 344
    7   libsystem_c.dylib                       0x98addcee thread_start + 34
    Thread 21:
    0   libsystem_c.dylib                       0x98adf5e0 strlen + 16
    1   libsystem_c.dylib                       0x98af4167 pthread_setname_np + 33
    2   com.apple.QuickTimeComponents.component          0x91d4d4fc 0x91640000 + 7394556
    3   libsystem_c.dylib                       0x98af3557 _pthread_start + 344
    4   libsystem_c.dylib                       0x98addcee thread_start + 34
    Thread 18 crashed with X86 Thread State (32-bit):
      eax: 0x00000001  ebx: 0x7fadc0c0  ecx: 0x7fad0000  edx: 0x000000c0
      edi: 0xb0101a78  esi: 0x7fadf440  ebp: 0xb0101a98  esp: 0xb0101a40
       ss: 0x00000023  efl: 0x00010246  eip: 0x91d4a129   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
      cr2: 0x00000c49
    Logical CPU: 0
    Binary Images:
       0x3a000 -   0xd26feb  com.apple.iPhoto (9.4.2 - 9.4.2) <3AC6405B-33E2-3184-9F20-4C9CC5256A3A> /Applications/iPhoto.app/Contents/MacOS/iPhoto
      0xeb8000 -   0xf92ffc  org.python.python (2.6.7 - 2.6.7) <AEF0F842-12A1-3139-9187-6B33EBE4100F> /System/Library/Frameworks/Python.framework/Versions/2.6/Python
      0xfdd000 -   0xfe5fff  com.apple.PhotoFoundation (1.0 - 10.17) <228E0350-AA23-372E-8D42-5285DEF45C2D> /Applications/iPhoto.app/Contents/Frameworks/PhotoFoundation.framework/Versions /A/PhotoFoundation
    0x1055000 -  0x1231ffb  com.apple.geode (1.5.3 - 270.7) <F09009D2-846B-3190-965A-D6600D682573> /Applications/iPhoto.app/Contents/Frameworks/Geode.framework/Versions/A/Geode
    0x12c2000 -  0x12c7ff7  com.apple.iLifePhotoStreamConfiguration (3.4 - 2.5) <65A74F18-5020-31EC-B7E9-EBC14E2D9CA1> /Applications/iPhoto.app/Contents/Frameworks/iLifePhotoStreamConfiguration.fram ework/Versions/A/iLifePhotoStreamConfiguration
    0x12d1000 -  0x1300ff7  com.apple.iLifeAssetManagement (2.7 - 40.34) <2B65BA8A-2C25-360D-B50E-0A9EECA1CE57> /Applications/iPhoto.app/Contents/Frameworks/iLifeAssetManagement.framework/Ver sions/A/iLifeAssetManagement
    0x1322000 -  0x1349ff3  com.apple.iPhoto.Tessera (1.1 - 70.18) <F190FD9B-9CC9-3D4D-9744-113F7CA36097> /Applications/iPhoto.app/Contents/Frameworks/Tessera.framework/Versions/A/Tesse ra
    0x135e000 -  0x1382ffb  com.apple.iPhoto.Tellus (1.3 - 70.18) <768463A7-60B4-3D50-B36B-D6E5AFA43DC9> /Applications/iPhoto.app/Contents/Frameworks/Tellus.framework/Versions/A/Tellus
    0x139a000 -  0x13a5fff  com.apple.iphoto.AccountConfigurationPlugin (1.2 - 1.2) <86E53BF3-BCAD-36F9-999B-013E359EF079> /Applications/iPhoto.app/Contents/Frameworks/AccountConfigurationPlugin.framewo rk/Versions/A/AccountConfigurationPlugin
    0x13b2000 -  0x13c7ffb  com.apple.iLifeFaceRecognition (1.0 - 30.11) <4A781CBF-9764-3531-91E0-94C5B4DFCFDF> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/iLifeFaceRecognition
    0x13d4000 -  0x13fdff3  com.apple.DiscRecordingUI (7.0 - 7000.2.4) <F5A4CCC3-E5E2-3451-96FD-40BA328605B6> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x1416000 -  0x1418fff  com.apple.ExceptionHandling (1.5 - 10) <435C80BD-F463-360B-86CA-5E001CACD421> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x141e000 -  0x1429ff7  com.apple.UpgradeChecker (9.2 - 9.2) <D34CC218-8200-34D7-816C-B747EE4BF5F7> /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0x1432000 -  0x14b1ff7  com.apple.iLifeMediaBrowser (2.7.2 - 546) <824E7748-CA28-3105-B5C3-27E9D8C6D465> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x14f6000 -  0x1614ff3  com.apple.WebKit (8536 - 8536.26.14) <C98F734D-D579-3F89-9A58-9EE890B1748E> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x16c8000 -  0x16ddff7  com.apple.iChat.InstantMessage (7.0.1 - 3305) <2EB77610-6036-3CCD-9A93-51F7D6DE6EB2> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x16ee000 -  0x1a87ff3  com.apple.iLifeSlideshow (3.1 - 1151.4) <36D94EEC-7C08-31C9-BE91-612EBCE8E528> /Applications/iPhoto.app/Contents/Frameworks/iLifeSlideshow.framework/Versions/ A/iLifeSlideshow
    0x1b82000 -  0x1e13ff3  com.apple.iLifePageLayout (1.3 - 200.9) <067ACE80-5B73-39EE-850B-E392F6573AAC> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/iLifePageLayout
    0x1eec000 -  0x1f83ff7  com.apple.MobileMe (13 - 1.0.4) <5E6C6DEC-1F48-358F-8117-40FAAEB8AFAD> /Applications/iPhoto.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
    0x1fde000 -  0x2046ff3  com.apple.proxtcore (1.4.1 - 250.56) <BBADA727-FB78-32AF-8D45-4498F68343A7> /Applications/iPhoto.app/Contents/Frameworks/ProXTCore.framework/Versions/A/Pro XTCore
    0x208b000 -  0x2189ff7  com.apple.iLifeSQLAccess (1.7.1 - 60.5) <845C6292-8EC2-3B4A-8E2E-8D98986148C2> /Applications/iPhoto.app/Contents/Frameworks/iLifeSQLAccess.framework/Versions/ A/iLifeSQLAccess
    0x21d1000 -  0x21fcffb  com.apple.ProUtils (1.1 - 200.36) <DD23930A-A4CD-36B5-A3CB-0C4D61A2E4A6> /Applications/iPhoto.app/Contents/Frameworks/ProUtils.framework/Versions/A/ProU tils
    0x2214000 -  0x227ffff  com.apple.iLifeKit (1.3.1 - 156.11) <61CDA3C7-7EEA-38B7-8458-E91BD8BF214A> /Applications/iPhoto.app/Contents/Frameworks/iLifeKit.framework/Versions/A/iLif eKit
    0x22c3000 -  0x24f4ff3  com.apple.prokit (7.3.1 - 1943) <4F8BB1EA-FA77-3B98-8889-8045F3F23A38> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x260c000 -  0x2b38ffb  com.apple.RedRock (1.9.4 - 310.33) <548258F5-3AE9-3AD4-B986-A9674D131164> /Applications/iPhoto.app/Contents/Frameworks/RedRock.framework/Versions/A/RedRo ck
    0x2d36000 -  0x2d59ffb  com.apple.AOSAccounts (1.1.2 - 1.1.94) <B0C709CB-DB8D-37D3-A58C-542703F4856B> /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/AOSAccounts
    0x2d72000 -  0x2d72fff  com.apple.SafariServices.framework (8536 - 8536.26.17) <7AC5C0A5-0A71-33DD-A5C2-72545BEE3D3C> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer vices
    0x2d78000 -  0x2d7fff7  com.apple.AOSNotification (1.7.0 - 636.2) <F68F735D-0B5C-3F27-9E39-FB296CF82958> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x2d8a000 -  0x2d8affc  com.apple.SafariDAVNotifier (1.1.1 - 1) <4173B9EB-A1C5-31BD-955B-E9D3CAB862C4> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
    0x2d90000 -  0x2ffffff  com.apple.CalendarStore (6.0 - 1245) <F1909196-2119-3516-952D-32E756BCC04D> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x3105000 -  0x3161fff  com.apple.corelocation (1.0 - 1239.39) <8159C021-DE49-332F-859E-00D7544EB568> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x3191000 -  0x31c3ff3  com.apple.GeoServices (1.0 - 1) <2E4033FA-18BD-3E73-B00E-CBFEE0ACCB6A> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x31d7000 -  0x31e0fff  com.apple.ProtocolBuffer (2 - 104) <BFA598AA-2E77-3578-B079-2C89796811B3> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x31ea000 -  0x31f2ff3  com.apple.AppSandbox (2.0 - 1) <5C586FB0-9EBB-3F14-A63F-497C7A034359> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x31fc000 -  0x3240ff3  com.apple.CalDAV (6.0 - 112.5) <DF589033-DBDE-3162-A17D-401B39897767> /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV
    0x3272000 -  0x327bff3  com.apple.CalendarAgentLink (1.0 - 37) <2D0AFE12-0235-3B60-B786-0EC07AC9F52C> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink
    0x328b000 -  0x329cfff  com.apple.CalendarFoundation (1.0 - 29) <D8714276-78B5-35A5-8C34-694E51AD9EB6> /System/Library/PrivateFrameworks/CalendarFoundation.framework/Versions/A/Calen darFoundation
    0x32ae000 -  0x3310fff  com.apple.coredav (1.0.1 - 179.6) <80D3EE71-AA9C-3954-B262-6BB8FCB293BC> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
    0x334a000 -  0x334aff7 +cl_kernels (???) <A8FAE489-C7F7-4AD0-9489-10AAEDF03135> cl_kernels
    0x334c000 -  0x3399ffb  com.apple.ExchangeWebServices (3.0 - 157) <29FBE8CC-2EC5-3209-B2CB-DD32E3E2ECC7> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
    0x33ee000 -  0x343cfff  com.apple.iCalendar (6.0 - 126.5) <C30CAF95-3D02-3E2E-8855-51DCDF8DB219> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0x3468000 -  0x3475ffb  com.apple.KerberosHelper (4.0 - 1.0) <6CB4B091-3415-301A-87B2-D9D374D0FC17> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x3480000 -  0x35ccfff  com.apple.syncservices (7.0 - 713) <442C8E15-8870-3D65-98EC-82C0E2580EC0> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x3648000 -  0x36b5ffb  com.apple.WhitePagesFramework (10.7.0 - 141.0) <6879CD26-8E35-315B-897C-D52B6EB741F6> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x36e3000 -  0x370aff3  libsandbox.1.dylib (220) <D05340F5-32E0-31C7-9D26-28804F4723D6> /usr/lib/libsandbox.1.dylib
    0x3711000 -  0x3724ff3  com.apple.AppContainer (2.0 - 1) <799C8E8B-F983-3A3D-91CF-A2C9B5B7D007> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
    0x3736000 -  0x373afff  com.apple.SecCodeWrapper (2.0 - 1) <EBB54594-C7F3-37FA-9759-09BD098ED688> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
    0x3741000 -  0x3742ffd +cl_kernels (???) <B0D711C8-51E7-4B05-8433-87449EB0D699> cl_kernels
    0x3744000 -  0x3748ffe  libMatch.1.dylib (17) <29090908-32A9-3087-B197-00128F5954CD> /usr/lib/libMatch.1.dylib
    0x374f000 -  0x3751ffb  com.apple.LibraryRepair (1.0 - 1) <73246564-BF68-3833-B9A3-3CDA607BA706> /System/Library/PrivateFrameworks/LibraryRepair.framework/Versions/A/LibraryRep air
    0x375b000 -  0x37b5fff  com.apple.proapps.MIO (1.0.6 - 512) <DFB10D40-23B3-3666-9F1F-161BE25AB59D> /Applications/iPhoto.app/Contents/Frameworks/MIO.framework/Versions/A/MIO
    0x37cf000 -  0x445eff3  com.apple.WebCore (8536 - 8536.26.14) <82E97E6B-3F31-39A7-B41F-CD308E6EF238> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x4be0000 -  0x4be1fff +eOkaoCom.dylib (1) <2DE16B47-23E7-73DB-1297-C928E40DFC31> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoCom.dylib
    0x4be5000 -  0x4c0aff2 +eOkaoPt.dylib (1) <831D49D0-43A0-21A0-2662-2207E3BE0FF6> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoPt.dylib
    0x4c11000 -  0x4c45fe7 +eOkaoDt.dylib (1) <5693A28E-8C94-0F5F-150E-3B17CF753F64> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoDt.dylib
    0x4c4b000 -  0x4db2fff +eOkaoFr.dylib (1) <E355FB47-C5EF-50CF-621A-9B17A50E2850> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoFr.dylib
    0x4db9000 -  0x4e15fff  com.apple.NyxAudioAnalysis (12.4 - 12.4) <DC8444CC-FAAB-3DCA-A644-8712001A5F2E> /Library/Frameworks/NyxAudioAnalysis.framework/Versions/A/NyxAudioAnalysis
    0x4e2f000 -  0x4f49ff3  com.apple.avfoundation (2.0 - 361.25) <0CB46B4A-8330-3BD8-B081-71314C6687A5> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x4fe9000 -  0x5021ff3  com.apple.CoreMediaIOServicesPrivate (52.0 - 3311.1) <1F651752-FD09-3CF5-BCCC-5C1366DDFACD> /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x503f000 -  0x5066ff7  com.apple.CoreMediaPrivate (20.0 - 20.0) <D963392A-4B4C-3B81-A873-E1C06C6829E6> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x507c000 -  0x50adff3  com.apple.FWAVCPrivate (52.47 - 47) <14C9A9D3-4065-3395-A8BC-C0535162017E> /System/Library/PrivateFrameworks/FWAVCPrivate.framework/Versions/A/FWAVCPrivat e
    0x50c5000 -  0x510dffb  com.apple.CoreMediaIOServices (171.0 - 3244) <9563BB38-F23A-3FC6-855D-05487E700465> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x5131000 -  0x51d0fff  com.apple.imcore (8.0 - 900) <2052F6C8-BDD3-339B-B0E2-6A3E282010A4> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
    0x51f8000 -  0x524cff7  com.apple.imfoundation (8.0 - 900) <7A1506BB-DDAD-3DB7-8557-19AB1B519FB0> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
    0x5279000 -  0x5281ff7  com.apple.marco (8.0 - 900) <C2AE3F46-EFC9-349E-8D24-DF686C9BE2E7> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
    0x528a000 -  0x52b1ff7  com.apple.ExpressCheckout (1.0 - 1.0) <ACE460FA-35FB-3C0E-9BA8-937F560F0847> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/Frameworks/ExpressCheckout.framework/Versions/A/ExpressCheckout
    0x52cc000 -  0x52faffb  com.apple.iLifeImageAnalysis (3.0 - 3) <C3A267E3-176C-3708-9099-E9F33400A1D5> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/Frameworks/iLifeImageAnalysis.framework/Versions/A/iLifeImageAnalysis
    0x674d000 -  0x680dfff +net.sourceforge.webcam-osx.common (0.9.2 - 0.9.2) /Library/QuickTime/macam.component/Contents/MacOS/macam
    0xcfaf000 -  0xcfbcff3  com.apple.Librarian (1.1 - 1) <88A55A5E-40FF-3234-8394-2317120B79AB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0xcfca000 -  0xcfcbffd +com.1passwd.InputManager (2.9.21 - 7517) <0EE4D847-85F5-1C14-CE38-8BF6B0553055> /Library/InputManagers/*/1PasswdIM.bundle/Contents/MacOS/1PasswdIM
    0xd909000 -  0xd90efff +com.eltima.FolxIM (1.7) <E6F86D93-24F9-BFC5-6993-D1DE35425271> /Library/InputManagers/*/FolxIM.bundle/Contents/MacOS/FolxIM
    0xdaf2000 -  0xdaf2ffd +cl_kernels (???) <57D50CCD-0E39-473E-AC5B-534A3E4A3D4C> cl_kernels
    0x12923000 - 0x12aafff8  GLEngine (8.6.1) <2660B1D4-5783-3BED-8C05-F5A4C5A29715> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x12ae6000 - 0x12c37ff7  libGLProgrammability.dylib (8.6.1) <E134D5DE-5A89-338A-A938-C7D80F272C9E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x12c65000 - 0x12c71ffb  libGPUSupport.dylib (8.6.1) <FB98F9CE-31D0-321C-90FE-87D30294921B> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
    0x12c78000 - 0x12ca4ffa  GLRendererFloat (8.6.1) <D0348D87-ADBD-302B-95D0-FB3100C219BA> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x12cad000 - 0x12cb5ffc  libcldcpuengine.dylib (2.1.19) <E5429AB3-FE28-3C0C-8942-686BB4191A9E> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0x12cbc000 - 0x12cbefff  libCoreFSCache.dylib (24.4) <A089ED2E-0156-3937-BE32-5BED76DF4066> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0x12cd2000 - 0x12cd3ffe  com.apple.AddressBook.LocalSourceBundle (2.1 - 1167) <341A7E90-613E-3306-919F-8F49EE350831> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x13161000 - 0x131f3ff7  unorm8_bgra.dylib (2.1.19) <A2C66114-F581-3D86-9BC9-9994156640AF> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0x15297000 - 0x1529affe  com.apple.DirectoryServicesSource (2.1 - 1167) <2A3AD43B-950C-32AD-A578-3271EAD55E3E> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
    0x15313000 - 0x153d1ff3  ColorSyncDeprecated.dylib (400) <35E3054C-5DF1-30D4-A368-C4FDB0992373> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x156ff000 - 0x15741fff  com.apple.facetimeservices (8.0 - 900) <CB59547A-C7DE-3F20-8A1F-724AF15F664E> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
    0x157b0000 - 0x157f1ff7  com.apple.ShareKit (1.0 - 119.8) <BA4F3619-1629-389A-AB2F-E32BD85C010F> /System/Library/PrivateFrameworks/ShareKit.framework/Versions/A/ShareKit
    0x1582f000 - 0x15836fff  com.apple.iPhoto.RSSPublisher (1.1 - 1.1) <C13A2FCB-178C-3CA9-AB1C-44B4C76D26BD> /Applications/iPhoto.app/Contents/PlugIns/RSSPublisher.publisher/Contents/MacOS /RSSPublisher
    0x1583d000 - 0x15842ffe  com.apple.iphoto.accountconfig.Email (9.2 - 9.2) <50B32E94-2383-3409-A2AE-8367DE6CD6EF> /Applications/iPhoto.app/Contents/PlugIns/Email.accountconfigplugin/Contents/Ma cOS/Email
    0x15862000 - 0x15889ffb  com.apple.iPhoto.FacebookPublisher (1.2 - 1.2) <17607BF1-A294-33E6-B454-49F815BA72C1> /Applications/iPhoto.app/Contents/PlugIns/FacebookPublisher.publisher/Contents/ MacOS/FacebookPublisher
    0x15895000 - 0x158b4ffb  com.apple.iPhoto.FlickrPublisher (1.2 - 1.2) <BEFEC249-367D-30EA-B2C3-DC0AA41A8FED> /Applications/iPhoto.app/Contents/PlugIns/FlickrPublisher.publisher/Contents/Ma cOS/FlickrPublisher
    0x158be000 - 0x158f4ffb  com.apple.iPhoto.MobileMePublisher (1.2 - 1.2) <76739425-BFF0-37D0-86CA-DB64C8579E2E> /Applications/iPhoto.app/Contents/PlugIns/MobileMePublisher.publisher/Contents/ MacOS/MobileMePublisher
    0x15903000 - 0x15917ff7  com.apple.iPhoto.SharedPhotoStreamPublisher (1.0 - 1.0) <9157DF4E-949A-3E72-B219-D2AC6D613769> /Applications/iPhoto.app/Contents/PlugIns/SharedPhotoStreamPublisher.publisher/ Contents/MacOS/SharedPhotoStreamPublisher
    0x15922000 - 0x15925fff  com.apple.iphoto.accountconfig.Facebook (1.2 - 1.2) <A69EF05F-5213-3D42-B6C5-97D4C8C5E7A7> /Applications/iPhoto.app/Contents/PlugIns/Facebook.accountconfigplugin/Contents /MacOS/Facebook
    0x1592b000 - 0x1592efff  com.apple.iphoto.accountconfig.Flickr (1.1 - 1) <4002CDBC-05C4-3DEF-ADE3-9917FB7050E9> /Applications/iPhoto.app/Contents/PlugIns/Flickr.accountconfigplugin/Contents/M acOS/Flickr
    0x15934000 - 0x15939ff8  com.apple.iphoto.accountconfig.MobileMe (1.1 - 1) <433656FC-3D8F-3088-BCF3-C6765E788E20> /Applications/iPhoto.app/Contents/PlugIns/MobileMe.accountconfigplugin/Contents /MacOS/MobileMe
    0x15a06000 - 0x15a07ffd  com.apple.textencoding.unicode (2.5 - 2.5) <4E2ABBEB-1F0D-3C06-BA0C-C3CEDDF17BD2> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x15e00000 - 0x15e04ff7  com.apple.AppleMPEG2Codec (1.0.2 - 220.1) <08137D06-718F-30B1-8BF3-9498BEAFA5C6> /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0x17cbb000 - 0x17cbbfff  com.apple.iLMBAppDefPlugin (2.7.2 - 339) <70319805-38A9-3043-ADAF-A8E3460C2E7F> /Library/Application Support/iLifeMediaBrowser/*/iLMBAppDefPlugin
    0x17cc0000 - 0x17cc1fff  com.apple.iLMBFolderPlugin (2.7.2 - 339) <A492DD96-B17A-3581-8F02-BB46C385D5B9> /Library/Application Support/iLifeMediaBrowser/*/iLMBFolderPlugin
    0x17cc6000 - 0x17cc9fff  com.apple.iLMBGarageBandPlugin (2.7.2 - 339) <78FF504C-F636-3C8D-8AAA-BACF4D5B7D9B> /Library/Application Support/iLifeMediaBrowser/*/iLMBGarageBandPlugin
    0x17ccf000 - 0x17cd7ffe  com.apple.iLMBiTunesPlugin (2.7.2 - 339) <50409BA5-9D15-3D95-BBC5-36C6EA6EC85B> /Library/Application Support/iLifeMediaBrowser/*/iLMBiTunesPlugin
    0x17cde000 - 0x17d8dffb  com.apple.iTunesAccess (11.0.1 - 11.0.1) <6E9ECDC0-2344-36A0-BFCB-554E88F8F177> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x180d9000 - 0x180e6ffb +net.telestream.license (1.0.7.2-GC - 1.0.7.2-GC) <3B3ADB81-79F3-6371-31FE-66EF8D8E3100> /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense
    0x180ef000 - 0x180f6ffc  com.apple.AppleGVAHW.component (1.1 - 1) <402A3FA9-6028-3639-989F-E9FCA85D04CF> /System/Library/QuickTime/AppleGVAHW.component/Contents/MacOS/AppleGVAHW
    0x180fd000 - 0x18115ff2  com.apple.applepixletvideo (1.2.31 - 1.2d31) <B5622D90-ADF3-3DB2-B64B-5F4AF7C274E3> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x19252000 - 0x19444fe2 +net.telestream.wmv.import (2.3.5.4 - 2.3.5.4) <7DAE8093-C4E1-4719-A095-5FC766307082> /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x19479000 - 0x19524fff  libcrypto.0.9.7.dylib (106) <041B3399-5033-3395-9A71-6693F3A33D94> /usr/lib/libcrypto.0.9.7.dylib
    0x19568000 - 0x19729ff2 +net.telestream.wmv.advanced (2.3.5.4 - 2.3.5.4) <33F5D738-1D6C-7F92-CEC2-07BDE4D151A1> /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0x1976d000 - 0x197d5feb  com.apple.AppleProResDecoder (3.0.2 - 5718) <4442CBCE-7163-3E6A-8511-A52E9F6D8AFC> /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/AppleProR esDecoder
    0x19806000 - 0x1984ffff  com.apple.AppleVAH264HW.component (3.0 - 3.0) <3048BA40-0E8E-357A-8F9D-27D2FD322036> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW
    0x19913000 - 0x19a5dff7  com.apple.AppleGVAFramework (4.0.27 - 4.0.27) <A821DD12-2544-3EAB-8439-4D17BCEB8460> /System/Library/PrivateFrameworks/AppleGVA.framework/Versions/A/AppleGVA
    0x19a79000 - 0x19ab3fff  com.apple.QuickTimeFireWireDV.component (7.7.1 - 2599.13) <5FB303B9-3672-39AA-8CD6-E323CC0E41A8> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x19abf000 - 0x19ae0fff  com.apple.AppleIntermediateCodec (2.0.1 - 5718) <6A70694B-21C7-381B-8DE3-CD6490C70A77> /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x8ed4a000 - 0x8f58bffb  com.apple.GeForceGLDriver (8.0.61 - 8.0.0) <36946D7B-4FF7-34CC-B6FE-D6F48406A60F> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x8fe39000 - 0x8fe6be57  dyld (210.2.3) <23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
    0x90007000 - 0x9000aff7  com.apple.TCC (1.0 - 1) <437D76CD-6437-3B55-BE2C-A53508858256> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x9000b000 - 0x90016fff  libcommonCrypto.dylib (60026) <A6C6EDB8-7E69-3827-81F3-9A74D0935461> /usr/lib/system/libcommonCrypto.dylib
    0x90017000 - 0x90020ffd  com.apple.audio.SoundManager (4.0 - 4.0) <ABC5FE40-B222-36EB-9905-5C8C4BFD8C87> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x90021000 - 0x90131ff3  com.apple.QuickTimeImporters.component (7.7.1 - 2599.13) <410311C4-34FF-38F0-8EE0-3093AEEC1A82> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x90132000 - 0x901dcfff  com.apple.LaunchServices (539.7 - 539.7) <AF33EBD3-BC0B-30B5-B7DA-5CCCF12D7EDD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x901dd000 - 0x9040dfff  com.apple.QuartzComposer (5.1 - 284) <4E8682B7-EBAE-3C40-ABDB-8705EC7952BD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x9040e000 - 0x90415fff  libsystem_dnssd.dylib (379.32.1) <6A505284-2382-3F27-B96F-15FFDACF004E> /usr/lib/system/libsystem_dnssd.dylib
    0x90416000 - 0x9041dff3  com.apple.NetFS (5.0 - 4.0) <1F7041F2-4E97-368C-8F5D-24153D81BBDB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x9041e000 - 0x9041efff  com.apple.vecLib (3.8 - vecLib 3.8) <83160DD1-5614-3E34-80EB-97041016EF1F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9041f000 - 0x90421fff  libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x90422000 - 0x90447ffb  com.apple.framework.familycontrols (4.1 - 410) <5A8504E7-D95D-3101-8E20-38EADE8DEAE1> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x90448000 - 0x90471ff7  libRIP.A.dylib (324.6) <7976E6A2-A489-33F5-A727-7634DDE3B761> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x90472000 - 0x90526fff  com.apple.coreui (2.0 - 181.1) <C15ABF35-B7F5-34ED-A461-386DAF65D96B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x90527000 - 0x9054bfff  com.apple.PerformanceAnalysis (1.16 - 16) <18DE0F9F-1264-394D-AC56-6B2A1771DFBE> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x9054c000 - 0x9054cffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <4C13DEA2-1EB0-3D06-901A-DB93184C06F0> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9054d000 - 0x905affff  libc++.1.dylib (65.1) <C0CFF9FF-5D52-3EAE-B921-6AE1DA00A135> /usr/lib/libc++.1.dylib
    0x905b0000 - 0x906bbff7  libJP2.dylib (845) <D409C913-6FA4-3D60-BFE0-B9FC6A02FEE0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x906bc000 - 0x91278ffb  com.apple.AppKit (6.8 - 1187.34) <06EDB1D1-3B8A-3699-8E3A-D8F50A27AB7C> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91279000 - 0x91330ff3  com.apple.QuickTimeMPEG4.component (7.7.1 - 2599.13) <1B5BA13C-4AB7-333E-9A14-A95EC9E55049> /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x91331000 - 0x9144fff7  com.apple.MediaControlSender (1.4.5 - 145.3) <E0931EE7-4ACA-3538-9658-B9B2AC1E6A80> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
    0x91476000 - 0x9147efff  com.apple.DiskArbitration (2.5.1 - 2.5.1) <25A7232F-9B6A-3746-A3A8-12479D086B1E> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9147f000 - 0x9147ffff  libSystem.B.dylib (169.3) <81C58EAB-0E76-3EAB-BDFD-C5A6FE95536F> /usr/lib/libSystem.B.dylib
    0x91480000 - 0x914b3ff3  com.apple.GSS (3.0 - 2.0) <B1D719C1-B000-3BE3-B747-329D608585DD> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x914b4000 - 0x914befff  libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib
    0x914bf000 - 0x91504ff5  com.apple.opencl (2.1.20 - 2.1.20) <41C4AE6E-67B6-33E2-A9B6-BF6F01580B16> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x91505000 - 0x9155efff  com.apple.AE (645.3 - 645.3) <6745659F-006D-3F25-94D6-DF944E9A01FD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9155f000 - 0x915f9fff  com.apple.CoreSymbolication (3.0 - 87) <6A27BBE5-6EF0-3D5D-A485-2145826B9796> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x915fa000 - 0x91611fff  com.apple.GenerationalStorage (1.1 - 132.2) <93694E0D-35D3-3633-976E-F354CBD92F54> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x91612000 - 0x91634fff  libc++abi.dylib (24.4) <06479DA4-BC23-34B6-BAFC-A885814261D0> /usr/lib/libc++abi.dylib
    0x91635000 - 0x9163fffe  com.apple.bsd.ServiceManagement (2.0 - 2.0) <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x91640000 - 0x92378ff7  com.apple.QuickTimeComponents.component (7.7.1 - 2599.13) <85C70D1B-D074-3891-BF8D-9BA81D2C224B> /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x923aa000 - 0x924b7057  libobjc.A.dylib (532.2) <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
    0x924b8000 - 0x9258efff  com.apple.DiscRecording (7.0 - 7000.2.4) <C14E99B9-DEFA-3812-89E5-464653B729F4> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x9258f000 - 0x925cffff  com.apple.MediaKit (13 - 659) <37B8C1E3-B67D-3FE6-8A14-7FFD9F31C556> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x925d5000 - 0x925d7fff  com.apple.securityhi (4.0 - 55002) <62E3AE75-61CB-341E-B2A0-CFC985A2BF7F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x925d8000 - 0x925edfff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x925ee000 - 0x9262fff7  libcups.2.dylib (327) <F46F8703-FEAE-3442-87CB-45C8BF98BEE5> /usr/lib/libcups.2.dylib
    0x92630000 - 0x9276bff7  libBLAS.dylib (1073.4) <FF74A

  • How to improve the printing quality of pictures, printing a database layout

    I have a database that contains also pictures in multimedia containers. If I print a layout containing a picture, the quality of the picture is really bad! Pixeled with big pixels.
    Is there a possibility to get better prints?
    The pictures are JPEGs of reasonable size.
    The picture in the layout on the screen looks MUCH better.
    Printing to an PDF and viewing this on the screen is equally bad.
    Any suggestions?
    Thanks!

    I'm guessing that your images are JPEGs. AppleWorks changes the resolution of all graphic formats except PICT to 72 dpi. There are a couple of things you can do improve the print quality of images.
    1. Turn on Fractional Character widths in Preferences > General > Topic: Text. This is a text setting, but it does improve the print quality of images.
    2. Open the image in Preview or GraphicConverter & Save As... a PICT to use in AppleWorks.
    PICT is generally the best format to use for inserting or pasting into AppleWorks. I find the resulting graphic can be resized somewhat & the resulting saved AW file is much smaller than if using JPEG or TIFF.

  • Caling pictures from a database!

    Hay I have a little problen with my school task can you help me?
    My program is a admin program that stores data of all the students in a school incuding pictures of the students.
    I call all the pctures from a file and only the first pic works and when i add another pic with a file chooser the pic wont clear and and display the other pic.
    how can i call the pics from a database?
    plz help me?

    try to search the forum, while waiting for correct response.
    <--------- left side.
    i've read some posts the same problem as yours i cant just remember where.

  • HR:Load Employee  JPG Pictures in to Database with a script

    Hi,
    We are on 11.5.10.I would like to know whether any body has loaded Employee pictures in to HR through a script
    I have checked the column on per_images.The Data Type hich stores the picture in per_images is long Raw.
    How do we load jpg pictures in to a longraw column.
    regards,
    A

    Pls check following MOS notes, you will get your answer
    How to enter images in the HRMS Application [ID 103263.1]
    Cannot Load Images in Oracle HRMS [ID 398926.1]
    How To Upload 100 Employee Pictures in Oracle HRMS (Persons Screen) Via API [ID 602252.1]
    from GUI
    How To Load New Photographs to the Employee Directory [ID 452165.1]
    regards,

  • How to show a picture from my database (BLOB field) Oracle into my JSP

    Hi all, i got a problem trying to show a picture in my JSP.
    I have a servlet which loads my picture, the problem is that i dont know how to set into a session// session.setAttribute("xxx","aaa") // or if there is another way to set it up, in order to show it in my JSP, if someone could help me i really appreciate it... thanks

    The way you include it in your jsp is the standard way you download any image.
    With an image tag
    <img src="myImageServlet?imageId=42"/>
    and your imageServlet actually returns the picture via its output stream.
    ie it makes 2 requests. One for the jsp page, and then when it receives and parses the html, one to the servlet to get the image.

  • How to Insert picture in Database & how to Show this picture in Report/form

    Hi
    I have create a table and want to insert picture in this table in Blob format and also want to show this picture in Form / Reports
    Regards
    Shahzaib ismail

    Hi Shahzaib,
    create table
    graphics_table
    bfile_id number,
    bfile_desc varchar2(30),
    bfile_loc bfile,
    bfile_type varchar2(4)
    SQL> INSERT INTO graphics_table
    2 VALUES(4,'April Book of Days Woodcut',bfilename('GIF_FILES','APRIL.JPG'),'JPEG');
    1 row created.
    In this way you can inserrt picture inside the database.
    Regards
    Rajat

  • Saving Captured picture from ADF Mobile Application into Remote Database

    Hi,
    I am developing adf mobile application by using Device Demo Application from ADF Mobile Samples.I had deployed this application into Android mobile and capturing picture.
    My Question is how can i save this captured pictured into Remote Database.
    Could any one help on this!!!
    Thanks in advance!!
    Regards
    Amar
    Edited by: 973755 on Nov 28, 2012 7:46 AM
    Edited by: 973755 on Nov 28, 2012 7:47 AM

    Hi Joe,
    Thanks for the reply!!
    As per your instructions i created two classes 1.GetConnection.java and 2.PictureBean.java
    in GetConnection.java i written following code
    package Picture;
    import java.sql.Connection;
    import java.sql.SQLException;
    import oracle.adfmf.framework.api.AdfmfJavaUtilities;
    public class GetConncetion {
    public GetConncetion() {
    super();
    protected static Connection conn = null;
    public static Connection getConnection() throws Exception {
    if (conn == null) {
    try {
    // create a database connection
    String Dir = AdfmfJavaUtilities.getDirectoryPathRoot(AdfmfJavaUtilities.ApplicationDirectory);
    String connStr = "jdbc:oracle:thin:@fusion.networks.com:1521:fusion"+Dir+"/DeviceDemo.db" ;
    conn = new SQLite.JDBCDataSource(connStr).getConnection();
    System.out.println("connection*******"+conn);
    } catch (SQLException e) {
    // if the error message is "out of memory",
    // it probably means no database file is found
    System.err.println(e.getMessage());
    return conn;
    and in PictureBean.java the following code i modified..
    package Picture;
    import java.sql.Connection;
    import java.sql.PreparedStatement;
    import java.sql.SQLException;
    import oracle.adf.model.datacontrols.device.DeviceManager;
    import oracle.jdbc.pool.OracleDataSource;
    public class PictureBean {
    public PictureBean() {
    super();
    String src;
    private int quality = 25;
    private int destination = DeviceManager.CAMERA_DESTINATIONTYPE_FILE_URI;
    private int source = DeviceManager.CAMERA_SOURCETYPE_PHOTOLIBRARY;
    private boolean allowEdit = false;
    private int encoding = DeviceManager.CAMERA_ENCODINGTYPE_JPEG;
    private int targetWidth = 0;
    private int targetHeight= 0;
    public void setQuality(int quality) {
    this.quality = quality;
    public int getQuality() {
    return quality;
    public void setDestination(int destination) {
    this.destination = destination;
    public int getDestination() {
    return destination;
    public void setSource(int source) {
    this.source = source;
    public int getSource() {
    return source;
    public void setAllowEdit(boolean allowEdit) {
    this.allowEdit = allowEdit;
    public boolean getAllowEdit() {
    return allowEdit;
    public boolean isAllowEdit() {
    return allowEdit;
    public void setEncoding(int encoding) {
    this.encoding = encoding;
    public int getEncoding() {
    return encoding;
    public void setTargetWidth(int targetWidth) {
    this.targetWidth = targetWidth;
    public int getTargetWidth() {
    return targetWidth;
    public void setTargetHeight(int targetHeight) {
    this.targetHeight = targetHeight;
    public int getTargetHeight() {
    return targetHeight;
    public String GetSource(String result) {
    String src = "";
    if( getDestination() == DeviceManager.CAMERA_DESTINATIONTYPE_DATA_URL ) {
    src = "data:image/gif;base64,";
    src = src + result;
    System.out.println("src value in GetSource is "+src);
    return src;
    public void setSource(String result) {
    PictureBean pb1=new PictureBean();
    String src = "data:image/gif;base64,";
    if( getDestination() == DeviceManager.CAMERA_DESTINATIONTYPE_DATA_URL ) {
    src = "data:image/gif;base64,";
    src = src + result;
    public String GetSource(){
    return src;
    public boolean savePicture() throws Exception {       
    boolean ret=false;
    PictureBean pb=new PictureBean();
    String pic= pb.GetSource();
    try{
    Connection conn=GetConncetion.getConnection();
    conn.setAutoCommit(false);
    String insertSQL ="INSERT INTO IMAGE(ID,PIC) VALUES(?,?)";
    PreparedStatement pStmt = conn.prepareStatement(insertSQL);
    pStmt.setInt(1, 1);
    pStmt.setString(2,pic);
    pStmt.execute();
    conn.commit();
    ret = true;
    }catch (SQLException e) {
    System.err.println(e.getMessage());
    } catch (Exception e) {
    System.err.println(e.getMessage());
    return ret;
    and i created one button in Result.amx page and in Action Listener i had given #{bindings.savePicture.execute} and deployed into Android mobile.But i am neither getting error nor getting save picture into database.
    while i run PictureBean.java class alone the following exception occurred.
    "E:\ADF R2\jdk160_24\bin\javaw.exe" -client -classpath "C:\JDeveloper\mywork\DeviceDemo\.adf;C:\JDeveloper\mywork\DeviceDemo\ViewController\classes;E:\OracleJdbc\ojdbc14_g.jar;E:\OracleJdbc\ojdbc14.jar;E:\OracleJdbc\ojdbc.jar;C:\Users\Amar\Downloads\ojdbc6_g.jar;C:\Users\Amar\Downloads\ojdbc6.jar;E:\ADF R2\oracle_common\modules\oracle.adf.view_11.1.1\adf-faces-databinding-rt.jar;E:\ADF R2\oracle_common\modules\oracle.adf.share_11.1.1\adf-share-support.jar;E:\ADF R2\oracle_common\modules\oracle.adf.share.ca_11.1.1\adf-share-ca.jar;E:\ADF R2\oracle_common\modules\oracle.adf.share.ca_11.1.1\adf-share-base.jar;E:\ADF R2\oracle_common\modules\oracle.adf.share_11.1.1\adflogginghandler.jar;E:\ADF R2\oracle_common\modules\oracle.idm_11.1.1\identitystore.jar;E:\ADF R2\oracle_common\modules\oracle.xdk_11.1.0\xmlparserv2.jar;E:\ADF R2\oracle_common\modules\oracle.adf.model_11.1.1\adfm.jar;E:\ADF R2\oracle_common\modules\groovy-all-1.6.3.jar;E:\ADF R2\oracle_common\modules\oracle.ldap_11.1.1\ojmisc.jar;E:\ADF R2\oracle_common\modules\oracle.adf.share_11.1.1\commons-el.jar;E:\ADF R2\oracle_common\modules\oracle.adf.share_11.1.1\jsp-el-api.jar;E:\ADF R2\oracle_common\modules\oracle.adf.share_11.1.1\oracle-el.jar;E:\ADF R2\oracle_common\modules\oracle.xmlef_11.1.1\xmlef.jar;E:\ADF R2\oracle_common\modules\oracle.bali.share_11.1.1\share.jar;E:\ADF R2\modules\com.bea.core.apache.xercesImpl_2.8.1.jar;E:\ADF R2\modules\javax.activation_1.1.0.0_1-1.jar;E:\ADF R2\modules\javax.mail_1.1.0.0_1-4-1.jar;E:\ADF R2\modules\glassfish.jaxb_1.0.0.0_2-1-12.jar;E:\ADF R2\modules\javax.xml.bind_2.1.1.jar;E:\ADF R2\oracle_common\modules\oracle.adf.model_11.1.1\adftransactionsdt.jar;E:\ADF R2\oracle_common\modules\oracle.adf.view_11.1.1\adf-dt-at-rt.jar;E:\ADF R2\oracle_common\modules\oracle.adf.model_11.1.1\adfdt_common.jar;E:\ADF R2\oracle_common\modules\oracle.adf.model_11.1.1\adflibrary.jar;E:\ADF R2\oracle_common\modules\oracle.adf.model_11.1.1\db-ca.jar;E:\ADF R2\oracle_common\modules\oracle.adf.model_11.1.1\jdev-cm.jar;E:\ADF R2\oracle_common\modules\oracle.adf.security_11.1.1\adf-share-security.jar;E:\ADF R2\oracle_common\modules\oracle.adf.security_11.1.1\adf-controller-security.jar;E:\ADF R2\oracle_common\modules\oracle.adf.share_11.1.1\adfsharembean.jar;E:\ADF R2\oracle_common\modules\oracle.jmx_11.1.1\jmxframework.jar;E:\ADF R2\oracle_common\modules\oracle.jmx_11.1.1\jmxspi.jar;E:\ADF R2\oracle_common\modules\oracle.adf.model_11.1.1\bc4j-mbeans.jar;E:\ADF R2\oracle_common\modules\oracle.javatools_11.1.1\resourcebundle.jar;E:\ADF R2\oracle_common\modules\oracle.ldap_11.1.1\ldapjclnt11.jar;E:\ADF R2\oracle_common\modules\oracle.jps_11.1.1\jps-api.jar;E:\ADF R2\oracle_common\modules\oracle.jps_11.1.1\jps-common.jar;E:\ADF R2\oracle_common\modules\oracle.jps_11.1.1\jps-ee.jar;E:\ADF R2\oracle_common\modules\oracle.jps_11.1.1\jps-internal.jar;E:\ADF R2\oracle_common\modules\oracle.jps_11.1.1\jps-unsupported-api.jar;E:\ADF R2\oracle_common\modules\oracle.jps_11.1.1\jps-manifest.jar;E:\ADF R2\oracle_common\modules\oracle.jps_11.1.1\jacc-spi.jar;E:\ADF R2\oracle_common\modules\oracle.pki_11.1.1\oraclepki.jar;E:\ADF R2\oracle_common\modules\oracle.osdt_11.1.1\osdt_core.jar;E:\ADF R2\oracle_common\modules\oracle.osdt_11.1.1\osdt_cert.jar;E:\ADF R2\oracle_common\modules\oracle.osdt_11.1.1\osdt_xmlsec.jar;E:\ADF R2\oracle_common\modules\oracle.osdt_11.1.1\osdt_ws_sx.jar;E:\ADF R2\oracle_common\modules\oracle.iau_11.1.1\fmw_audit.jar;E:\ADF R2\modules\javax.security.jacc_1.0.0.0_1-1.jar;E:\ADF R2\oracle_common\modules\oracle.mds_11.1.1\mdsrt.jar;E:\ADF R2\oracle_common\modules\oracle.mds_11.1.1\oramds.jar;E:\ADF R2\modules\javax.servlet_1.0.0.0_2-5.jar;E:\ADF R2\modules\javax.jsp_1.2.0.0_2-1.jar;E:\ADF R2\jdeveloper\ide\macros\..\..\..\oracle_common\modules\oracle.jdbc_11.1.1\ojdbc6dms.jar;E:\ADF R2\oracle_common\jlib\commons-cli-1.0.jar;E:\ADF R2\oracle_common\modules\oracle.dms_11.1.1\dms.jar;E:\ADF R2\oracle_common\modules\oracle.xdk_11.1.0\xml.jar;E:\ADF R2\oracle_common\modules\oracle.javacache_11.1.1\cache.jar;E:\ADF R2\oracle_common\modules\oracle.ucp_11.1.0.jar;E:\ADF R2\oracle_common\modules\oracle.odl_11.1.1\ojdl.jar;E:\ADF R2\oracle_common\modules\oracle.javatools_11.1.1\javatools-nodeps.jar;E:\ADF R2\modules\javax.management_1.2.1.jar;E:\ADF R2\modules\javax.management.j2ee_1.0.jar;E:\ADF R2\jdeveloper\ide\macros\..\..\..\oracle_common\modules\oracle.nlsrtl_11.1.0\orai18n.jar;C:\Users\Amar\Downloads\commons-codec-1.7-bin.zip;C:\Users\Amar\Downloads\commons-codec-1.7-src.zip;E:\ADF R2\oracle_common\modules\oracle.adf.model_11.1.1\dvt-databindings-mds.jar;E:\ADF R2\oracle_common\modules\oracle.adf.view_11.1.1\dvt-databindings.jar;E:\ADF R2\oracle_common\modules\oracle.adf.view_11.1.1\dvt-facesbindings.jar;E:\ADF R2\oracle_common\modules\oracle.adf.view_11.1.1\trinidad-api.jar;E:\ADF R2\oracle_common\modules\oracle.adf.view_11.1.1\trinidad-impl.jar;E:\ADF R2\oracle_common\modules\oracle.adf.view_11.1.1\adf-richclient-api-11.jar;E:\ADF R2\oracle_common\modules\oracle.adf.view_11.1.1\adf-richclient-impl-11.jar;E:\ADF R2\oracle_common\modules\oracle.adf.view_11.1.1\adf-dynamic-faces.jar;E:\ADF R2\oracle_common\modules\oracle.adf.view_11.1.1\adf-faces-changemanager-rt.jar;E:\ADF R2\oracle_common\modules\oracle.facesconfigdt_11.1.1\facesconfigmodel.jar;E:\ADF R2\oracle_common\modules\oracle.facesconfigdt_11.1.1\taglib.jar;E:\ADF R2\modules\glassfish.el_1.0.0.0_2-1.jar;E:\ADF R2\oracle_common\modules\oracle.jsf_2.0\jsf-api.jar;E:\ADF R2\oracle_common\modules\oracle.jsf_2.0\jsf-impl.jar;E:\ADF R2\modules\glassfish.jstl_1.2.0.1.jar;C:\Users\Amar\Downloads\jndi-properties.jar.zip;C:\Users\Amar\Downloads\jndi-1.2.1.jar.zip;C:\Users\Amar\Downloads\h2-1.3.149.jar.zip;C:\Users\Amar\Downloads\Android\h2-1.3.149.zip;C:\Users\Amar\Downloads\Android\android\app;C:\Users\Amar\Downloads\Android\android;C:\Users\Amar\Downloads\Android" -Djavax.net.ssl.trustStore=C:\Users\Amar\AppData\Local\Temp\trustStore7108102737679976193.jks Picture.PictureBean
    Source value is null
    Exception in thread "main" java.lang.NoClassDefFoundError: oracle/adfmf/framework/api/AdfmfJavaUtilities
         at Picture.GetConncetion.getConnection(GetConncetion.java:24)
         at Picture.PictureBean.savePicture(PictureBean.java:140)
         at Picture.PictureBean.main(PictureBean.java:189)
    Caused by: java.lang.ClassNotFoundException: oracle.adfmf.framework.api.AdfmfJavaUtilities
         at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:305)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:246)
         ... 3 more
    Process exited with exit code 1.
    i already imported AdfmfJavaUtilities package dont know why it showing exception.
    and while i am debugging the GetConnection.java value of 'Dir' is null.i am not getting what is the AdfmfJavaUtilities.ApplicationDirectory?
    Could you help on this!!
    Thanks & Regards
    Amar

  • Error While loading a image from database

    Purpose
    Error While loading the Image from the database
    ORA-06502: PL/SQL : numeric or value error:Character string buffer too small
    ORA-06512: at "Sys.HTP" ,line 1480
    Requirement:
    I am developing the web pages using PSP(Pl/sql Serverpages) . I have a requirement to show a image in the webpage. I got the following procedures from the oracle website.
    I have created the following table to store the images
    create table DEMO
    ID INTEGER not null,
    THEBLOB BLOB
    And I also uploaded the Images. Now I am try to get a image from the table using the following procedure .But I am getting the error message line 25( htp.prn( utl_raw.cast_to_varchar2( l_raw ) );) .at it throws the following error messages
    ORA-06502: PL/SQL : numeric or value error:Character string buffer too small
    ORA-06512: at "Sys.HTP" ,line 1480
    Procedure that I used to get the image
    create or replace package body image_get
    as
    procedure gif( p_id in demo.id%type )
    is
    l_lob blob;
    l_amt number default 30;
    l_off number default 1;
    l_raw raw(4096);
    begin
    select theBlob into l_lob
    from demo
    where id = p_id;
    -- make sure to change this for your type!
    owa_util.mime_header( 'image/gif' );
    begin
    loop
    dbms_lob.read( l_lob, l_amt, l_off, l_raw );
    -- it is vital to use htp.PRN to avoid
    -- spurious line feeds getting added to your
    -- document
    htp.prn( utl_raw.cast_to_varchar2( l_raw ) );
    l_off := l_off+l_amt;
    l_amt := 4096;
    end loop;
    exception
    when no_data_found then
    NULL;
    end;
    end;
    end;
    What I have to do to correct this problem. This demo procedure and table that I am downloaded from oracle. Some where I made a mistake. any help??
    Thanks,
    Nats

    Hi Satish,
    I have set the raw value as 3600 but still its gives the same error only. When I debug the procedure its throwing the error stack in
    SYS.htp.prn procedure of the following line of code
    if (rows_in < pack_after) then
    while ((len - loc) >= HTBUF_LEN)
    loop
    rows_in := rows_in + 1;
    htbuf(rows_in) := substr(cbuf, loc + 1, HTBUF_LEN);
    loc := loc + HTBUF_LEN;
    end loop;
    if (loc < len)
    then
    rows_in := rows_in + 1;
    htbuf(rows_in) := substr(cbuf, loc + 1);
    end if;
    return;
    end if;
    Its a system procedure. I don't no how to proceed .. I am really stucked on this....is their any other method to take picture from the database and displayed in the web page.....???? any idea..../suggesstion??
    Thanks for your help!!!.

  • Finding whole mapping from database file - filesystems - logical volume manager - logical partitions

    Hello,
    Trying to make reverse engeneering of database files and their physical carriers on logical partitions ( fdisk ).
    And not able to make whole path from filesystem down to partitions with intermediate logical volumes.
    1. select from dba_data_files ...
    2. df -k
    to get the listing of filesystems
    3. vgdisplay
    4. lvdisplay
    5. cat /proc/partitions
    6. fdisk /dev/sda -l
       fdisk /dev/sdb -l
    Problem I have is that not able to determine which partitions are consisten in logical volumes. And then which logical volumens are consisted in filesystem.
    Thank you for hint or direction.

    Hello Wadhah,
    Before start the discussion let me explain I am newcommer to Oracle Linux. My genetic with dba experience of Oracle is from IBM UNIX ( AIX 6.1 ) and Oracle 11gr2.
    First task is to get the complete picture of one database on Oracle Linux for future maintenance tasks and make database more flexible and
    preparing for more intense work:
    -adding datafiles,
    -optimize/replace archive redolog files on separated filesystem from ORACLE_BASE
    - separating auditing log files from $ORACLE_BASE to own filesystem
    - separating diag directory on separated file system ( logging, tracing )
    - adding/enlarging TEMP ts
    - adding/enlarging undo
    - enlarging redo for higher transaction rate ( to reduce number of switched per time perceived in alert_SID.log )
    - adding online redo and control files mirrors
    So in this context try to inspect content of the disk space from the highest logical level in V$, DBA views down to fdisk partitions.
    The idea was to go in these steps:
    1. select paths of present online redo groups, datafiles, controlfiles, temp, undo
       from V$, dba views
    2. For the paths got from the step 1
       locate filesystems and for those filesystems inspect which are on logical volumens and which are directly on partitions.
    3. For all used logical volumes locate the logical partitions and their disks /dev/sda, /dev/sdb, ...

  • Playing a video file retrieved from database using JMF

    Hello!
    I am developing a multimedia application that has to store videos, music, pictures in a database. I did a little searching and found that JMF is a very good solution in playing video/music using Java. I found some examples to play the video/music stored on the hard drive (as separate files), but i have to be able to take the video/music from the database, and feed it to the JMF player. Has anyone some suggestions about how this could be done?
    Thanks in advance!
    Edited by: radu.miron on May 8, 2008 9:03 AM

    Well, i think i didn't make myself clear enough :). i know how to retreive the data from the database. The thing is this: let's suppose i have a 700 MB movie stored in the database. One option to play that movie would be to retrieve it from the DB, create a file somewhere on the disk, and put the data retrieved from the database in that file. But this involves that the disk will be overflooded when let's say 100 people watch 100 different movies. Another option (as i see it) would be to gradually take parts of the movie from the database (first 50 MB, then another 50 MB, then another and so on), and feed it to the JMF player. The user will watch the movie, but will not have the whole movie available, just a part of it. As he watches it, the application takes the next chunck of movie data and feeds it to the JMF player. That was the question i intended to ask, if anyone has any idea regarding the second option, and not the part with retrieving from the database, but the part with giving the JMF player video data to play.
    The example i found on the web with JMF player is the following:
    import javax.swing.*;*
    *import javax.media.*;
    import java.awt.*;*
    *import java.awt.event.*;
    import java.net.*;*
    *import java.io.*;
    public class PlayVideo extends JFrame {
         Player player;
         Component center;
         Component south;
         public PlayVideo() {
              setDefaultCloseOperation(EXIT_ON_CLOSE);
              JButton button = new JButton("Select File");
              ActionListener listener =
                   new ActionListener() {
                   public void actionPerformed(
                             ActionEvent event) {
                        JFileChooser chooser =
                             new JFileChooser(".");
                        int status =
                             chooser.showOpenDialog(PlayVideo.this);
                        if (status ==
                             JFileChooser.APPROVE_OPTION) {
                             File file = chooser.getSelectedFile();
                             try {
                                  load(file);
                             } catch (Exception e) {
                                  System.err.println("Try again: " + e);
              button.addActionListener(listener);
              getContentPane().add(button,
                        BorderLayout.NORTH);
              pack();
              show();
         public void load(final File file)
         throws Exception {
              URL url = file.toURL();
              final Container contentPane =
                   getContentPane();
              if (player != null) {
                   player.stop();
              player = Manager.createPlayer(url);
              ControllerListener listener =
                   new ControllerAdapter() {
                   public void realizeComplete(
                             RealizeCompleteEvent event) {
                        Component vc =
                             player.getVisualComponent();
                        if (vc != null) {
                             contentPane.add(vc,
                                       BorderLayout.CENTER);
                             center = vc;
                        } else {
                             if (center != null) {
                                  contentPane.remove(center);
                                  contentPane.validate();
                        Component cpc =
                             player.getControlPanelComponent();
                        if (cpc != null) {
                             contentPane.add(cpc,
                                       BorderLayout.SOUTH);
                             south = cpc;
                        } else {
                             if (south != null) {
                                  contentPane.remove(south);
                                  contentPane.validate();
                        pack();
                        setTitle(file.getName());
              player.addControllerListener(listener);
              player.start();
         public static void main(String args[]) {
              PlayVideo pv = new PlayVideo();
    }but this example plays a video stored on the disk ( player = Manager.createPlayer(url); ), rather than a chunck of data (the whole movie or parts of it) retrieved from the database.
    Sorry for the misunderstanding!
    Cheers!

  • Is it possible to connect indesign with database/OOD...

    Hello fellow Indesign user,
    Not sure if this question belongs here or in scripting...
    I'm just a moderate user in ID CS4 and I got this daunting task to find/invest a way to use Indesign (our existing layout software) to create "brochures/instruction manuals" using databases or OOD. Meanings, use a template, add a code that corresponds to a similar code with pre-defined data-entity in a database/OOD, and automatically add the text/pictures from the database/OOD.
    We are not talking about addresses or simple things like that, but brochures and instruction manuals in different languages with different or similar operation for each machine. Some instructions are the same and some are not. Get my drift?
    We are using ID Cs4 in the company right now, not the smartest tool to use when producing 25 different brochures/technical manuals with different languages. Changing one content in one manual, meaning we have to change all 25 brochures/manuals.... manually...
    Many of you may think -"why did you start ID in the first place". The answer: I don't know, I wasn't here then... It is not until now they discovered -"Oh, we need a new system… " and guess who got the task to evaluate it…
    I need to know if it is possible and to what extent we can use ID with database or an OOD-system to retrieve data (mostly custom data with bulletin, font, size, pictures, etc).
    Articles, links and other information would be very helpful….
    Thanks!
    //Vincent

    What kind TM exist out there and is it possible to integrate it with ID? (I can probably check Wikipedia, but it feels correct to ask the right question to ask to the right person here. How does your firm manage multilingual contents in ID? You gotto have the same problem as I do, at least to some extent…
    How is it even possible to have an automated system and still have that flexible design freedom in ID..? Many questions here…
    To invest a complete new system is not an option anymore. I made some calculation and plenty of phone calls. The figures does not look good at all… it’s simply not worth the time and money. So what are the options, if we keep ID in the firm?
    Well, I should have had lots of time to answer your questions this  evening, but it turns out that we're both out of luck. I'll cover a few  things quickly to give you some Google-fodder:
    1) Okay, I won't suggest expensive commercial solutions.
    2) Read up about how to flow XML content into and out of ID
        2b) Store your content in the DB of your choice, spit out XML, and then update your INDDs with it.
    3) Think about an open-source TM app like OmegaT
    4) Do you do all of your translations in-house? If not, ask your suppliers how they work.
    5) But really, if you don't have a completely obsessive person in charge of making sure everything is up to date, you're asking for trouble. I'm reminded of a quote by Edward Tufte who was talking about project management; I can't remember the quote, but the idea boiled down to the fact that you can do just as good a job with whiteboards as you can with databases. At least right now you know that you haven't kept all versions up to date... if you were housing all your content in a database, then the update process is somewhat hidden from you, and you wouldn't know if something broke unlesss you caught it in QA. If you're not doing all the updates... then you can't do good QA.This is a recipe for disaster.
       5b) Establish a good workflow with whatever tools you have (database, whiteboards, little strings with knots tied in 'em, notches carved in the thighbones of extinct birds of prey, etc.) and give someone the power to sanction/punish/fire people who disobey workflow rules. I am not kidding.
    I will make more useful suggestions (suggestions more useful than 5b, at any rate) in the near future.

Maybe you are looking for