Performing an fft with specific frequency resolution

I have a 24 kHZ signal that was sampled for 16 seconds. When I take the fft I have a delta f of about 0.06 Hz. What I really need is to be able to see the data with a frequency resolution of something like 3.75 Hz as a part of order analysis. I realize that in order to do something like that I need to either reduce my number of samples or resample the data. Resampling has turned into a problem due to the amount of memory that it takes up. I have tried breaking the data up into chunks that will give me that 3.75 Hz resolution and then taking the ffts of each of those chunks. Now I want to take the average of all of these ffts but I am at a loss as to how to do this. Can anyone help me? Or am I just going about this completely the wrong way?

Attachments:
ensemble.png ‏31 KB

Similar Messages

  • FFT Frequency Resolution vs. Graph Update Rate of a Vibration Signal

    Hello,
    First, what I know:
    The frequency resolution (Hz) of an fft is 1/acquisitionTime (e.g. if 2 seconds of data are acquired, the frequency resolution is 1/2s = 0.5Hz).
    What I'm Wondering:
    Let's say I'm displaying an acquired signal on a graph and freq res = 0.5Hz.  The graph update rate is therefore approx 2sec.  This may appear to be an application with a problem from a user's perspective.
    Can I increase the update rate?
    It seems that with vibration data (i.e. mostly non-periodic) I could create a buffer that is 2sec long.  The first data acquisition sequence will fil the buffer with 2sec of data.  Then I could just acquire something shorter than 2sec of data (let's say 1/4sec).  If I am acquiring data continuously and I push the 1/4sec of data into the front of my buffer then perform the fft again, I have effectively increased my graph update rate to 1/4sec and my users think I'm great.
    Can anyone shed any light on whether or not (why/why not) this will work?
    Thanks for your time,
    Chris  

    The best tool NI provides for your application is the Zoom FFT.  This allows you to specify the span (frequency range of the FFT) and the zoom (the delta f such as 0.5hz) in the FFT.  The Zoom FFT has a built in buffer, called overlap and allows you to set the overlap so that it updates at the appropriate rate, event though you may need many seconds of data to get the delta-f in the FFT you are looking for.  We package all this and manage units to display the correct units for power density, power, linear, magnitude, rms, 0 to peak, peak to peak, etc.  We even provide a express VI for the zoom FFT and it is also part of the Sound and Vibration Assistant, requiring no programming at all.
    http://digital.ni.com/public.nsf/allkb/F70DB3441DC5AB9986256E97005BA825
    http://zone.ni.com/devzone/cda/tut/p/id/6107
    http://zone.ni.com/devzone/cda/epd/p/id/5505
    http://sine.ni.com/nips/cds/view/p/lang/en/nid/12152
    Preston Johnson
    Principal Sales Engineer
    Condition Monitoring Systems
    Vibration Analyst III - www.vibinst.org, www.mobiusinstitute.com
    National Instruments
    [email protected]
    www.ni.com/mcm
    www.ni.com/soundandvibration
    www.ni.com/biganalogdata
    512-683-5444

  • Perform Hamming window and FFT with Java

    Hi all,
    I am trying to apply Hamming window on my lengthy sound data soundSample[1000] with window length 100. Then proceed with FFT.
    And i found that java does have the package for Hamming window and FFT. As below,
    http://code.compartmental.net/minim/javadoc/ddf/minim/analysis/FFT.html
    http://marf.sourceforge.net/api/marf/math/Algorithms.Hamming.html
    But i hardly find an example that illustrate how to use the package in a java program. So no idea how should i use the method in package.
    Please advise and appreciate if reference is provided.
    Thank you.

    Hi,
    I have spent sometimes to study and do the coding for FFT on audio samples.
    My project is to study the FFT working by performing the FFT on audio sampled data.
    After this is done, then only proceed to extract the pitch value in the audio data.
    Below is the coding that i have done by referring to the provided steps:
    In my main, i call this method and past the retrieved sampled sound data to this method.
    public static void Analyze(int[] soundSample,float sample_rate ) {
            int N = (int)sample_rate/5;
            int Number_Sample = soundSample.length;
            Complex[] fftBuffer = new Complex [2*N];
            Complex[] fftResult = new Complex [2*N];
            Complex [] lastN = new Complex [N];   // The array to save the last N sample
            int delay = 0;
            double delta = 2*Math.PI/(2*N);
            // I have no idea how can i convert my sample array to double so that it will be in the range of [-1,+1]
            while(delay <=soundSample.length){
                //Extract the 2N sample for FFT analysis and convert the data to complex number.
                for (int z=0; z<2*N; z++){
                    fftBuffer[z] = new Complex(soundSample[z+delay],0) ;                
                for (int i=N-1;i>=N/2; i-- ){
                    lastN[N-1-i] = fftBuffer;
    for (int z=0; z<2*N; z++){
    fftBuffer[z] = fftBuffer[z].times(0.54-0.46*Math.cos(z*delta));
    fftResult = FFT1.fft(fftBuffer);
    delay = 2*N + delay;
    1) I was trying to perform FFT with 2N samples then keep on looping the FFT method until 2N reaches the ends of sampled data.
    But the FFT that i am working with is radix 2... It doesn't work with my 2N samples... Please teach me how should i work out FFT regardless the number of sample?
    2) The hamming window coefficient i m using is based on http://www.mathworks.com/help/toolbox/signal/hamming.html . I am working on index [0:2N] ..
    Is it appropriate?
    3) According to your No1 steps, the acceptable frequency resolution is 5Hz. May i know what is this representing? And is it application for most of the FFT application? How can i determine the frequency resolution that i should used in my project?
    Sorry for late reply as i was trying to work out the thing..
    Hereby attach to your the my coding.. and hopes to have your guidance and tutorial how to extract the pitch for recording audio file with Java.
    I have done the pitch extraction with MATLAB.. but Matlab as built-in FFT function... 
    So i m now get stucked how to perform FFT on audio sound sample regardless the N value of sound sample for FFT buffer.
    Many thanks for your former advise... and
    Looking forward for your replies again.
    Happy New Year 2011 :)
    Edited by: 诸葛 on Dec 31, 2010 9:29 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How to enhance frequency resolution of fft spectrum on x-axis

    Dear Sir
    I get the frequency spectrum of my real time signal. Frequency span that I want to analyze is 0~500hz. I get that span by setting the sampling rate. But the frequency resolution coming on graph is of 100hz (as shown in attachment). My requirement is to have frequency resolution of 10hz with same frequency span. Please guide me how can I achieve this.
    I shall be thankful to you
    Kind Regards
    Muhammad Irfan
    Student
    UTP Malaysia
    0060149087570
    Solved!
    Go to Solution.
    Attachments:
    fft graph1.JPG ‏40 KB

    I set the dt value to 0.002. For this I set sampling rate 2000hz and no.of samples 1000000. In this way I achieve frequency span of 250hz. But resolution is still 100hz (as shown in attach 1). My question is how can I set resolution to 10hz? I increase the number of samples but from doing this only the frequency span changes and resolution remain same as 100hz. Resolution become 10hz only when I set total frequency span to 50 hz (but My frequency span of intrest is 0~500hz or 0~250hz not below thos).
    I am attaching the gaph in attachment 2 from where you can undersatnd what type of resolution and frequency span I want.
    Attachments:
    fft graph2.JPG ‏39 KB
    desired values for scales.JPG ‏35 KB

  • How do I get my DAQ to have frequency resolution of 0.5 hz after FFT ?

    Hi all,
    I was just wondering how do I get a frequency resolution of 0.5hz after the FFT from this VI.
    Or perhaps there can be some advice on where I must improve it.
    Appreciate all advice, thanks!
    -How81
    as of now, the waveform graph i obtained, I wanted it to be of 0.5 hz, hence I used its property to set it at 0.5hz.
    Message Edited by How81 on 10-13-2007 03:31 AM
    Attachments:
    Final DAQ.vi ‏107 KB

    Hi How81,
       I won't comment on your code, I'm unable to see it (I have LV 71.1).  So I'll discuss a little bit the DSP.
       If you want such a low frequency resolution, you have to sample a little longer.  If your top-frequency is 25 Hz, I don't see the need for sampling at 1 kS/s, that gives a Nyquist freq. of 500 Hz!!! You'll only have a large amount of data, not of your interest!
       Another good advice, is to sample for a long time.  To have a REAL resolution of 0.5 Hz, It is not sufficient to sample 2 MSample for one microsecond! So, you have to sample at least for 2 seconds, but I strongly suggest to sample for a longer time.  In DSP,you almost always have to use some tolerances.
       Another matter is FFT resolution due to number of samples. If you sample 2 kS/s for 1 second, and you'll get a "2000 point FFT (...)", you'll see 1000 equally spaced frequency samples, from 0 to 1000 Hz (ie 1 Hz spacing), you can't have a resolution of more than 1 Hz. I would suggest something like sampling at (say for tolerance) 100 S/s, (top freq. you seee in FFT: 50 Hz), for 10 seconds: so you have 1000 points, but you have a resolution of 0.1 Hz.
       A part from this, always consider that FFT works in 2-powers, so it's better to do a 1024 points FFT.   Then you can use zero padding techniques to "adjust" fft to see samples at right frequencies, or sample 1024*10 samples in time at 1024 S/s and then decimate..... you have many choices.
       Hope this can help. Have a nice day!
    graziano

  • Safari 5.0.6 quits with increasing frequency

    Similar problem to others.  Since upgrading to 5.0.6 (OS 10.5.8) Safari quits unexpectedly, and with increasing frequency.  A few times lately have been unable to submit report to Apple.  Here is the latest report. I am somewhat versed in tech, but not too much. Thanks in advance for your help.
    Process:         Safari [321]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.0.6 (5533.22.3)
    Build Info:      WebBrowser-75332203~3
    Code Type:       X86 (Native)
    Parent Process: launchd [73]
    Interval Since Last Report:          834320 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  814828 sec
    Per-App Crashes Since Last Report:   1
    Date/Time:       2012-02-26 11:40:34.315 -0500
    OS Version:      Mac OS X 10.5.8 (9L31a)
    Report Version: 6
    Anonymous UUID: 64D8810E-DE56-40DD-B16C-FEE1F81E8B4D
    Exception Type: EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x000000000000239a
    Crashed Thread: 0
    Application Specific Information:
    Java information:
    Version: Java HotSpot(TM) Client VM (1.5.0_30-161 mixed mode)
    Virtual Machine version: Java HotSpot(TM) Client VM (1.5.0_30-161) for macosx-x86, built on Jun 21 2011 17:59:04 by root with gcc 4.0.1 (Apple Inc. build 5465)
    Exception type: Bus Error (0xa) at pc=0x10463955
    Current thread (0x25e0bdf0):  JavaThread "AWT-AppKit" daemon [_thread_in_native, id=-1604819168]
    Stack: [0xbf800000,0xc0000000)
    Java Threads: ( => current thread )
      0x25e29800 JavaThread "process reaper" daemon [_thread_in_native, id=681038848]
      0x25e21070 JavaThread "TimerQueue" daemon [_thread_blocked, id=11117568]
      0x25e0f590 JavaThread "CacheCleanUpThread" daemon [_thread_blocked, id=681650176]
      0x25e0efb0 JavaThread "CacheMemoryCleanUpThread" daemon [_thread_blocked, id=681687552]
      0x25e0e990 JavaThread "traceMsgQueueThread" daemon [_thread_blocked, id=680785920]
      0x25e0e110 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=679841792]
      0x25e0d4d0 JavaThread "SysExecutionTheadCreator" daemon [_thread_blocked, id=680066048]
    =>0x25e0bdf0 JavaThread "AWT-AppKit" daemon [_thread_in_native, id=-1604819168]
      0x25e093e0 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=680570368]
      0x25e089d0 JavaThread "CompilerThread0" daemon [_thread_blocked, id=680532480]
      0x25e08420 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=680897024]
      0x25e07cf0 JavaThread "Finalizer" daemon [_thread_blocked, id=524500992]
      0x25e078b0 JavaThread "Reference Handler" daemon [_thread_blocked, id=680666112]
    Other Threads:
      0x25e06e80 VMThread [id=680242688]
      0x25e09fc0 WatcherThread [id=680677888]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation   total 576K, used 449K [0x2d570000, 0x2d610000, 0x2dcd0000)
      eden space 512K,  87% used [0x2d570000, 0x2d5e0458, 0x2d5f0000)
      from space 64K,   1% used [0x2d5f0000, 0x2d5f02e8, 0x2d600000)
      to   space 64K,   0% used [0x2d600000, 0x2d600000, 0x2d610000)
    tenured generation   total 5876K, used 3567K [0x2dcd0000, 0x2e28d000, 0x33570000)
       the space 5876K,  60% used [0x2dcd0000, 0x2e04bde8, 0x2e04be00, 0x2e28d000)
    compacting perm gen  total 12288K, used 12174K [0x33570000, 0x34170000, 0x37570000)
       the space 12288K,  99% used [0x33570000, 0x34153a40, 0x34153c00, 0x34170000)
    No shared spaces configured.
    Virtual Machine arguments:
    JVM args: -DtrustProxy=true -Xverify:remote -Xbootclasspath/a:/System/Library/Java/Support/Deploy.bundle/Contents/Resources /JavaPluginCocoa.bundle/Contents/Resources/Java/deploy.jar:/System/Library/Java/ Support/Deploy.bundle/Contents/Resources/JavaPluginCocoa.bundle/Contents/Resourc es/Java/plugin.jar -XX:-UseSharedSpaces -Djavaplugin.nodotversion=160 -Djavaplugin.version=1.6.0 -Xmx96m -Djavaplugin.maxHeapSize=96m -Djavaplugin.vm.options=-DtrustProxy=true -Xverify:remote -Xbootclasspath/a:/System/Library/Java/Support/Deploy.bundle/Contents/Resources /JavaPluginCocoa.bundle/Contents/Resources/Java/deploy.jar:/System/Library/Java/ Support/Deploy.bundle/Contents/Resources/JavaPluginCocoa.bundle/Contents/Resourc es/Java/plugin.jar -XX:-UseSharedSpaces -Djavaplugin.nodotversion=160 -Djavaplugin.version=1.6.0 -Xmx96m -Djavaplugin.maxHeapSize=96m
    Java command: <unknown>
    launcher type: generic
    Thread 0 Crashed:
    0 ...lashPlayer-10.4-10.5.plugin            0x10463955 NP_Initialize + 1476677
    1 ...lashPlayer-10.4-10.5.plugin            0x10467c18 NP_Initialize + 1493768
    2 ...lashPlayer-10.4-10.5.plugin            0x10455cdf NP_Initialize + 1420239
    3 ...lashPlayer-10.4-10.5.plugin            0x10455d6c NP_Initialize + 1420380
    4 ...lashPlayer-10.4-10.5.plugin            0x10451580 NP_Initialize + 1401968
    5 ...lashPlayer-10.4-10.5.plugin            0x1043431c NP_Initialize + 1282572
    6 ...lashPlayer-10.4-10.5.plugin            0x104375bb NP_Initialize + 1295531
    7 ...lashPlayer-10.4-10.5.plugin            0x1009280d 0xfe68000 + 2271245
    8 ...lashPlayer-10.4-10.5.plugin            0x1001d669 0xfe68000 + 1791593
    9 ...lashPlayer-10.4-10.5.plugin            0x0ff3f1d3 0xfe68000 + 881107
    10 ...lashPlayer-10.4-10.5.plugin            0x0ff3faf9 0xfe68000 + 883449
    11 ...lashPlayer-10.4-10.5.plugin            0x0ff3fb4b 0xfe68000 + 883531
    12 ...lashPlayer-10.4-10.5.plugin            0x1018a04b 0xfe68000 + 3285067
    13 ...lashPlayer-10.4-10.5.plugin            0x102610ee 0xfe68000 + 4165870
    14 ...lashPlayer-10.4-10.5.plugin            0x1028000a FlashPlayer_10_1_102_64_FlashPlayer + 11882
    15  com.apple.WebKit 0x95402639 WebNetscapePluginStream::destroyStream() + 713
    16 com.apple.WebKit 0x954027e8 WebNetscapePluginStream::destroyStreamWithReason(short) + 72
    17 com.apple.WebCore 0x9111437c WebCore::NetscapePlugInStreamLoader::didFinishLoading(double) + 60
    18 com.apple.WebCore 0x90a2d6e7 -[WebCoreResourceHandleAsDelegate connectionDidFinishLoading:] + 87
    19 com.apple.Foundation                      0x94261497 -[NSURLConnection(NSURLConnectionReallyInternal) sendDidFinishLoading] + 87
    20 com.apple.Foundation                      0x94261403 _NSURLConnectionDidFinishLoading + 147
    21 com.apple.CFNetwork                       0x95015ba4 URLConnectionClient::_clientDidFinishLoading(URLConnectionClient::ClientConnect ionEventQueue*) + 212
    22 com.apple.CFNetwork                       0x950168fa URLConnectionClient::ClientConnectionEventQueue::processAllEventsAndConsumePayl oad(XConnectionEventInfo<XClientEvent, XClientEventParams>*, long) + 310
    23 com.apple.CFNetwork                       0x95016baa URLConnectionClient::ClientConnectionEventQueue::processAllEventsAndConsumePayl oad(XConnectionEventInfo<XClientEvent, XClientEventParams>*, long) + 998
    24 com.apple.CFNetwork                       0x95015370 URLConnectionClient::processEvents() + 104
    25 com.apple.CFNetwork                       0x94fc2c2b MultiplexerSource::perform() + 189
    26 com.apple.CoreFoundation                  0x93cdf40f CFRunLoopRunSpecific + 3215
    27 com.apple.CoreFoundation                  0x93cdfaa8 CFRunLoopRunInMode + 88
    28 com.apple.HIToolbox                       0x96f292ac RunCurrentEventLoopInMode + 283
    29 com.apple.HIToolbox                       0x96f28ffe ReceiveNextEventCommon + 175
    30 com.apple.HIToolbox                       0x96f28f39 BlockUntilNextEventMatchingListInMode + 106
    31 com.apple.AppKit 0x91a926d5 _DPSNextEvent + 657
    32 com.apple.AppKit 0x91a91f88 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    33 com.apple.Safari 0x000166ad 0x1000 + 87725
    34 com.apple.AppKit 0x91a8af9f -[NSApplication run] + 795
    35  com.apple.AppKit 0x91a581d8 NSApplicationMain + 574
    36 com.apple.Safari 0x0000acee 0x1000 + 40174
    Thread 1:
    0 libSystem.B.dylib 0x94c4c34e __semwait_signal + 10
    1 libSystem.B.dylib 0x94ca1d81 sleep$UNIX2003 + 63
    2 com.apple.JavaScriptCore                  0x9809cab1 ***::TCMalloc_PageHeap::scavengerThread() + 145
    3 com.apple.JavaScriptCore                  0x9809cd8f ***::TCMalloc_PageHeap::runScavengerThread(void*) + 15
    4 libSystem.B.dylib 0x94c76055 _pthread_start + 321
    5 libSystem.B.dylib 0x94c75f12 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x94c4c34e __semwait_signal + 10
    1 libSystem.B.dylib 0x94c76ccd pthread_cond_wait$UNIX2003 + 73
    2 com.apple.WebCore 0x90921587 WebCore::IconDatabase::syncThreadMainLoop() + 279
    3 com.apple.WebCore 0x9091ee19 WebCore::IconDatabase::iconDatabaseSyncThread() + 761
    4 libSystem.B.dylib 0x94c76055 _pthread_start + 321
    5   libSystem.B.dylib 0x94c75f12 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x94c45166 mach_msg_trap + 10
    1 libSystem.B.dylib 0x94c4c95c mach_msg + 72
    2 com.apple.CoreFoundation                  0x93cdee7e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation                  0x93cdfaa8 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork                       0x94f9618c CFURLCacheWorkerThread(void*) + 388
    5 libSystem.B.dylib 0x94c76055 _pthread_start + 321
    6 libSystem.B.dylib 0x94c75f12 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x94c4c34e __semwait_signal + 10
    1 libSystem.B.dylib 0x94c76ccd pthread_cond_wait$UNIX2003 + 73
    2 com.apple.JavaScriptCore                  0x97ef16b1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3 com.apple.WebCore 0x9093a77c WebCore::LocalStorageThread::threadEntryPoint() + 188
    4 libSystem.B.dylib 0x94c76055 _pthread_start + 321
    5 libSystem.B.dylib 0x94c75f12 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x94c45166 mach_msg_trap + 10
    1 libSystem.B.dylib 0x94c4c95c mach_msg + 72
    2 com.apple.CoreFoundation                  0x93cdee7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                  0x93cdfaa8 CFRunLoopRunInMode + 88
    4 com.apple.Safari 0x0002f33d 0x1000 + 189245
    5 com.apple.Safari 0x0002f08a 0x1000 + 188554
    6 com.apple.Safari 0x0002f023 0x1000 + 188451
    7   libSystem.B.dylib 0x94c76055 _pthread_start + 321
    8 libSystem.B.dylib 0x94c75f12 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x94c4c34e __semwait_signal + 10
    1 libSystem.B.dylib 0x94c76ccd pthread_cond_wait$UNIX2003 + 73
    2 com.apple.QuartzCore                      0x9312fa09 fe_fragment_thread + 54
    3 libSystem.B.dylib 0x94c76055 _pthread_start + 321
    4 libSystem.B.dylib 0x94c75f12 thread_start + 34
    Thread 7:
    0 libPng.dylib 0x90434918 png_write_find_filter + 1926
    1 libPng.dylib 0x90433ff5 _cg_png_write_row + 555
    2 com.apple.ImageIO.framework 0x93b9cab8 writeOne + 3061
    3 com.apple.ImageIO.framework 0x93b6506a _CGImagePluginWritePNG + 124
    4 com.apple.ImageIO.framework 0x93b59e27 CGImageDestinationFinalize + 145
    5 com.apple.Safari 0x00046695 0x1000 + 284309
    6 com.apple.Safari 0x0004542c 0x1000 + 279596
    7 com.apple.Safari                          0x00044c2d 0x1000 + 277549
    8 libSystem.B.dylib 0x94c76055 _pthread_start + 321
    9 libSystem.B.dylib 0x94c75f12 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x94c45166 mach_msg_trap + 10
    1 libSystem.B.dylib 0x94c4c95c mach_msg + 72
    2 com.apple.CoreFoundation                  0x93cdee7e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation                  0x93cdfaa8 CFRunLoopRunInMode + 88
    4 com.apple.Foundation                      0x9425f520 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5 com.apple.Foundation                      0x941fbdfd -[NSThread main] + 45
    6 com.apple.Foundation                      0x941fb9a4 __NSThread__main__ + 308
    7 libSystem.B.dylib 0x94c76055 _pthread_start + 321
    8 libSystem.B.dylib 0x94c75f12 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x94c9460a select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x94c76055 _pthread_start + 321
    2 libSystem.B.dylib 0x94c75f12 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x94c4c34e __semwait_signal + 10
    1 libSystem.B.dylib 0x94c76ccd pthread_cond_wait$UNIX2003 + 73
    2 com.apple.JavaScriptCore                  0x97ef16b1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3 com.apple.WebCore 0x9093a77c WebCore::LocalStorageThread::threadEntryPoint() + 188
    4 libSystem.B.dylib 0x94c76055 _pthread_start + 321
    5 libSystem.B.dylib 0x94c75f12 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x94c4c34e __semwait_signal + 10
    1 libSystem.B.dylib 0x94c76ccd pthread_cond_wait$UNIX2003 + 73
    2 libGLProgrammability.dylib                0x9046db32 glvmDoWork + 162
    3 libSystem.B.dylib 0x94c76055 _pthread_start + 321
    4 libSystem.B.dylib 0x94c75f12 thread_start + 34
    Thread 12:
    0 libSystem.B.dylib 0x94c45166 mach_msg_trap + 10
    1   libSystem.B.dylib 0x94c4c95c mach_msg + 72
    2 com.apple.CoreFoundation                  0x93cdee7e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation                  0x93cdfaa8 CFRunLoopRunInMode + 88
    4 com.apple.audio.CoreAudio                 0x94a8d5f8 HALRunLoop::OwnThread(void*) + 160
    5 com.apple.audio.CoreAudio                 0x94a8d480 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x94c76055 _pthread_start + 321
    7 libSystem.B.dylib 0x94c75f12 thread_start + 34
    Thread 13:
    0   libSystem.B.dylib 0x94c45166 mach_msg_trap + 10
    1 libSystem.B.dylib 0x94c4c95c mach_msg + 72
    2 com.apple.CoreFoundation                  0x93cdee7e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation                  0x93cdfb04 CFRunLoopRun + 84
    4 com.apple.QuickTime                       0x9343cee3 QTSNetworkThread_RunThread + 131
    5 libSystem.B.dylib 0x94c76055 _pthread_start + 321
    6 libSystem.B.dylib 0x94c75f12 thread_start + 34
    Thread 14:
    0 libSystem.B.dylib 0x94c4c34e __semwait_signal + 10
    1 libSystem.B.dylib 0x94c76ccd pthread_cond_wait$UNIX2003 + 73
    2 com.apple.ColorSync                       0x945223c8 pthreadSemaphoreWait(t_pthreadSemaphore*) + 42
    3 com.apple.ColorSync                       0x94534d4e CMMConvTask(void*) + 54
    4 libSystem.B.dylib 0x94c76055 _pthread_start + 321
    5 libSystem.B.dylib 0x94c75f12 thread_start + 34
    Thread 15:
    0 libSystem.B.dylib 0x94c45166 mach_msg_trap + 10
    1 libSystem.B.dylib                         0x94c4c95c mach_msg + 72
    2 libSystem.B.dylib 0x94cba03f mach_msg_server + 491
    3 libjvm.dylib 0x26a1bc35 0x26a0e000 + 56373
    4 libjvm.dylib 0x26a1ba65 0x26a0e000 + 55909
    5 libjvm.dylib                              0x26cecee1 JVM_RaiseSignal + 481121
    6 libSystem.B.dylib 0x94cc1110 _pthread_body + 27
    Thread 16:
    0 libSystem.B.dylib 0x94c45166 mach_msg_trap + 10
    1 libSystem.B.dylib 0x94c4c95c mach_msg + 72
    2   libjvm.dylib 0x26aa4073 0x26a0e000 + 614515
    3 libjvm.dylib 0x26aa3e0c 0x26a0e000 + 613900
    4 libjvm.dylib 0x26aa45fd 0x26a0e000 + 615933
    5 libjvm.dylib 0x26aa3f37 0x26a0e000 + 614199
    6   libjvm.dylib 0x26cecee1 JVM_RaiseSignal + 481121
    7 libSystem.B.dylib 0x94cc1110 _pthread_body + 27
    Thread 17:
    0 libSystem.B.dylib 0x94c45166 mach_msg_trap + 10
    1 libSystem.B.dylib 0x94c4c95c mach_msg + 72
    2 libjvm.dylib 0x26aa412a 0x26a0e000 + 614698
    3 libjvm.dylib 0x26ab348a 0x26a0e000 + 677002
    4 libjvm.dylib 0x26ab2ab5 0x26a0e000 + 674485
    5 libjvm.dylib 0x26c5bd01 JVM_MonitorWait + 481
    6 ??? 0x2b5739b1 0 + 727136689
    7 ??? 0x2b56d9d3 0 + 727112147
    8 ??? 0x2b56d9d3 0 + 727112147
    9   ??? 0x2b56b227 0 + 727101991
    10 libjvm.dylib 0x26aa581a 0x26a0e000 + 620570
    11 libjvm.dylib 0x26ab2943 0x26a0e000 + 674115
    12 libjvm.dylib 0x26ab27e5 0x26a0e000 + 673765
    13  libjvm.dylib 0x26ab26d6 0x26a0e000 + 673494
    14 libjvm.dylib 0x26ab25d8 0x26a0e000 + 673240
    15 libjvm.dylib 0x26cecee1 JVM_RaiseSignal + 481121
    16 libSystem.B.dylib 0x94cc1110 _pthread_body + 27
    Thread 18:
    0 libSystem.B.dylib 0x94c45166 mach_msg_trap + 10
    1 libSystem.B.dylib 0x94c4c95c mach_msg + 72
    2 libjvm.dylib 0x26aa412a 0x26a0e000 + 614698
    3 libjvm.dylib 0x26ab348a 0x26a0e000 + 677002
    4 libjvm.dylib 0x26ab2ab5 0x26a0e000 + 674485
    5 libjvm.dylib 0x26c5bd01 JVM_MonitorWait + 481
    6 ??? 0x2b5739b1 0 + 727136689
    7 ??? 0x2b56d9d3 0 + 727112147
    8 ??? 0x2b56daaa 0 + 727112362
    9 ??? 0x2b56daaa 0 + 727112362
    10  ??? 0x2b56b227 0 + 727101991
    11  libjvm.dylib 0x26aa581a 0x26a0e000 + 620570
    12 libjvm.dylib 0x26ab2943 0x26a0e000 + 674115
    13 libjvm.dylib 0x26ab27e5 0x26a0e000 + 673765
    14 libjvm.dylib 0x26ab26d6 0x26a0e000 + 673494
    15  libjvm.dylib 0x26ab25d8 0x26a0e000 + 673240
    16 libjvm.dylib 0x26cecee1 JVM_RaiseSignal + 481121
    17 libSystem.B.dylib 0x94cc1110 _pthread_body + 27
    Thread 19:
    0 libSystem.B.dylib 0x94c451a2 semaphore_wait_trap + 10
    1 libjvm.dylib 0x26ac24de 0x26a0e000 + 738526
    2 libjvm.dylib 0x26ac1d55 0x26a0e000 + 736597
    3 libjvm.dylib 0x26ab25d8 0x26a0e000 + 673240
    4 libjvm.dylib 0x26cecee1 JVM_RaiseSignal + 481121
    5 libSystem.B.dylib 0x94cc1110 _pthread_body + 27
    Thread 20:
    0 libSystem.B.dylib 0x94c45166 mach_msg_trap + 10
    1 libSystem.B.dylib 0x94c4c95c mach_msg + 72
    2 libjvm.dylib                              0x26aa412a 0x26a0e000 + 614698
    3 libjvm.dylib 0x26aa3cc9 0x26a0e000 + 613577
    4 libjvm.dylib 0x26ac31eb 0x26a0e000 + 741867
    5 libjvm.dylib 0x26ac2e88 0x26a0e000 + 741000
    6 libjvm.dylib 0x26ab25d8 0x26a0e000 + 673240
    7 libjvm.dylib 0x26cecee1 JVM_RaiseSignal + 481121
    8 libSystem.B.dylib 0x94cc1110 _pthread_body + 27
    Thread 21:
    0 libSystem.B.dylib 0x94c45166 mach_msg_trap + 10
    1 libSystem.B.dylib 0x94c4c95c mach_msg + 72
    2 libjvm.dylib 0x26aa412a 0x26a0e000 + 614698
    3 libjvm.dylib 0x26aa3e0c 0x26a0e000 + 613900
    4 libjvm.dylib 0x26ac38b0 0x26a0e000 + 743600
    5 libjvm.dylib 0x26ab25d8 0x26a0e000 + 673240
    6 libjvm.dylib 0x26cecee1 JVM_RaiseSignal + 481121
    7 libSystem.B.dylib 0x94cc1110 _pthread_body + 27
    Thread 22:
    0 libSystem.B.dylib 0x94c45166 mach_msg_trap + 10
    1 libSystem.B.dylib 0x94c4c95c mach_msg + 72
    2 libjvm.dylib 0x26aa4073 0x26a0e000 + 614515
    3 libjvm.dylib 0x26ac487f 0x26a0e000 + 747647
    4 libjvm.dylib 0x26ac432a 0x26a0e000 + 746282
    5 libjvm.dylib 0x26cecee1 JVM_RaiseSignal + 481121
    6 libSystem.B.dylib 0x94cc1110 _pthread_body + 27
    Thread 23:
    0 libSystem.B.dylib 0x94c45166 mach_msg_trap + 10
    1 libSystem.B.dylib 0x94c4c95c mach_msg + 72
    2 libjvm.dylib 0x26aa412a 0x26a0e000 + 614698
    3 libjvm.dylib 0x26ab348a 0x26a0e000 + 677002
    4 libjvm.dylib 0x26ab2ab5 0x26a0e000 + 674485
    5 libjvm.dylib 0x26c5bd01 JVM_MonitorWait + 481
    6 ??? 0x2b5739b1 0 + 727136689
    7 ??? 0x2b56d9d3 0 + 727112147
    8 ??? 0x2b56d9d3 0 + 727112147
    9 ??? 0x2b56b227 0 + 727101991
    10 libjvm.dylib 0x26aa581a 0x26a0e000 + 620570
    11 libjvm.dylib 0x26ab2943 0x26a0e000 + 674115
    12  libjvm.dylib 0x26ab27e5 0x26a0e000 + 673765
    13 libjvm.dylib 0x26ab26d6 0x26a0e000 + 673494
    14 libjvm.dylib 0x26ab25d8 0x26a0e000 + 673240
    15 libjvm.dylib 0x26cecee1 JVM_RaiseSignal + 481121
    16 libSystem.B.dylib 0x94cc1110 _pthread_body + 27
    Thread 24:
    0 libSystem.B.dylib 0x94c45166 mach_msg_trap + 10
    1 libSystem.B.dylib 0x94c4c95c mach_msg + 72
    2 libjvm.dylib 0x26aa412a 0x26a0e000 + 614698
    3 libjvm.dylib 0x26ab348a 0x26a0e000 + 677002
    4 libjvm.dylib 0x26ab2ab5 0x26a0e000 + 674485
    5 libjvm.dylib 0x26c5bd01 JVM_MonitorWait + 481
    6 ??? 0x2b5739b1 0 + 727136689
    7 ??? 0x2b56d9d3 0 + 727112147
    8 ??? 0x2b56daaa 0 + 727112362
    9 ??? 0x2b56daaa 0 + 727112362
    10  ??? 0x2b56dcd9 0 + 727112921
    11  ??? 0x2b56b227 0 + 727101991
    12 libjvm.dylib 0x26aa581a 0x26a0e000 + 620570
    13 libjvm.dylib 0x26ab2943 0x26a0e000 + 674115
    14 libjvm.dylib 0x26ab27e5 0x26a0e000 + 673765
    15 libjvm.dylib 0x26ab26d6 0x26a0e000 + 673494
    16 libjvm.dylib 0x26ab25d8 0x26a0e000 + 673240
    17 libjvm.dylib 0x26cecee1 JVM_RaiseSignal + 481121
    18 libSystem.B.dylib 0x94cc1110 _pthread_body + 27
    Thread 25:
    0 libSystem.B.dylib 0x94c45166 mach_msg_trap + 10
    1 libSystem.B.dylib 0x94c4c95c mach_msg + 72
    2 libjvm.dylib 0x26aa412a 0x26a0e000 + 614698
    3 libjvm.dylib 0x26ab348a 0x26a0e000 + 677002
    4 libjvm.dylib 0x26ab2ab5 0x26a0e000 + 674485
    5 libjvm.dylib 0x26c5bd01 JVM_MonitorWait + 481
    6 ??? 0x2b5739b1 0 + 727136689
    7 ??? 0x2b56d9d3 0 + 727112147
    8 ??? 0x2b56d9d3 0 + 727112147
    9 ??? 0x2b56dcd9 0 + 727112921
    10  ??? 0x2b56b227 0 + 727101991
    11 libjvm.dylib 0x26aa581a 0x26a0e000 + 620570
    12 libjvm.dylib 0x26ab2943 0x26a0e000 + 674115
    13 libjvm.dylib 0x26ab27e5 0x26a0e000 + 673765
    14 libjvm.dylib 0x26ab26d6 0x26a0e000 + 673494
    15 libjvm.dylib 0x26ab25d8 0x26a0e000 + 673240
    16 libjvm.dylib 0x26cecee1 JVM_RaiseSignal + 481121
    17 libSystem.B.dylib 0x94cc1110 _pthread_body + 27
    Thread 26:
    0 libSystem.B.dylib 0x94c45166 mach_msg_trap + 10
    1 libSystem.B.dylib 0x94c4c95c mach_msg + 72
    2 libjvm.dylib 0x26aa412a 0x26a0e000 + 614698
    3 libjvm.dylib 0x26ab348a 0x26a0e000 + 677002
    4 libjvm.dylib 0x26ab2ab5 0x26a0e000 + 674485
    5 libjvm.dylib 0x26c5bd01 JVM_MonitorWait + 481
    6 ??? 0x2b5739b1 0 + 727136689
    7 ??? 0x2b56d9d3 0 + 727112147
    8 ??? 0x2b56daaa 0 + 727112362
    9 ??? 0x2b56daaa 0 + 727112362
    10  ??? 0x2b56b227 0 + 727101991
    11 libjvm.dylib 0x26aa581a 0x26a0e000 + 620570
    12  libjvm.dylib 0x26ab2943 0x26a0e000 + 674115
    13 libjvm.dylib 0x26ab27e5 0x26a0e000 + 673765
    14 libjvm.dylib 0x26ab26d6 0x26a0e000 + 673494
    15 libjvm.dylib 0x26ab25d8 0x26a0e000 + 673240
    16 libjvm.dylib 0x26cecee1 JVM_RaiseSignal + 481121
    17 libSystem.B.dylib 0x94cc1110 _pthread_body + 27
    Thread 27:
    0 libSystem.B.dylib 0x94c45166 mach_msg_trap + 10
    1 libSystem.B.dylib 0x94c4c95c mach_msg + 72
    2 libjvm.dylib 0x26aa412a 0x26a0e000 + 614698
    3 libjvm.dylib 0x26ab348a 0x26a0e000 + 677002
    4 libjvm.dylib 0x26ab2ab5 0x26a0e000 + 674485
    5 libjvm.dylib 0x26c5bd01 JVM_MonitorWait + 481
    6 ??? 0x2b5739b1 0 + 727136689
    7 ??? 0x2b56d9d3 0 + 727112147
    8 ??? 0x2b56d9d3 0 + 727112147
    9 ??? 0x2b56b227 0 + 727101991
    10 libjvm.dylib 0x26aa581a 0x26a0e000 + 620570
    11 libjvm.dylib 0x26ab2943 0x26a0e000 + 674115
    12 libjvm.dylib 0x26ab27e5 0x26a0e000 + 673765
    13 libjvm.dylib 0x26ab26d6 0x26a0e000 + 673494
    14 libjvm.dylib 0x26ab25d8 0x26a0e000 + 673240
    15 libjvm.dylib 0x26cecee1 JVM_RaiseSignal + 481121
    16 libSystem.B.dylib 0x94cc1110 _pthread_body + 27
    Thread 28:
    0 libSystem.B.dylib 0x94c45166 mach_msg_trap + 10
    1 libSystem.B.dylib 0x94c4c95c mach_msg + 72
    2 libjvm.dylib 0x26aa412a 0x26a0e000 + 614698
    3 libjvm.dylib 0x26ab348a 0x26a0e000 + 677002
    4 libjvm.dylib 0x26ab2ab5 0x26a0e000 + 674485
    5 libjvm.dylib 0x26c5bd01 JVM_MonitorWait + 481
    6 ??? 0x2b5739b1 0 + 727136689
    7 ??? 0x2b56d9d3 0 + 727112147
    8 ??? 0x2b56dcd9 0 + 727112921
    9 ??? 0x2b56b227 0 + 727101991
    10 libjvm.dylib 0x26aa581a 0x26a0e000 + 620570
    11 libjvm.dylib 0x26ab2943 0x26a0e000 + 674115
    12  libjvm.dylib 0x26ab27e5 0x26a0e000 + 673765
    13 libjvm.dylib 0x26ab26d6 0x26a0e000 + 673494
    14 libjvm.dylib 0x26ab25d8 0x26a0e000 + 673240
    15 libjvm.dylib 0x26cecee1 JVM_RaiseSignal + 481121
    16 libSystem.B.dylib 0x94cc1110 _pthread_body + 27
    Thread 29:
    0 libSystem.B.dylib 0x94c89766 __wait4 + 10
    1 libjava.jnilib 0x16ba8cd1 Java_java_lang_UNIXProcess_waitForProcessExit + 34
    2 ???                                       0x2b5739b1 0 + 727136689
    3 ??? 0x2b56da7f 0 + 727112319
    4 ??? 0x2b56da7f 0 + 727112319
    5 ??? 0x2b56b227 0 + 727101991
    6 libjvm.dylib 0x26aa581a 0x26a0e000 + 620570
    7 libjvm.dylib 0x26ab2943 0x26a0e000 + 674115
    8 libjvm.dylib 0x26ab27e5 0x26a0e000 + 673765
    9 libjvm.dylib 0x26ab26d6 0x26a0e000 + 673494
    10 libjvm.dylib 0x26ab25d8 0x26a0e000 + 673240
    11 libjvm.dylib 0x26cecee1 JVM_RaiseSignal + 481121
    12 libSystem.B.dylib 0x94cc1110 _pthread_body + 27
    Thread 30:
    0 libSystem.B.dylib 0x94c451c6 semaphore_timedwait_signal_trap + 10
    1 libSystem.B.dylib 0x94c771af _pthread_cond_wait + 1244
    2 libSystem.B.dylib 0x94c78a33 pthread_cond_timedwait_relative_np + 47
    3 com.apple.Foundation                      0x94241dbc -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation                      0x94241bd0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.Foundation                      0x94241b35 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.AppKit 0x91af86e8 -[NSUIHeartBeat _heartBeatThread:] + 753
    7 com.apple.Foundation                      0x941fbdfd -[NSThread main] + 45
    8 com.apple.Foundation                      0x941fb9a4 __NSThread__main__ + 308
    9 libSystem.B.dylib 0x94c76055 _pthread_start + 321
    10 libSystem.B.dylib 0x94c75f12 thread_start + 34
    Thread 31:
    0 libSystem.B.dylib 0x94cae1a2 __workq_ops + 10
    1 libSystem.B.dylib 0x94cae1d2 start_wqthread + 30
    Thread 32:
    0 ??? 0000000000 0 + 0
    Thread 33:
    0 libSystem.B.dylib 0x94c451ae semaphore_wait_signal_trap + 10
    1 libSystem.B.dylib 0x94c771c6 _pthread_cond_wait + 1267
    2 libSystem.B.dylib 0x94cbc449 pthread_cond_wait + 48
    3 ...lashPlayer-10.4-10.5.plugin            0x1028dfbf unregister_ShockwaveFlash + 46383
    4 ...lashPlayer-10.4-10.5.plugin            0x0fe815af 0xfe68000 + 103855
    5 ...lashPlayer-10.4-10.5.plugin            0x1028e0ac unregister_ShockwaveFlash + 46620
    6 ...lashPlayer-10.4-10.5.plugin            0x1028e0f0 unregister_ShockwaveFlash + 46688
    7 ...lashPlayer-10.4-10.5.plugin            0x1028e216 unregister_ShockwaveFlash + 46982
    8 libSystem.B.dylib 0x94c76055 _pthread_start + 321
    9 libSystem.B.dylib 0x94c75f12 thread_start + 34
    Thread 34:
    0 libSystem.B.dylib 0x94c451ae semaphore_wait_signal_trap + 10
    1 libSystem.B.dylib 0x94c771c6 _pthread_cond_wait + 1267
    2 libSystem.B.dylib 0x94cbc449 pthread_cond_wait + 48
    3 ...lashPlayer-10.4-10.5.plugin            0x1028dfbf unregister_ShockwaveFlash + 46383
    4 ...lashPlayer-10.4-10.5.plugin            0x0fe815af 0xfe68000 + 103855
    5 ...lashPlayer-10.4-10.5.plugin            0x1028e0ac unregister_ShockwaveFlash + 46620
    6 ...lashPlayer-10.4-10.5.plugin            0x1028e0f0 unregister_ShockwaveFlash + 46688
    7 ...lashPlayer-10.4-10.5.plugin            0x1028e216 unregister_ShockwaveFlash + 46982
    8 libSystem.B.dylib 0x94c76055 _pthread_start + 321
    9 libSystem.B.dylib 0x94c75f12 thread_start + 34
    Thread 35:
    0   libSystem.B.dylib 0x94c451c6 semaphore_timedwait_signal_trap + 10
    1 libSystem.B.dylib 0x94c771af _pthread_cond_wait + 1244
    2 libSystem.B.dylib 0x94c78a33 pthread_cond_timedwait_relative_np + 47
    3 ...lashPlayer-10.4-10.5.plugin            0x1028df87 unregister_ShockwaveFlash + 46327
    4 ...lashPlayer-10.4-10.5.plugin            0x1004401e 0xfe68000 + 1949726
    5 ...lashPlayer-10.4-10.5.plugin            0x1028e0ac unregister_ShockwaveFlash + 46620
    6 ...lashPlayer-10.4-10.5.plugin            0x1028e0f0 unregister_ShockwaveFlash + 46688
    7 ...lashPlayer-10.4-10.5.plugin            0x1028e216 unregister_ShockwaveFlash + 46982
    8 libSystem.B.dylib 0x94c76055 _pthread_start + 321
    9 libSystem.B.dylib                         0x94c75f12 thread_start + 34
    Thread 36:
    0 libSystem.B.dylib 0x94c451c6 semaphore_timedwait_signal_trap + 10
    1 libSystem.B.dylib 0x94c771af _pthread_cond_wait + 1244
    2 libSystem.B.dylib 0x94c78a33 pthread_cond_timedwait_relative_np + 47
    3 ...lashPlayer-10.4-10.5.plugin            0x1028df87 unregister_ShockwaveFlash + 46327
    4 ...lashPlayer-10.4-10.5.plugin            0x1017c768 0xfe68000 + 3229544
    5 ...lashPlayer-10.4-10.5.plugin            0x1028e0ac unregister_ShockwaveFlash + 46620
    6 ...lashPlayer-10.4-10.5.plugin            0x1028e0f0 unregister_ShockwaveFlash + 46688
    7 ...lashPlayer-10.4-10.5.plugin            0x1028e216 unregister_ShockwaveFlash + 46982
    8 libSystem.B.dylib 0x94c76055 _pthread_start + 321
    9 libSystem.B.dylib                         0x94c75f12 thread_start + 34
    Thread 37:
    0 libSystem.B.dylib 0x94c451c6 semaphore_timedwait_signal_trap + 10
    1 libSystem.B.dylib 0x94c771af _pthread_cond_wait + 1244
    2 libSystem.B.dylib 0x94c78a33 pthread_cond_timedwait_relative_np + 47
    3 ...lashPlayer-10.4-10.5.plugin            0x1028df87 unregister_ShockwaveFlash + 46327
    4 ...lashPlayer-10.4-10.5.plugin            0x1017c768 0xfe68000 + 3229544
    5 ...lashPlayer-10.4-10.5.plugin            0x1028e0ac unregister_ShockwaveFlash + 46620
    6 ...lashPlayer-10.4-10.5.plugin            0x1028e0f0 unregister_ShockwaveFlash + 46688
    7 ...lashPlayer-10.4-10.5.plugin            0x1028e216 unregister_ShockwaveFlash + 46982
    8 libSystem.B.dylib 0x94c76055 _pthread_start + 321
    9 libSystem.B.dylib 0x94c75f12 thread_start + 34
    Thread 38:
    0 libSystem.B.dylib 0x94c451c6 semaphore_timedwait_signal_trap + 10
    1 libSystem.B.dylib 0x94c771af _pthread_cond_wait + 1244
    2 libSystem.B.dylib 0x94c78a33 pthread_cond_timedwait_relative_np + 47
    3 ...lashPlayer-10.4-10.5.plugin            0x1028df87 unregister_ShockwaveFlash + 46327
    4 ...lashPlayer-10.4-10.5.plugin            0x1017c768 0xfe68000 + 3229544
    5 ...lashPlayer-10.4-10.5.plugin            0x1028e0ac unregister_ShockwaveFlash + 46620
    6 ...lashPlayer-10.4-10.5.plugin            0x1028e0f0 unregister_ShockwaveFlash + 46688
    7 ...lashPlayer-10.4-10.5.plugin            0x1028e216 unregister_ShockwaveFlash + 46982
    8 libSystem.B.dylib 0x94c76055 _pthread_start + 321
    9 libSystem.B.dylib 0x94c75f12 thread_start + 34
    Thread 39:
    0 libSystem.B.dylib 0x94c451c6 semaphore_timedwait_signal_trap + 10
    1 libSystem.B.dylib 0x94c771af _pthread_cond_wait + 1244
    2 libSystem.B.dylib                         0x94c78a33 pthread_cond_timedwait_relative_np + 47
    3 ...lashPlayer-10.4-10.5.plugin            0x1028df87 unregister_ShockwaveFlash + 46327
    4 ...lashPlayer-10.4-10.5.plugin            0x1004401e 0xfe68000 + 1949726
    5 ...lashPlayer-10.4-10.5.plugin            0x1028e0ac unregister_ShockwaveFlash + 46620
    6 ...lashPlayer-10.4-10.5.plugin            0x1028e0f0 unregister_ShockwaveFlash + 46688
    7 ...lashPlayer-10.4-10.5.plugin            0x1028e216 unregister_ShockwaveFlash + 46982
    8 libSystem.B.dylib 0x94c76055 _pthread_start + 321
    9 libSystem.B.dylib 0x94c75f12 thread_start + 34
    Thread 40:
    0 libSystem.B.dylib 0x94c451c6 semaphore_timedwait_signal_trap + 10
    1 libSystem.B.dylib 0x94c771af _pthread_cond_wait + 1244
    2 libSystem.B.dylib 0x94c78a33 pthread_cond_timedwait_relative_np + 47
    3 ...lashPlayer-10.4-10.5.plugin            0x1028df87 unregister_ShockwaveFlash + 46327
    4 ...lashPlayer-10.4-10.5.plugin            0x1017c768 0xfe68000 + 3229544
    5 ...lashPlayer-10.4-10.5.plugin            0x1028e0ac unregister_ShockwaveFlash + 46620
    6 ...lashPlayer-10.4-10.5.plugin            0x1028e0f0 unregister_ShockwaveFlash + 46688
    7 ...lashPlayer-10.4-10.5.plugin            0x1028e216 unregister_ShockwaveFlash + 46982
    8 libSystem.B.dylib 0x94c76055 _pthread_start + 321
    9 libSystem.B.dylib 0x94c75f12 thread_start + 34
    Thread 41:
    0 libSystem.B.dylib 0x94c451c6 semaphore_timedwait_signal_trap + 10
    1 libSystem.B.dylib 0x94c771af _pthread_cond_wait + 1244
    2 libSystem.B.dylib 0x94c78a33 pthread_cond_timedwait_relative_np + 47
    3 ...lashPlayer-10.4-10.5.plugin            0x1028df87 unregister_ShockwaveFlash + 46327
    4 ...lashPlayer-10.4-10.5.plugin            0x1004401e 0xfe68000 + 1949726
    5 ...lashPlayer-10.4-10.5.plugin            0x1028e0ac unregister_ShockwaveFlash + 46620
    6 ...lashPlayer-10.4-10.5.plugin            0x1028e0f0 unregister_ShockwaveFlash + 46688
    7 ...lashPlayer-10.4-10.5.plugin            0x1028e216 unregister_ShockwaveFlash + 46982
    8 libSystem.B.dylib 0x94c76055 _pthread_start + 321
    9 libSystem.B.dylib 0x94c75f12 thread_start + 34
    Thread 42:
    0 libSystem.B.dylib 0x94c451c6 semaphore_timedwait_signal_trap + 10
    1 libSystem.B.dylib 0x94c771af _pthread_cond_wait + 1244
    2 libSystem.B.dylib 0x94c78a33 pthread_cond_timedwait_relative_np + 47
    3 ...lashPlayer-10.4-10.5.plugin            0x1028df87 unregister_ShockwaveFlash + 46327
    4 ...lashPlayer-10.4-10.5.plugin            0x1017c768 0xfe68000 + 3229544
    5 ...lashPlayer-10.4-10.5.plugin            0x1028e0ac unregister_ShockwaveFlash + 46620
    6 ...lashPlayer-10.4-10.5.plugin            0x1028e0f0 unregister_ShockwaveFlash + 46688
    7 ...lashPlayer-10.4-10.5.plugin            0x1028e216 unregister_ShockwaveFlash + 46982
    8 libSystem.B.dylib 0x94c76055 _pthread_start + 321
    9 libSystem.B.dylib 0x94c75f12 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x0000238a  ebx: 0x104342e7  ecx: 0x00000000  edx: 0x108759a0
      edi: 0x108753c8  esi: 0x25b3ca78  ebp: 0xbfffe318  esp: 0xbfffe30c
       ss: 0x0000001f  efl: 0x00210293  eip: 0x10463955   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x0000239a
    Binary Images:
    0x1000 -   0x5d3ffc  com.apple.Safari 5.0.6 (5533.22.3) <79731a26a77704fb4831e3adc020a381> /Applications/Safari.app/Contents/MacOS/Safari
      0x644000 -   0x64ffff  libxar.1.dylib ??? (???) /usr/lib/libxar.1.dylib
      0x657000 -   0x681fe8  com.apple.framework.Apple80211 5.2.8 (528.1) <97dfd0c2d44d3c5839dd96f74e43d9c2> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
      0x692000 -   0x6a1ffc  SyndicationUI ??? (???) <4cb2f7ffaf3185ff4e036082064e7121> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
      0x6cd000 -   0x6d2fff  com.apple.FolderActionsMenu 1.3.2 (1.3.2) <9ba69ef0bec96264a79fa28b3a5f058b> /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0xa0e4000 -  0xa3ddff3  com.apple.RawCamera.bundle 2.3.0 (505) <1c7cea30ffe2b4de98ced6518df1e54b> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0xc967000 -  0xc967ffd  libmx.A.dylib ??? (???) /usr/lib/libmx.A.dylib
    0xc9ca000 -  0xc9cfffb  com.apple.AppleMPEG2Codec 1.0.1 (220) /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0xcb77000 -  0xcb78ff3  ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0xd0e2000 -  0xd0e7ff3  libCGXCoreImage.A.dylib ??? (???) <30bd95e38c8a203ee387013527cfd9d0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0xd3c0000 -  0xd3c2ffe  com.apple.AutomatorCMM 1.1 (162) <413d7e87f90ba14adf2c2a08af448666> /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0xd3c8000 -  0xd3c9ffd  com.apple.BluetoothMenu 2.1.8 (2.1.8f2) /System/Library/Contextual Menu Items/BluetoothContextualMenu.plugin/Contents/MacOS/BluetoothContextualMenu
    0xfa6c000 -  0xfa74fff  JavaNativeFoundation ??? (???) <1eba7d7fffda78c672636b3e27d19d6a> /System/Library/Frameworks/JavaVM.framework/Versions/A/Frameworks/JavaNativeFou ndation.framework/Versions/A/JavaNativeFoundation
    0xfc05000 -  0xfc06fff  com.apple.JavaPluginCocoa 12.9.0 (12.9.0) <5451adf6a77e3088b1a096fe1e16b189> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaPluginCocoa.bundle/C ontents/MacOS/JavaPluginCocoa
    0xfc0c000 -  0xfc26fc3  com.apple.AppleIntermediateCodec 1.2 (145) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0xfc68000 -  0xfc6cffd  JavaLaunching ??? (???) <41aa04fadb9589ab9c249284090b2ef7> /System/Library/PrivateFrameworks/JavaLaunching.framework/Versions/A/JavaLaunch ing
    0xfe5e000 -  0xfe61ff2 +com.macromedia.Flash Player.plugin 10.1.102.64 (10.1.102.64) <0e4f768e4ff090b47387c86a3ec48c43> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0xfe68000 - 0x1082aff3 +com.macromedia.FlashPlayer-10.4-10.5.plugin 10.1.102.64 (10.1.102.64) <ab20f8cbd0050fdf33413b314a53f915> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/PlugIns/FlashPlayer-10.4-10.5.plugin/Contents/MacOS/Flas hPlayer-10.4-10.5
    0x10b0d000 - 0x10b16fff  com.apple.IOFWDVComponents 1.9.5 (1.9.5) <889959011cb23c11785c378264400284> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x10b75000 - 0x10bb0fff  com.apple.QuickTimeFireWireDV.component 7.7 (1680.28) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x10bbd000 - 0x10bebff7  com.apple.QuickTimeIIDCDigitizer 7.7 (1680.28) <df482fbb25afcb366abfb16f09ed7e72> /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x10bf6000 - 0x10c44ffe  com.apple.QuickTimeUSBVDCDigitizer 2.3.2 (2.3.2) <dceb65eeab48361f6466fadf8aa4ad6f> /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x10c52000 - 0x10c55fff  com.apple.audio.AudioIPCPlugIn 1.0.6 (1.0.6) <51c811377017028f8904ad779e6a1344> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x10c65000 - 0x10deafe3  GLEngine ??? (???) <3bd4729832411ff31de5bb9d97e3718d> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x10e18000 - 0x110f6ff1  com.apple.ATIRadeonX2000GLDriver 1.5.48 (5.4.8) <0858896931bc8cdd84f736ed21e23738> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
    0x1115a000 - 0x11176ff7  GLRendererFloat ??? (???) <927b7d5ce6a7c21fdc761f6f29cdf4ee> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x11239000 - 0x1123ffff  com.apple.audio.AppleHDAHALPlugIn 1.7.1 (1.7.1a2) <a0a4389b5ac52ab84397d2b25c9d3b9c> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x11938000 - 0x11951ff3  com.apple.applepixletvideo 1.2.18 (1.2d18) <386af0b779e8c148e6b6cbc7f5489d45> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x13015000 - 0x13023feb  libSimplifiedChineseConverter.dylib ??? (???) <68f130a585c3f580d166ef7cbbf47e69> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x132ec000 - 0x132fefff  libTraditionalChineseConverter.dylib ??? (???) <6108541a452ff07d2f67db4a488b9d22> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x13e2e000 - 0x13e3bff7 +net.telestream.license 1.0.8.2-GC (1.0.8.2-GC) <a61005c5e6a484a62a8538e53cfbd6af> /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense
    0x149e0000 - 0x149ebffe  com.apple.JavaPlugin1_WebKit 12.9.0 (12.9.0) <039521819de98ec3f2c6268f959860bc> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Resources/JavaPlugin 1_WebKit.bundle/Contents/MacOS/JavaPluginCocoa
    0x14ef7000 - 0x150ecff2 +net.telestream.wmv.import 2.4.0.11 (2.4.0.11) <83f7489b3935e1bab93469179217a26d> /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x15121000 - 0x15283fe1  com.apple.QuickTimeStreaming.component 7.7 (1680.28) <b7e03dfbed83c1405b588c67bda702cb> /System/Library/QuickTime/QuickTimeStreaming.component/Contents/MacOS/QuickTime Streaming
    0x152e6000 - 0x156c8ff0  QuickTimeH264.scalar ??? (???) <5e559fe08e569b80610ad17f6e0a4f71> /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.scalar
    0x157c8000 - 0x159ccfe7  com.apple.audio.codecs.Components 1.9.1 (1.9.1) /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x15afd000 - 0x15cbfff2 +net.telestream.wmv.advanced 2.4.0.11 (2.4.0.11) <92b25580ff565e91902fd1dc3e7ec9c2> /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0x15e1b000 - 0x1610bfeb +org.perian.Perian 1.2.3 (1.2.3) <722fff4f46efe5be70a642b5873d2b37> /Users/4TWB/Library/QuickTime/Perian.component/Contents/MacOS/Perian
    0x16486000 - 0x164d9ff7  com.apple.AppleProResDecoder 2.0.1 (227) /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/AppleProR esDecoder
    0x16513000 - 0x16578fef  com.apple.AppleVAH264HW.component 1.0 (1.0) <9247aea75cd42fd2c138dd35ce83ab9a> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW
    0x16664000 - 0x16666fff  com.apple.BezelServicesFW 1.4.9212 (1.4.9212) /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x16804000 - 0x16807ffc  libnio.jnilib ??? (???) <f4385cf3035ae0a28c98c738f8305bb8> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libnio.jni lib
    0x16857000 - 0x16857fff  libcmm.jnilib ??? (???) <6024691f719905ff6760b79172349b44> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libcmm.jni lib
    0x168bc000 - 0x168c0ffd  com.apple.JavaVM 12.9.0 (12.9.0) <ddf63af73eedc15915184c97c95a9dcf> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x168c9000 - 0x168d0fe0  libverify.dylib ??? (???) <6ac70134f51ca99f2e561d90bd1c947c> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libverify. dylib
    0x16b8b000 - 0x16b95ffb  libdeploy.jnilib ??? (???) /System/Library/Java/Support/Deploy.bundle/Contents/Resources/JavaPluginCocoa.b undle/Contents/Resources/Java/libdeploy.jnilib
    0x16ba0000 - 0x16bbafef  libjava.jnilib ??? (???) <1c20d672339b50ec8f1e94516d11a66f> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libjava.jn ilib
    0x18049000 - 0x18054ffb  libnet.jnilib ??? (???) <a6a9547cc197607d0689b5800a6f7f46> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libnet.jni lib
    0x18060000 - 0x1806bffb  libzip.jnilib ??? (???) <cb9aa2ee78d49fb1ac5f069475f15f67> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libzip.jni lib
    0x18440000 - 0x1845cfe7  libPDFRIP.A.dylib ??? (???) <13247fe0bc24a36f1e5f46c9d830838e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    0x1bbf4000 - 0x1bbf6fff  libkeychain.jnilib ??? (???) <503abfd3a3d65343ba4a075c379c9dc7> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libkeychai n.jnilib
    0x1c15f000 - 0x1c168ff7  com.apple.iokit.IOUSBLib 3.4.9 (3.4.9) <ea4061ec718fddebf2cf952e8606ae87> /System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle/Co ntents/MacOS/IOUSBLib
    0x1e0c0000 - 0x1e135ff7  com.apple.Bluetooth 2.1.9 (2.1.9f10) <d70a88066ebf7eb8071781f686caced3> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x2064c000 - 0x2065cfff  liblaf.jnilib ??? (???) <f562cd1f6fe623b2fcd2dd2fc4e8b6ab> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/liblaf.jni lib
    0x20b26000 - 0x20b26ffd  liblangid.dylib ??? (???) <4310e568d617f1ce7178266630e1b71a> /usr/lib/liblangid.dylib
    0x216b4000 - 0x216d6fe7  libjpeg.jnilib ??? (???) <20a44fcf49a6ef1f0219d3f2a5cc4701> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libjpeg.jn ilib
    0x23be8000 - 0x23d13ff7  libmecab.1.0.0.dylib ??? (???) <bef4c5c9918bc623b9137e9bf59b1e5e> /usr/lib/libmecab.1.0.0.dylib
    0x23d3a000 - 0x23d82ff3  libsuncmm.jnilib ??? (???) <d084ad7174d24b89ed0d9b16f183e861> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libsuncmm. jnilib
    0x262cb000 - 0x26323fff  libfontmanager.jnilib ??? (???) <296e745419f71b99ce7e1bdedeb4a08d> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libfontman ager.jnilib
    0x26a0e000 - 0x26d7bfe3  libjvm.dylib ??? (???) <e873f28fc5e1daa62b077c1a50044b06> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Home/bundle/Librarie s/libjvm.dylib
    0x2742b000 - 0x275c8fff  libawt.jnilib ??? (???) <38c47033ec747046b749eb463281bfcc> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libawt.jni lib
    0x4194c000 - 0x41aa0ff7 +com.Google.GoogleEarthPlugin.plugin 6.1 (6.1.0.5001) <b77c1e4092adec0b825a450a5ccf6b8c> /Library/Internet Plug-Ins/Google Earth Web Plug-in.plugin/Contents/MacOS/libnpgeplugin.dylib
    0x70000000 - 0x700e6ff2  com.apple.audio.units.Components 1.5.2 (1.5.2) /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe2db43  dyld 97.1 (???) <458eed38a009e5658a79579e7bc26603> /usr/lib/dyld
    0x90003000 - 0x90413fef  libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x90414000 - 0x90418fff  libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x90419000 - 0x90429fff  com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <06d8fc0307314f8ffc16f206ad3dbf44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9042a000 - 0x90445ff3  libPng.dylib ??? (???) <e0c3bdc3144e1ed91f1e4d00d147ff3a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x90446000 - 0x90917fbe  libGLProgrammability.dylib ??? (???) <7f18294a7bd0b6afe4319f29187fc70d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x90918000 - 0x90918ffd  com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x90919000 - 0x91687fe3  com.apple.WebCore 5534 (5534.50.1) <bef6f01e56834f2498918b264f0acbf7> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x91688000 - 0x91769ff7  libxml2.2.dylib ??? (???) <f274ba384fb55203873f9c17569ef131> /usr/lib/libxml2.2.dylib
    0x9176a000 - 0x9176affe  com.apple.quartzframework 1.5 (1.5) <4b8f505e32e4f2d67967a276401f9aaf> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9176b000 - 0x91776fe7  libCSync.A.dylib ??? (???) <f3228c803584320fde5e1bb9f04b4d44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91777000 - 0x91795ff3  com.apple.DirectoryService.Framework 3.5.7 (3.5.7) <b4cd561d2481c4162ecf0acdf8cb062c> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x91796000 - 0x917a5ffe  com.apple.DSObjCWrappers.Framework 1.2.1 (1.2.1) <eac1c7b7c07ed3148c85934b6f656308> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x917b8000 - 0x917f7fef  libTIFF.dylib ??? (???) <2afd7f6079224311d67ab427e10bf61c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x917f8000 - 0x91839fe7  libRIP.A.dylib ??? (???) <cd04df9e8993c51312c8cbcfe2539914> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9183a000 - 0x91841ffe  libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x91842000 - 0x9189cff7  com.apple.CoreText 2.0.5 (???) <5483518a613464d043455ac661a9dcbe> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9189d000 - 0x918a1fff  libGIF.dylib ??? (???) <ade6d93abe118569a7a39d11f81eb9bf> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x918ac000 - 0x918baffd  libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x918bb000 - 0x918dffeb  libssl.0.9.7.dylib ??? (???) <5b29af782be5894be8b336c9c73c18b6> /usr/lib/libssl.0.9.7.dylib
    0x918e0000 - 0x91912fff  com.apple.LDAPFramework 1.4.5 (110) <bb7a3e5d66f00d1d1c8a40569b003ba3> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x91913000 - 0x9193cfff  libcups.2.dylib ??? (???) <2b0ab6b9fa1957ee940835d0cfd42894> /usr/lib/libcups.2.dylib
    0x9193d000 - 0x919c7ff7  com.apple.DesktopServices 1.4.9 (1.4.9) <f5e51a76d315798371b3dd35a4d46d6c> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x919c8000 - 0x919f7fe3  com.apple.AE 402.3 (402.3) <b13bfda0ad9314922ee37c0d018d7de9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x919f8000 - 0x91a51ff7  libGLU.dylib ??? (???) <a3b9be30100a25a6cd3ad109892f52b7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x91a52000 - 0x92250fef  com.apple.AppKit 6.5.9 (949.54) <4df5d2e2271175452103f789b4f4d8a8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x92251000 - 0x923d5fef  com.apple.MediaToolbox 0.484.2 (484.2) <03c5c5966a91ad3ae9c825340fa21970> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x923d6000 - 0x923d6ffc  com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x92640000 - 0x92664fff  libxslt.1.dylib ??? (???) <c372568bd2f7169efa0faee6546eead3> /usr/lib/libxslt.1.dylib
    0x9266b000 - 0x927a3fe7  com.apple.imageKit 1.0.2 (1.0) <00d03cf7f26e1b6023efdc4bd15dd52e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x927a4000 - 0x927abff7  libCGATS.A.dylib ??? (???) <8875cf11c0de0579423ac6b6ce80336d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x9288f000 - 0x92a0ffff  com.apple.AddressBook.framework 4.1.2 (702) <f9360f9926ccd411fdf7550b73034d17> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x92a10000 - 0x92b62ff3  com.apple.audio.toolbox.AudioToolbox 1.5.3 (1.5.3) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x92b63000 - 0x92d34fef  com.apple.security 5.0.7 (1) <44e26a9c40630a54d5a9f70c18483411> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x92d35000 - 0x92df0fe3  com.apple.CoreServices.OSServices 228.1 (228.1) <9c640e79ad97f335730d8a49f6cb2032> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x92df1000 - 0x92e84fff  com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92e85000 - 0x92e86ffc  libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x92e87000 - 0x92e89ff1  com.apple.QuickTimeH264.component 7.7 (1680.28) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x92fee000 - 0x92ff3fff  com.apple.DisplayServicesFW 2.0.2 (2.0.2) <cb9b98b43ae385a0f374baabe2b71764> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x92ff4000 - 0x92ffbfff  com.apple.agl 3.0.9 (AGL-3.0.9) <2f39c480cfcee9358a23d61b20a6aa56> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x92ffc000 - 0x9303afff  libGLImage.dylib ??? (???) <a6425aeb77f4da13212ac75df57b056d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9303b000 - 0x933d8fef  com.apple.QuartzCore 1.5.8 (1.5.8) <a28fa54346a9f9d5b3bef076a1ee0fcf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x93429000 - 0x93754ff6  com.apple.QuickTime 7.7 (1680.28) <df75ea1435dadaf44ffde0924bc67ec4> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x93755000 - 0x937e2ff7  com.apple.LaunchServices 292 (292) <a41286c7c1eb20ffd5cc796f791070f0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x937e3000 - 0x9381dfe7  com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9381e000 - 0x93822fff  com.apple.CoreMediaAuthoringPrivate 1.6 (1.6) /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x9383b000 - 0x93845feb  com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93846000 - 0x93b20ff3  com.apple.CoreServices.CarbonCore 786.16 (786.16) <d2af3f75c3500c518c39fd00aed7f9b9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x93b21000 - 0x93c6aff7  com.apple.ImageIO.framework 2.0.9 (2.0.9) <717938c4837f88bbe8ec613d4d25bc52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x93c6b000 - 0x93c6bffd  com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x93c6c000 - 0x93d9ffe7  com.apple.CoreFoundation 6.5.7 (476.19) <a332c8f45529ee26d2e9c36d0c723bad> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x93da0000 - 0x93de0fef  com.apple.CoreMedia 0.484.2 (484.2) <a3f49c4ac23e1e4ff60061ef279e367c> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x93de1000 - 0x93e3dff7  com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93e3e000 - 0x93e4affe  libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x93e4b000 - 0x93f39fef  com.apple.PubSub 1.0.5 (65.23) <7d496f89df21f6b9ecf99a7727469c2a> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x93f3a000 - 0x940c9fe7  com.apple.CoreAUC 3.08.0 (3.08.0) <ce8da72493f7ad2bcb13130e6d0eca54> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x940ca000 - 0x94115ff7  com.apple.CoreMediaIOServices 140.0 (1492) <3fd3879b31be7659c1008e8991e9f69b> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x94116000 - 0x94135ffa  libJPEG.dylib ??? (???) <6d61215d5adfd74f75fed2e4db29a21c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9414a000 - 0x9414cfff  com.apple.securityhi 3.0 (30817) <2b2854123fed609d1820d2779e2e0963> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9414d000 - 0x9416aff7  com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9416b000 - 0x9419cffb  com.apple.quartzfilters 1.5.0 (1.5.0) <22581f8fe9dd2cb261f97a897407ec3e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x9419d000 - 0x941e6fef  com.apple.Metadata 10.5.8 (398.26) <e4d268ea45379200f03cdc7c8bedae6f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x941e7000 - 0x941f0fff  com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x941f1000 - 0x9446dfe7  com.apple.Foundation 6.5.9 (677.26) <c68b3cff7864959becfc7fd1a384f925> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x944ab000 - 0x944abff8  com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x944ac000 - 0x944eefef  com.apple.NavigationServices 3.5.2 (163) <91844980804067b07a0b6124310d3f31> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x944ef000 - 0x945bafef  com.apple.ColorSync 4.5.4 (4.5.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x945b

    It has been reported that some older versions of Java on the Mac are vulnerable to an exploit that can result in the installation of malware (the "Flashback.G" trojan.) I see no evidence that it has happened to you, but you'd still be well advised to disable Java in Safari's preferences. That will have the added benefit of stopping this crash.

  • How to calculate power in specific frequency band

    Hi Everyone. I have been trolling on here for months but this is my first post so I hope I am putting this in the correct place.
    What I am trying to do is simple in theory but I have tried over and over and am having no luck in getting this to work. I wish to calculate the power in specific frequency bands for heart rate variability analysis.
    Referring to the article "Using LabVIEW for Heart Rate Variability Analysis"  http://zone.ni.com/devzone/cda/epd/p/id/5832 I am aware of the steps I need to follow.
    I have plotted the RR intervals and resampled these with cubic spline interpolation to give a nice time dependent series. I then wire this to a PSD VI and this is where I am out of my depth.
    I know from the above article that I am looking for power in these frequency bands
    VLF  
    ms2
    Power from 0–0.04 Hz.
    LF  
    ms2
    Power from 0.04–0.15 Hz.
    HF
    ms2
    Power from 0.15–0.4 Hz.
    The NI Biomedical Startup kit can do these, however I am unable to look into the source code as I do not have some required plugins in my installation. I have LabVIEW 8.6 full development system.
    As this is not my area there is a steep learning curve and I have read many forum posts and pages but am still unsure of what I need to do here.
    It is my understanding that the frequency resolution is simply the sample rate/number of samples. So if I require a resolution of 0.01Hz then theoretically 100Hz sample rate and 10,000samples would give me this.Furthermore I gather that the size of the output array from the PSD VI is equal to the # of data points (This i have just noticed from trial and error so I may be wrong).
    Therefore if I am using the above values then is it correct that PSD would return an array and all I need to do is simply sum the contents of those array elements to get the power?
    For example if frequency resolution is 0.01 , then to get power from 0-0.04Hz I must simply add the first 4 elements in the PSD output array?
    I have made a test VI to show what I am talking about and attached it to this post.
    Some feedback on the required approach would be a lifesaver here. I have purchased a couple of books and read through pages of forum posts but am still having trouble with this.
    Many thanks!
    Attachments:
    labviewhelp.jpg ‏53 KB

    Sorry about that, I didn't realize you wanted to run the code too The VI was doing a bunch of other stuff so I have tried to clean that out and just leave the relevant bit. As mentioned above, the case block executes when a peak is detected in the data and appends this value to an array.
    I am using the technique of resampling the data because this is what was mentioned in this http://zone.ni.com/devzone/cda/epd/p/id/5832 and also in another reference that I have been following titled "Heart Rate Variability Standards of Measurement, Physiological Interpretation, and Clinical Use" http://circ.ahajournals.org/cgi/content/full/93/5/1043 which states
    "The spectrum of the HRV signal is generally calculated eitherfrom the RR interval tachogram (RR durations versus number ofprogressive beats; see Fig 5a,b) or by interpolating the DES,thus obtaining a continuous signal as a function of time, orby calculating the spectrum of the counts–unitary pulsesas a function of time corresponding to each recognized QRS complex.35Such a choice may have implications on the morphology, themeasurement units of the spectra, and the measurement of therelevant spectral parameters. To standardize the methods used,the use of RR interval tachogram with the parametric method,or the use of the regularly sampled interpolation of DES withthe nonparametric method may be suggested; nevertheless, regularlysampled interpolation of DES is also suitable for parametricmethods. The sampling frequency of interpolation of DES mustbe sufficiently high that the Nyquist frequency of the spectrumis not within the frequency range of interest."
    Attachments:
    Exp-PulseOximeter.vi ‏205 KB

  • OK, what is the best way to lower specific frequencies in edit view

    Listen guys, yes I do happen to know about "frequencies" and that you can't fully remove an instrument without effecting another in that same file that plays at the same time, this is pretty basic stuff.
    However, partially removing frequencies is one of the main things AA3 is intended for: "editing" the sound is it's main function.
    There must be some better answers out there about the best way of going about this in AA3.
    Do people use the spectral analysis with the different colors representing different frequencies? I have no idea how to use this.
    Do most people not get into this type of stuff?  I don't get it, seems like this is what the program was designed for (partially) so there must be more techniques out there.

    As mentioned, using the Graphic EQ or Parametric EQs, are the most common tools to adjust the energy around specific frequencies.
    The Graphic EQ provides between 10-30 bands and uses fixed values and widths.  (A slider for 1000 Hz will adjust the sound around 1000 Hz +/- a few hundred Hz in both directions.)
    The Parametric EQ offers fewer bands, but allows for greater control over the frequencies being adjusted and the affect on surrounding frequencies.
    The Notch Filter allows very tight, specific adjustments and is best used for removing artifacts like a 50/60Hz hum or high-pitched buzz.
    Spectral Frequency View makes it easy to see the frequency patterns and find precise frequencies of problem audio.  The editing tools allow you to perform many of the same functions mentioned, but visually in a paint-style application.  The frequency range of the file is displayed vertically, with 1Hz at the bottom and 22KHz (for a 44.1K file) at the top.  Each column represents a particular slice of time and displays the energy level of each frequency band via brightness and color.  The brighter a particular blob is, the louder that frequency range is at that particular point in time.
    There are other spectral views that give different viewpoints of your audio.  For example, the Spectral Pan Display shows a sort of birds-eye view of the audio's stereo-field.  Instruments that are panned further to the left, for example, will display brighter blobs on the left.  Using the selection tools, you can isolate these sounds from the rest of the stereo field and remove, copy, or add effects to the selection without affecting the rest of the audio.

  • EXACTLY what cable(s) do I need to connect my MacBook Pro (early 2011) to an external display with a 2560x1440 resolution?

    I am trying to connect my MacBook Pro (early 2011 w/ Intel HD 3000/ 384Mb) to an external display with a 2560x1440 resolution. Specifically, what cable/connections do I need to display at this resolution? I cannot get the display to work using a "Thunderbolt to HDMI" or a "Thunderbolt to DVI" connector.  Note:  I used both older and newer (uni-directional) HDMI cables on the first config, and a Dual-link DVI cable on the second config.   Apple specs state this is possible ( support.apple.com/kb/SP619 ), but I am at a loss as to how this can be done.  Thanks in advance for the help!

    You use a Mini DisplayPort to either HDMI or dual-link DVI adapter. If that component doesn't work, something's wrong with either the cable or something else in the connection.
    (112855)

  • Is it possible the current Mac Mini 2.7 Ghz i7 with two full-resolution displays and Thunderbolt operate?

    Hello,
    Is it possible the current Mac Mini 2.7 Ghz i7 with two full-resolution displays and Thunderbolt operate?
    Thanxs for your answers.
    Gerald

    On Second thoughts...
    I don't really know how well Logic Express 7 performs on the Mac Mini because I have not yet had the chance to experience the two together. Don't let that put you off the idea though! From my understanding of the system requirements printed on the Logic Express homepage, it states that a G4 or faster system is required, however Apple personally recommend a Dual G4 or G5 is recommended alongside a minimum of 512MB of Ram. This Does mean that Logic Express will run on the Mac Mini but you will most probably find it lags when moving samples in real time and rendering them onto your hard drive. If you really want to enjoy making "serious" music on the Mac then you really need to be looking at the iMac G5 or the iMac Core Duo (Intel) purely for your tempers sake. As for an Intel Mac Mini, there is no indication as to when we will be seeing one on the market and therefore you may find yourself on the fence between keeping your fixed budget and holding on a little or jumping in and getting on the right road to a digital musical life - mac style.
    Maybe this will inspire your decision:
    http://www.engadget.com/2005/02/08/how-to-turn-your-mac-mini-into-a-low-cost-rec ording-studio/
    Hope this helps
    -Pos

  • Is there a way to view Flash videos on my iMac without downloading Adobe Flash Player? I'm concerned about performance and security with Flash Player.

    Is there a way to view Flash videos on my iMac without downloading Adobe Flash Player? I'm concerned about performance and security with Adobe Flash Player.

    If the video is only available in a format that requires Flash player : then no.
    However, a great many can also be viewed in an HTML5 version, in which case http://hoyois.github.io/safariextensions/clicktoplugin/ or similar can be set up so that Flash never runs unless you specifically choose it to.

  • How to create  a test plan with specific transactions (or program)

    Hello,
    I'm a new user in Sol Man !
    How to create  a test plan with specific transactions (or program).
    In my Business Blueprint (SOLAR01) I've created in 'transaction tab' the name of my specific transactions and linked it.
    In my test plan (STWB_2) those specific doesn't appear to be selected !
    Thanks in advance.
    Georges HUYNEN

    Hi 
    In solar01 you have defined but you have to assign the test case in solar02 for this test case in the test cases tab.
    When you do so expand the business sceanario node in test plan generation of STWB_2 transaction and now that will appear.
    Also visit my weblog
    /people/community.user/blog/2006/12/07/organize-and-perform-testing-using-solution-manager
    please reward points.

  • Finite pulse train with different frequency

    Hello,
    I'm trying to modify the labview example "generate finite pulse train" to generate a finite pluse train with different frequencies. Each freq will run 400 pulses. The freqs are stored in an array, which is being fed into a for loop. Thus ramp up the freq each iteration. However the program only generate 400 pluse at first given freq. I'm fairly new to daqmx and not sure what is wrong. Anyone have some idea how to fix it?  
    Attachments:
    pulse train finite mod.vi ‏38 KB

    The best "fix" will depend a bit on the needs of your app.
    Is it ok to have a fraction of a second without any pulses each time you change frequencies?  If so, then there's a pretty simple solution:
    1. Outside the loop you'd create a DAQmx virtual channel and configure for Finite Sampling (# samples = 400) using DAQmx Timing.vi.  
    2. Inside the loop you'd chain together a DAQmx Channel property node where you set the pulse frequency property, then perform a DAQmx Start, a DAQmx "Wait for Task Complete", and a DAQmx Stop.
    3. So for each freq in your array, you'll program the counter for that frequency, start the generation of pulsetrains, and then stop the task after 400 pulses have been generated.
    If you must change frequency on-the-fly, producing *exactly* 400 pulses at each freq setpoint will be tricky, and maybe even impossible to do reliably.  Some techniques will get you closer than others though, so post back if you need to do this.
    -Kevin P.

  • Frequency Response VS FFT for measring frequency response of a audio ouput signal.

    We have purchased the Sound and Vibration Toolkit and I have some questions.
    From the frequency response example I looked at you measure the input then the ouput and the Vi gives you the difference.
    I want to measure the audio frequency response a radio. 
    So all I have is the output I dont have the audio input  to use as a reference. 
    How would I measure frequency response with the frequency rasponse VI with only the output audio signal?
    I was also looking at the FFT example to measure the audio signal frequency response.
    But from what I can tell so far this only does 1 channel I want to do both channles at the same time.
    Is there a way to do FFT on 2 channels at once and have them output on the same graph?
    Thanks for any help you can provide.

    Hi,
    I was looking through the examples and If you look at the SVXMPL_Multichannel FFT (simulated) examples, this shows how to take an FFT with multiple signals. You just pass in an array of the waveforms.  If you need to put your signals together you can use the merge signals VI, which is located in the Express»SignalManipulation Pallette.  Let me know if you need any further help with this issue.
    Have a great day,
    Michael D
    Applications Engineering
    National Instruments

  • Abap cod e required  for  send an email with specific template

    hi guru's
    i want to send an email with specific template ,which contain some email links in the body of the email,and some of the font will be in different colour
    i want load the template it in to abap program as it is.is this possible. please let me know.
    where can i maintain the template,

    hello
    check this may help u
    TABLES: ekko.
    PARAMETERS: p_email TYPE somlreci1-receiver
    DEFAULT 'xyzlive.com'.
    TYPES: BEGIN OF t_ekpo,
    ebeln TYPE ekpo-ebeln,
    ebelp TYPE ekpo-ebelp,
    aedat TYPE ekpo-aedat,
    matnr TYPE ekpo-matnr,
    END OF t_ekpo.
    DATA: it_ekpo TYPE STANDARD TABLE OF t_ekpo INITIAL SIZE 0,
    wa_ekpo TYPE t_ekpo.
    TYPES: BEGIN OF t_charekpo,
    ebeln(10) TYPE c,
    ebelp(5) TYPE c,
    aedat(8) TYPE c,
    matnr(18) TYPE c,
    END OF t_charekpo.
    DATA: wa_charekpo TYPE t_charekpo.
    DATA: it_message TYPE STANDARD TABLE OF solisti1 INITIAL SIZE 0
    WITH HEADER LINE.
    DATA: it_attach TYPE STANDARD TABLE OF solisti1 INITIAL SIZE 0
    WITH HEADER LINE.
    DATA: t_packing_list LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE,
    t_contents LIKE solisti1 OCCURS 0 WITH HEADER LINE,
    t_receivers LIKE somlreci1 OCCURS 0 WITH HEADER LINE,
    t_attachment LIKE solisti1 OCCURS 0 WITH HEADER LINE,
    t_object_header LIKE solisti1 OCCURS 0 WITH HEADER LINE,
    w_cnt TYPE i,
    w_sent_all(1) TYPE c,
    w_doc_data LIKE sodocchgi1,
    gd_error TYPE sy-subrc,
    gd_reciever TYPE sy-subrc.
    *START_OF_SELECTION
    START-OF-SELECTION.
    *Retrieve sample data from table ekpo
    PERFORM data_retrieval.
    *Populate table with detaisl to be entered into .xls file
    PERFORM build_xls_data_table.
    *END-OF-SELECTION
    END-OF-SELECTION.
    *Populate message body text
    perform populate_email_message_body.
    *Send file by email as .xls speadsheet
    PERFORM send_file_as_email_attachment
    tables it_message
    it_attach
    using p_email
    'Example .xls documnet attachment'
    'XLS'
    'filename'
    changing gd_error
    gd_reciever.
    *Instructs mail send program for SAPCONNECT to send email(rsconn01)
    PERFORM initiate_mail_execute_program.
    *& Form DATA_RETRIEVAL
    *Retrieve data form EKPO table and populate itab it_ekko
    FORM data_retrieval.
    SELECT ebeln ebelp aedat matnr
    UP TO 10 ROWS
    FROM ekpo
    INTO TABLE it_ekpo.
    ENDFORM. " DATA_RETRIEVAL
    *& Form BUILD_XLS_DATA_TABLE
    Build data table for .xls document
    FORM build_xls_data_table.
    CONSTANTS: con_cret TYPE x VALUE '0D', "OK for non Unicode
    con_tab TYPE x VALUE '09'. "OK for non Unicode
    *If you have Unicode check active in program attributes thnen you will
    *need to declare constants as follows
    *class cl_abap_char_utilities definition load.
    *constants:
    con_tab type c value cl_abap_char_utilities=>HORIZONTAL_TAB,
    con_cret type c value cl_abap_char_utilities=>CR_LF.
    CONCATENATE 'EBELN' 'EBELP' 'AEDAT' 'MATNR'
    INTO it_attach SEPARATED BY con_tab.
    CONCATENATE con_cret it_attach INTO it_attach.
    APPEND it_attach.
    LOOP AT it_ekpo INTO wa_charekpo.
    CONCATENATE wa_charekpo-ebeln wa_charekpo-ebelp
    wa_charekpo-aedat wa_charekpo-matnr
    INTO it_attach SEPARATED BY con_tab.
    CONCATENATE con_cret it_attach INTO it_attach.
    APPEND it_attach.
    ENDLOOP.
    ENDFORM. " BUILD_XLS_DATA_TABLE
    *& Form SEND_FILE_AS_EMAIL_ATTACHMENT
    Send email
    FORM send_file_as_email_attachment tables pit_message
    pit_attach
    using p_email
    p_mtitle
    p_format
    p_filename
    p_attdescription
    p_sender_address
    p_sender_addres_type
    changing p_error
    p_reciever.
    DATA: ld_error TYPE sy-subrc,
    ld_reciever TYPE sy-subrc,
    ld_mtitle LIKE sodocchgi1-obj_descr,
    ld_email LIKE somlreci1-receiver,
    ld_format TYPE so_obj_tp ,
    ld_attdescription TYPE so_obj_nam ,
    ld_attfilename TYPE so_obj_des ,
    ld_sender_address LIKE soextreci1-receiver,
    ld_sender_address_type LIKE soextreci1-adr_typ,
    ld_receiver LIKE sy-subrc.
    ld_email = p_email.
    ld_mtitle = p_mtitle.
    ld_format = p_format.
    ld_attdescription = p_attdescription.
    ld_attfilename = p_filename.
    ld_sender_address = p_sender_address.
    ld_sender_address_type = p_sender_addres_type.
    Fill the document data.
    w_doc_data-doc_size = 1.
    Populate the subject/generic message attributes
    w_doc_data-obj_langu = sy-langu.
    w_doc_data-obj_name = 'SAPRPT'.
    w_doc_data-obj_descr = ld_mtitle .
    w_doc_data-sensitivty = 'F'.
    Fill the document data and get size of attachment
    CLEAR w_doc_data.
    READ TABLE it_attach INDEX w_cnt.
    w_doc_data-doc_size =
    ( w_cnt - 1 ) * 255 + STRLEN( it_attach ).
    w_doc_data-obj_langu = sy-langu.
    w_doc_data-obj_name = 'SAPRPT'.
    w_doc_data-obj_descr = ld_mtitle.
    w_doc_data-sensitivty = 'F'.
    CLEAR t_attachment.
    REFRESH t_attachment.
    t_attachment] = pit_attach[.
    Describe the body of the message
    CLEAR t_packing_list.
    REFRESH t_packing_list.
    t_packing_list-transf_bin = space.
    t_packing_list-head_start = 1.
    t_packing_list-head_num = 0.
    t_packing_list-body_start = 1.
    DESCRIBE TABLE it_message LINES t_packing_list-body_num.
    t_packing_list-doc_type = 'RAW'.
    APPEND t_packing_list.
    Create attachment notification
    t_packing_list-transf_bin = 'X'.
    t_packing_list-head_start = 1.
    t_packing_list-head_num = 1.
    t_packing_list-body_start = 1.
    DESCRIBE TABLE t_attachment LINES t_packing_list-body_num.
    t_packing_list-doc_type = ld_format.
    t_packing_list-obj_descr = ld_attdescription.
    t_packing_list-obj_name = ld_attfilename.
    t_packing_list-doc_size = t_packing_list-body_num * 255.
    APPEND t_packing_list.
    Add the recipients email address
    CLEAR t_receivers.
    REFRESH t_receivers.
    t_receivers-receiver = ld_email.
    t_receivers-rec_type = 'U'.
    t_receivers-com_type = 'INT'.
    t_receivers-notif_del = 'X'.
    t_receivers-notif_ndel = 'X'.
    APPEND t_receivers.
    CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
    EXPORTING
    document_data = w_doc_data
    put_in_outbox = 'X'
    sender_address = ld_sender_address
    sender_address_type = ld_sender_address_type
    commit_work = 'X'
    IMPORTING
    sent_to_all = w_sent_all
    TABLES
    packing_list = t_packing_list
    contents_bin = t_attachment
    contents_txt = it_message
    receivers = t_receivers
    EXCEPTIONS
    too_many_receivers = 1
    document_not_sent = 2
    document_type_not_exist = 3
    operation_no_authorization = 4
    parameter_error = 5
    x_error = 6
    enqueue_error = 7
    OTHERS = 8.
    Populate zerror return code
    ld_error = sy-subrc.
    Populate zreceiver return code
    LOOP AT t_receivers.
    ld_receiver = t_receivers-retrn_code.
    ENDLOOP.
    ENDFORM.
    *& Form INITIATE_MAIL_EXECUTE_PROGRAM
    Instructs mail send program for SAPCONNECT to send email.
    FORM initiate_mail_execute_program.
    WAIT UP TO 2 SECONDS.
    SUBMIT rsconn01 WITH mode = 'INT'
    WITH output = 'X'
    AND RETURN.
    ENDFORM. " INITIATE_MAIL_EXECUTE_PROGRAM
    *& Form POPULATE_EMAIL_MESSAGE_BODY
    Populate message body text
    form populate_email_message_body.
    REFRESH it_message.
    it_message = 'Please find attached a list test ekpo records'.
    APPEND it_message.
    endform. " POPULATE_EMAIL_MESSAGE_BODY
    Thank u,
    santhosh

Maybe you are looking for

  • Hey everyone!  I'm at your mercy!  Desktop version won't redirect to phone app.

    OK.   I'm tired.  I designed a site www.aliciastecklercounseling.com for the first time in MUSE.  For the phone design I designed a temporary site just giving vital information on how to contact her.  Stayed up all night designing the site, worked on

  • Can't install Vista SP1 on new MBP

    Hey there, I posted this in another category by mistake, apologies. I have a mid-2009 MBP and recently updated to 10.6 (now 10.6.1). I unfortunately need to install Windows on my machine for grad school examination software and I didn't have a copy o

  • Cant connect macbook pro to HP Laserjet Professional P1102w

    I am unable to connect my macbook to the P1102w a wireless network. I have studied the videos on you tube and read throught the forum here. I have chosen the Infrastructure Method, provided the Key to my SSID and this appears to have worked correctly

  • SUN ONE DIRECTORY

    How to create a new attribute in SUN ONE DIRECTORY FOR a user and then uses this user with the identity?

  • BIGGER FONT IN PR1.1 UPDATE

    I have been told that the PR1.1 update comes with a bigger font although is still non adjustable. It does help in the readibility department in view of my aging eyes. Can anybody with PR1.1 installed in their N9 confirm this? Thank you & looking to a