Speech Recognition in Java

What is available in Java in terms of Speech recognition... whats options are available now?

http://java.sun.com/products/java-media/speech/

Similar Messages

  • Speech recognition using java

    *1*.>hi i am new to this area ..please help.this is relating speech to text ..the tutorial says...
    Place this grammar into a file.
    grammar javax.speech.demo;
    public <sentence> = hello world | good morning |
    hello mighty computer;
    then the helloworld prg code
    *where should i place this grammar...which file?
    what is JSGF*
    *2.*>is freetts only speech synthesizer(text to speech) ?
    or can it be used fr speech to text also?
    *+3.>*is cloudgarden sdk version fine fr speech to text...?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Try to look in JavaSpeech

  • Speech recognition for a programmer with RSI (not how to do in Java)

    Guys, someone that I know has developed RSI and has almost had to drop out of programming.
    Has any other programmer here been faced with this and been able to work around it? In particular, have you found a decent speech recognition system that allowed you to continue to work?
    Note that I am not interested in learning how to implement speech recognition in a Java program, which is what [most of the posts here|http://forum.java.sun.com/thread.jspa?threadID=5310499&tstart=0] are concerned with.
    I am aware of Dragon Naturally Speaking, but there are some terrible reviews of it which have made me nervous. But if any of you give a glowing review, I will reconsider.
    Since this is a java forum, and one of the best academic research projects in this field is [Sphinx-4|http://cmusphinx.sourceforge.net/sphinx4/] which is based on Java, does anyone know of an end user application comparable to Dragon Naturally Speaking which uses Sphinx-4?

    pm_kirkham wrote:
    No, we just get an intern and pair-program.Thats the first good reason to pair program that I have heard! (I like most of the rest of XP, but PP normally drives me insane...)

  • Java speech recognition software ?

    Hi Software Experts.
    I have 2 short questions.
    1. does any one here have any knowledge of any java speech recognition software ?
    2. is it true that all speech recognition software has to be trained ?
    Are there some simple ones on the market that will test for 1 word and therefore not need to be trained ? Or trained a lot less ?

    IBM makes Via voice, a commercial package. Almost all apps need some training, to be truely effective, as the user's speech patterns vary. I am not aware of any Sun classes for this, there may be some 3rd party classes out there.... - Bart

  • Speech recognition problem with null pointer exception

    im trying to run the simple hello program that came with IBM speech for java
    i've put the speech.jar file in the right folder and it compiles all fine but when i run it i get this error:
    locale is en_US
    java.lang.NullPointerException
    at Hello.main(Hello.java:171)
    but i dont know enough about java speech to figure out what is null and what shouldn't be null...
    thx
    nate
    P.S.
    here is the program code
    import java.io.*;
    import java.util.Locale;
    import java.util.ResourceBundle;
    import java.util.StringTokenizer;
    import javax.speech.*;
    import javax.speech.recognition.*;
    import javax.speech.synthesis.*;
    public class Hello {
    static RuleGrammar ruleGrammar;
    static DictationGrammar dictationGrammar;
    static Recognizer recognizer;
    static Synthesizer synthesizer;
    static ResourceBundle resources;
    static ResultListener ruleListener = new ResultAdapter() {
    public void resultAccepted(ResultEvent e) {
    try {
    FinalRuleResult result = (FinalRuleResult) e.getSource();
    String tags[] = result.getTags();
    if (tags[0].equals("name")) {
    String s = resources.getString("hello");
    for (int i=1; i<tags.length; i++)
    s += " " + tags;
    speak(s);
    } else if (tags[0].equals("begin")) {
    speak(resources.getString("listening"));
    ruleGrammar.setEnabled(false);
    ruleGrammar.setEnabled("<stop>", true);
    dictationGrammar.setEnabled(true);
    recognizer.commitChanges();
    } else if (tags[0].equals("stop")) {
    dictationGrammar.setEnabled(false);
    ruleGrammar.setEnabled(true);
    recognizer.commitChanges();
    } else if (tags[0].equals("bye")) {
    speak(resources.getString("bye"));
    if (synthesizer!=null)
    synthesizer.waitEngineState(Synthesizer.QUEUE_EMPTY);
    Thread.sleep(1000);
    System.exit(0);
    } catch (Exception ex) {
    ex.printStackTrace();
    int i = 0;
    String eh[] = null;
    public void resultRejected(ResultEvent e) {
    if (eh==null) {
    String s = resources.getString("eh");
    StringTokenizer t = new StringTokenizer(s);
    int n = t.countTokens();
    eh = new String[n];
    for (int i=0; i<n; i++)
    eh = t.nextToken();
    if (((Result)(e.getSource())).numTokens() > 2)
    speak(eh[(i++)%eh.length]);
    static ResultListener dictationListener = new ResultAdapter() {
    int n = 0; // number of tokens seen so far
    public void resultUpdated(ResultEvent e) {
    Result result = (Result) e.getSource();
    for (int i=n; i<result.numTokens(); i++)
    System.out.println(result.getBestToken(i).getSpokenText());
    n = result.numTokens();
    public void resultAccepted(ResultEvent e) {
    Result result = (Result) e.getSource();
    String s = "";
    for (int i=0; i<n; i++)
    s += result.getBestToken(i).getSpokenText() + " ";
    speak(s);
    n = 0;
    static RecognizerAudioListener audioListener =new RecognizerAudioAdapter(){
    public void audioLevel(RecognizerAudioEvent e) {
    System.out.println("volume " + e.getAudioLevel());
    static EngineListener engineListener = new EngineAdapter() {
    public void engineError(EngineErrorEvent e) {
    System.out.println
    ("Engine error: " + e.getEngineError().getMessage());
    static void speak(String s) {
    if (synthesizer!=null) {
    try {
    synthesizer.speak(s, null);
    } catch (Exception e) {
    e.printStackTrace();
    } else
    System.out.println(s);
    public static void main(String args[]) {
    try {
    if (args.length>0) Locale.setDefault(new Locale(args[0], ""));
    if (args.length>1) Locale.setDefault(new Locale(args[0], args[1]));
    System.out.println("locale is " + Locale.getDefault());
    resources = ResourceBundle.getBundle("res");
    recognizer = Central.createRecognizer(null);
    recognizer.allocate();
    recognizer.getAudioManager().addAudioListener(audioListener);
    recognizer.addEngineListener(engineListener);
    dictationGrammar = recognizer.getDictationGrammar(null);
    dictationGrammar.addResultListener(dictationListener);
    String grammarName = resources.getString("grammar");
    Reader reader = new FileReader(grammarName);
    ruleGrammar = recognizer.loadJSGF(reader);
    ruleGrammar.addResultListener(ruleListener);
    ruleGrammar.setEnabled(true);
    recognizer.commitChanges();
    recognizer.requestFocus();
    recognizer.resume();
    synthesizer = Central.createSynthesizer(null);
    if (synthesizer!=null) {
    synthesizer.allocate();
    synthesizer.addEngineListener(engineListener);
    speak(resources.getString("greeting"));
    } catch (Exception e) {
    e.printStackTrace();
    System.exit(-1);

    yes, the problem seems to be with allocating the engine, but I don't know exactly why recognizer.allocate() returns null...I have already installed IBM ViaVoice and Speech for Java, and have set the supposedly correct paths...

  • HELP ! voice recognition in Java

    hello all !
    i need ur help to find some references about voice recognition in java.
    i wanna code a program to change word into sound ( voice ). i don't know where to study to code a program to transform word into sound ... hic hic help me ...
    danke ... a, thanks :)

    Java Speech API
    It does not come with JSDK, it is an add-on SDK.
    http://java.sun.com/products/java-media/speech/
    It is not an easy thing to implement the Speech API, pretty hard!
    I hope that page helps you.

  • JSAPI : Problems with the speech recognition HelloWorld example

    I just started off with JSAPI. And I immediately ran into problems. These are the configurations and the stuff I did:
    My system:
    OS: WinXP
    JDK: JDK 6 Update 10
    IDE: Netbeans 6.0
    I downloaded the FreeTTS.zip from the FreeTTS site [http://freetts.sourceforge.net/docs/index.php] . I expanded it and in the lib folder I ran the jsapi.exe and as a result jsapi.jar war generated.
    I included this jar in my project lib as jar.
    Then I copy pasted HelloWorld speech recognition example code given in the site : [http://java.sun.com/products/java-media/speech/forDevelopers/jsapi-guide/Recognition.html#11644]
    First it gave a compile time error that
    rec.deallocate();throws an exception which needs to be handled. Accordingly I surrounded it with a try catch block and caught the exceptions in the manner given below:
       try{
             rec.deallocate();
                        System.exit(0);
                    } catch (EngineException ex) {
                        Logger.getLogger(HelloWorld.class.getName()).log(Level.SEVERE, null, ex);
                    } catch (EngineStateError ex) {
                        Logger.getLogger(HelloWorld.class.getName()).log(Level.SEVERE, null, ex);
    Now the code was compiling without problems.
    When I executed the code a runtime exception (NullPointerException) was thrown at the line
          rec.allocate();  in the psvm(String args[])
    Can anybody please explain to me where I am going wrong? Or is there something more that needs to be added in the code?
    Anxiously waiting to hear from your end.
    Thanks and regards,

    Hi All,
    I am using following code
    import javax.speech.*;
    import javax.speech.synthesis.*;
    import java.util.Locale;
    public class HelloWorld {
         public static void main(String args[]) {
              try {
                   // Create a synthesizer for English
                   Synthesizer synth = Central.createSynthesizer(
                        new SynthesizerModeDesc(Locale.ENGLISH));
                               synth.waitEngineState(Synthesizer.ALLOCATED);
                   //Synthesizer synth = Central.createSynthesizer (null);
                   // Get it ready to speak
                   synth.allocate();
                   synth.resume();
                   // Speak the "Hello world" string
                   synth.speakPlainText("Hello, world!", null);
                   // Wait till speaking is done
                   synth.waitEngineState(Synthesizer.QUEUE_EMPTY);
                   // Clean up
                   synth.deallocate();
              } catch (Exception e) {
                   e.printStackTrace();
    }and i am also getting following error
    java.lang.NullPointerException
            at HelloWorld.main(HelloWorld.java:18)My class path is set to
    jsapi.jar (extracted from freetts 1.2.1)
    freetts.jar
    Please i didn't find any solution from past replies so please do help me someone to solve this...
    Thanking You....

  • Null pointer when trying to initialise speech recognition

    Hi all,
    I am attempting to utilise the JSAPI for a project for display at my Uni that utilises freeTTS and also some Java speech recognition. Through the tutorials online (such as the Hello World) I have built my speech recognizer but as I try to allocate() for the speech recogniser the program gives me a null pointer.
    The grammar file that I load into the file reader exists and I do not get a file not found exception. Can anyone see a blindingly obvious error that I am missing?
    Code below. The rec.allocate() (third line after the try... is where i am getting my null pointer from.
    Cheers
    Mark
    public BigEars(SpeakEasy gui){
              mainGui = gui;
              try {
                   EngineModeDesc desk = new EngineModeDesc(Locale.ENGLISH);
                   rec = Central.createRecognizer(desk);
                   rec.allocate();
                   FileReader reader = new FileReader("speechRecog/grammar.txt");
                   RuleGrammar rules = rec.loadJSGF(reader);
                   rules.setEnabled(true);
                   rec.addResultListener(this);
                   rec.commitChanges();
                   rec.requestFocus();
                   rec.resume();
              catch (Exception e) {
                   message("There is a problem with this code.");
                   e.printStackTrace();
         

    Hi dheeraj_chd,
    I never got a reply to this so to move forward I actually incorporated the Sphinx4 speech recognition program into my project. I do not know if this is any help to you but I got it up and running OK with it.
    http://cmusphinx.sourceforge.net/sphinx4/
    I hope this helps. It does dramatically increase the size of the application you are writing but at least it works!
    Cheers
    Mark

  • Speech APIs in java

    Dear All,
    Can any one give brief description on java speech APIs. I want to build an application which recognizes users voice and perform the set of operations. Do i need any special hardware to be installed on my system???? What are the minimum system requirements for this.
    Advance TX for the reply.......

    Dear All,
    Can any one give brief description on java
    n java speech APIs. I want to build an application
    which recognizes users voice and perform the set of
    operations. Do i need any special hardware to be
    installed on my system???? What are the minimum system
    requirements for this.
    Advance TX for the reply.......From: http://java.sun.com/products/java-media/speech/forDevelopers/jsapi-guide/Introduction.html#8184
    1.6 Requirements
    To use the Java Speech API, a user must have certain minimum software and hardware available. The following is a broad sample of requirements. The individual requirements of speech synthesizers and speech recognizers can vary greatly and users should check product requirements closely.
    Speech software: A JSAPI-compliant speech recognizer or synthesizer is required.
    System requirements: most desktop speech recognizers and some speech synthesizers require relatively powerful computers to run effectively. Check the minimum and recommended requirements for CPU, memory and disk space when purchasing a speech product.
    Audio Hardware: Speech synthesizers require audio output. Speech recognizers require audio input. Most desktop and laptop computers now sold have satisfactory audio support. Most dictation systems perform better with good quality sound cards.
    Microphone: Desktop speech recognition systems get audio input through a microphone. Some recognizers, especially dictation systems, are sensitive to the microphone and most recognition products recommend particular microphones. Headset microphones usually provide best performance, especially in noisy environments. Table-top microphones can be used in some environments for some applications.

  • Speech Recognition stops working after a minute of nonuse

    I'm a grad student trying to keep from exacerbating my carpal tunnel and just figured out how to use the voice commands on my macbook. So far, they work great, they hear my voice, it does what I tell it to do, and I'm not constantly hitting apple+tab and apple+c and apple+v and so on, which really helps my wrists!
    BUT. If I go for more than a minute or two without using a voice command, it stops working. I can't pinpoint anything else that triggers it other than if I stop using it for a little bit while I'm reading a paper or something. The microphone is calibrated and working, the little black arrows and the blue and green bars flash on the widget like it hears me, but then it won't give me the sound that says the command was recognized and it doesn't perform the command any time I try to use it again after a few minutes of not being used. It's like the recognition part goes to sleep and won't wake up.
    If I go to the system preferences and toggle Speakable Itemst off and then on again, it starts working again until another minute or two of non-use. If I use spoken commands constantly, it will stay on for a good long while, but I'm not using it constantly that's the end of speech recognition. I really can't stop to just tell it some unneeded command to keep it awake all the time! Eventually, the computer gets confused if I turn the "speakable items" on and off too many times from the System Preferences, and it gets confused about whether or not it's turned on or off, or the widget disappears but the System Preferences panel thinks the Speakable Items is on.
    I read somewhere that other people with a newer OS have a similar problem if they don't use the default speaking voice, so I switched to Alex and restarted, and the same thing is still happening.
    I'm running 10.5.8, and using safari, word 2011, preview, nothing too crazy. My speech recognition is in "Listen only while key is pressed" mode, and like I said, works great until I stop using it for a minute or so. I'm using the internal microphone on my MacBook (dob circa 2008). Any tips on how I can actually keep my Speech Recognition useful? Thanks in advance!

    OK, I have one more question now, seems to be the same as this question which was never answered years ago:
    Speakable Commands>Application Switching -- how to delete items?
    When I click on the triangle from the speech command widget and open speech commands, there is a TON of stuff there that I'll never ever use, but these things do not appear in the Library/Speech/Speakable Items folder so that I might be able to delete them. For example, one item I'd like to turn off is just the word "Home" and the computer keeps thinking that I said "Home" instead of whatever else I meant to say. Another keeps opening iChat or Mail, when I say "open new window" or something like that. I tried clicking, control clicking, option clicking, nothing will highlight a command in the Speech Commands window so that I might delete it.
    The "Home" command only shows up when I'm using Word, in the "front window" list. However, the Application Speakable Items/Microsoft Word folder is empty. Is there some other way to get into the speakable commands list and weed out unwanted stuff?

  • Has anyone figured out how to get speech recognition working with sticky keys enabled on mountain lion?

    I'm trying to use speech recognition to input text on my iMac running the latest mountain lion, 10.8.3.
    I have sticky keys enabled.
    When I try to start speaking by pressing the function key twice nothing happens. I can only get it to work if I disable sticky keys.
    The same problem occurs with all the other modifier keys as shortcut, they do not work with sticky keys.
    When I try to select a different shortcut, I am unable to select a two key combination, but am limited to one.
    If I select the F6 key, or any other single key, I am able to start speech recognition. However the second time that I press the key, it does not stop recognition and process my words. Instead, it restarts the recognition.
    Has anyone figured out how to get speech recognition working with sticky keys enabled?
    Or a way to get an individual key shortcut to start on the first press and process it on the second?
    Or a way to get key combinations to work, as specified by the help:
    Dictation On and Off
    To use Dictation, click On.
    When you’re ready to dictate text, place the insertion point where you want the dictated text to appear and press the Fn (function) key twice. When you see the lighted microphone icon and hear a beep, the microphone is ready for you to speak your text.
    Shortcut
    By default, you press the Fn (Function) key twice to start dictation. If you like, you can choose a different shortcut from the menu.
    To create a shortcut that’s not in the list, choose Customize, and then press the keys you want to use. You can press two or more keys to create your shortcut.

    I noticed with version 10.8.4 of OS X that I am now able to select F6 to activate, and the return key to complete the speech recognition. This is still different than the description of how these should function that's included in the help, but at least it's an improvement.

  • How to Switch Off Speech Recognition

    I activated speech recognition just to see what it can do and got the round microphone icon in my screen. As I press Esc I can give commands.
    I want to get rid of this round thing in my screen though and switch off Speech Recognition completely because I never use it.
    I can not find where to switch it off. Who does?

    I have Snow Leopard 10.6.8.  This has happened to me many times.  I don't know why the circle surfaces, but the common response is false - in my preferences, Speakable items is set to OFF.  Turning any of the Speech settings on or off does not make the circle window disappear.  The only way I can get rid of it is to reinstall the operating system from scratch (not an update), which is an incredible pain.  I've done this twice to get rid of the circle, and it's back again!  This is clearly a Snow Leopard bug, since all the responses say when you go into preferences you should see that Speakable items is set to ON, and it's NOT. 
    Seriously, if ANYONE knows how it gets in this state, and how to get rid of it when it's not responding to preferences.  Force Quit doesn't see it.  Maybe there's a low level Console way to kill the app - I'd do anything to get rid of that circle...
    GUYS - SNOW LEOPARD USERS!  I SOLVED IT!  I SOLVED IT!  I still don't know what triggers it, but here's how you get rid of it without a reinstall:
    1) Launch Activity Monitor in flat mode
    2) Look for a running task called something like SpeechRecognitionServer and select it.
    3) Hit the Quit Process button on the upper left!
    Voila, that annoying circle is gone!!! 
    YIPPIE!
    - Jeff
    P. S. I just noticed that this bug still wasn't solved in Lion, so hopefully my solution will help Lion users as well.  This bug definitely didn't exist in Leopard.

  • I wanted to buy a Dragon ,Speech Recognition Programme for Mac but it says its for Lion, and I have Snow Leopard. Would it have worked on Snow leopard?

    I wanted to buy a Dragon ,Speech Recognition Programme for Mac but it says its for OS Lion, and I have OS Snow Leopard. Would it have worked on Snow Leopard?

    The simplest method would be to ask them for their Snow Leopard version and say you can't upgrade to 10.7 or 10.8. I'm almost sure they will sell you a copy.
    Generally if your machine can only upgrade to 10.7 Lion and not directly to 10.8 Mountain Lion, then it's best left on 10.6.8. in my opinion as your going to loose too much other software and slow down your machine in the process.
    This rapid OS X upgrade cycle has caused plenty of problems for users and developers alike, so I suspect you will find a sympathizer with the developer.
    In fact I'm not recommending Mac's to anyone anymore because Apple simply has lost touch with reality.

  • Can't Get speech recognition  to work.

    When i try to get speech recognition to work nothing happens. I have calibrated it, it regognises everything i said when i calibrated it. I know i am using the right microphone (internal) and it works because you can see.
    When i click on speech commands all that it says is ??? does that have something to do with it?
    Why isn't it working? i don't necessarily need it i just want to know why its not working?
    Thanks Alex.
    Message was edited by: Alexander Richardson

    yeah my Australian friend showed me his speech recognition, and he had to do and american accent to get it to work as it could not understand his accent at all. They should have a choice of an real 'English' voice on Apple.
    Thanks for your help heres the crash report.
    Date/Time: 2009-01-02 15:39:18.785 +0000
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    Command: System Preferences
    Path: /Applications/System Preferences.app/Contents/MacOS/System Preferences
    Parent: WindowServer [58]
    Version: 3.5 (3.5)
    Build Version: 16
    Project Name: SystemPrefsApp
    Source Version: 1260600
    PID: 384
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Thread 0 Crashed:
    0 libobjc.A.dylib 0x90a584c7 objc_msgSend + 23
    1 ...peech.recognition.framework 0x92bda95d SRCallbackMessages(__CFMessagePort*, long, __CFData const*, void*) + 211
    2 com.apple.CoreFoundation 0x902edb72 __CFMessagePortPerform + 243
    3 com.apple.CoreFoundation 0x902a65a1 CFRunLoopRunSpecific + 2904
    4 com.apple.CoreFoundation 0x902a5a42 CFRunLoopRunInMode + 61
    5 com.apple.HIToolbox 0x92df2878 RunCurrentEventLoopInMode + 285
    6 com.apple.HIToolbox 0x92df1eb9 ReceiveNextEventCommon + 184
    7 com.apple.HIToolbox 0x92df1dd9 BlockUntilNextEventMatchingListInMode + 81
    8 com.apple.AppKit 0x9214df45 _DPSNextEvent + 572
    9 com.apple.AppKit 0x9214db37 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 137
    10 com.apple.AppKit 0x921478c4 -[NSApplication run] + 512
    11 com.apple.AppKit 0x9213b820 NSApplicationMain + 573
    12 com.apple.systempreferences 0x0000e426 0x1000 + 54310
    13 com.apple.systempreferences 0x0000e34d 0x1000 + 54093
    Thread 1:
    0 libSystem.B.dylib 0x90024407 semaphorewait_signaltrap + 7
    1 com.apple.Foundation 0x9fd29ce0 -[NSConditionLock lockWhenCondition:] + 39
    2 com.apple.AppKit 0x92224cb4 -[NSUIHeartBeat _heartBeatThread:] + 377
    3 com.apple.Foundation 0x9fcd3d7c forkThreadForFunction + 123
    4 libSystem.B.dylib 0x90023d67 pthreadbody + 84
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x9799de11 ecx: 0x90aa44e8 edx: 0x004e4320
    edi: 0x00000008 esi: 0xbfffef30 ebp: 0xbfffeed8 esp: 0xbfffee84
    ss: 0x0000001f efl: 0x00010202 eip: 0x90a584c7 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    Binary Images Description:
    0x1000 - 0x17fff com.apple.systempreferences 3.5 /Applications/System Preferences.app/Contents/MacOS/System Preferences
    0x205000 - 0x2e3fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x14dae000 - 0x14db6fff com.apple.preference.speech 3.4 /System/Library/PreferencePanes/Speech.prefPane/Contents/MacOS/Speech
    0x14dbf000 - 0x14dc2fff com.apple.LiveType.component 2.1.3 /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x14e7e000 - 0x14e83fff com.apple.audio.AppleHDAHALPlugIn 1.3.7 (1.3.7a23) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x15488000 - 0x15496fff com.apple.speech.recognition.SpeakableItemsPrefView 3.5 /System/Library/Speech/Recognizers/AppleSpeakableItems.SpeechRecognizer/Content s/Resources/PreferenceViewPlugin.bundle/Contents/MacOS/PreferenceViewPlugin
    0x156fc000 - 0x15726fff com.apple.audio.SoundManager.Components 3.9.2 /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0x15777000 - 0x157dcfff com.apple.LiveType.framework 2.1.3 /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x8fe00000 - 0x8fe4afff dyld 46.16 /usr/lib/dyld
    0x90000000 - 0x90171fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c1000 - 0x901c3fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x901c5000 - 0x90202fff com.apple.CoreText 1.1.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90284000 - 0x9034cfff com.apple.CoreFoundation 6.4.11 (368.35) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x903a3000 - 0x90649fff com.apple.CoreServices.CarbonCore 682.30 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90910000 - 0x90910fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90990000 - 0x90a0efff com.apple.DesktopServices 1.3.7 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90a56000 - 0x90ad5fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90afe000 - 0x90b62fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bd1000 - 0x90bd8fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90bdd000 - 0x90c50fff com.apple.framework.IOKit 1.4.8 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c65000 - 0x90c77fff libauto.dylib /usr/lib/libauto.dylib
    0x90f66000 - 0x90fcefff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91059000 - 0x91069fff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9112d000 - 0x9114bfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91157000 - 0x91165fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91168000 - 0x91307fff com.apple.security 4.5.2 (29774) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91405000 - 0x9140dfff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91414000 - 0x9141bfff libbsm.dylib /usr/lib/libbsm.dylib
    0x9141f000 - 0x91445fff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91457000 - 0x914cdfff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9151e000 - 0x9151efff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91520000 - 0x9154cfff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x9166e000 - 0x916e1fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x917de000 - 0x91829fff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91848000 - 0x9185efff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9186a000 - 0x91885fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x918e1000 - 0x918edfff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91a5a000 - 0x91a78fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91aee000 - 0x91af2fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91ba0000 - 0x91ba2fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91c06000 - 0x91c43fff com.apple.LaunchServices 183 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91ce4000 - 0x91ce4fff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91ce6000 - 0x91d74fff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d7b000 - 0x91d7bfff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91d7d000 - 0x91dd6fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91ddf000 - 0x91e03fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92137000 - 0x927edfff com.apple.AppKit 6.4.10 (824.48) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x92bb5000 - 0x92bb5fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92bb7000 - 0x92bc7fff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92bd6000 - 0x92bdefff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92be4000 - 0x92beafff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92bf0000 - 0x92c81fff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92c95000 - 0x92c99fff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92ccc000 - 0x92cd2fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92cd8000 - 0x92d3bfff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92d62000 - 0x92da3fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92dca000 - 0x92dd8fff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92ddf000 - 0x92de4fff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92de9000 - 0x930defff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x931e4000 - 0x931effff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x931f4000 - 0x9320ffff com.apple.DirectoryService.Framework 3.2 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93220000 - 0x93221fff com.apple.ServerControl 10.3.0 /System/Library/PrivateFrameworks/ServerControl.framework/Versions/A/ServerCont rol
    0x9325f000 - 0x9325ffff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93510000 - 0x9352dfff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x93536000 - 0x935b5fff com.apple.SearchKit 1.0.8 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x93c98000 - 0x93d13fff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93d4c000 - 0x93e05fff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e48000 - 0x93e48fff com.apple.audio.units.AudioUnit 1.4.2 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93e4a000 - 0x9400bfff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94051000 - 0x94092fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9409a000 - 0x940d4fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x940d9000 - 0x940effff com.apple.CoreVideo 1.4.2 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x940ff000 - 0x94121fff com.apple.framework.Admin 1.5.7 /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
    0x94135000 - 0x94135fff com.apple.AFPDefines 3.1.6 /System/Library/PrivateFrameworks/AFPDefines.framework/Versions/A/AFPDefines
    0x941ea000 - 0x941fdfff com.apple.frameworks.preferencepanes 11.2 /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x9420b000 - 0x9421cfff com.apple.securityfoundation 2.2.1 (28150) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9422a000 - 0x94268fff com.apple.securityinterface 2.2.1 (27695) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94311000 - 0x9462cfff com.apple.QuickTime 7.5.5 (990.7) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94985000 - 0x94994fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9499b000 - 0x949c4fff com.apple.LDAPFramework 1.4.2 (69.1.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x949ca000 - 0x949d9fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x95162000 - 0x95256fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x952bd000 - 0x9536ffff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x953cc000 - 0x953f1fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x95d3c000 - 0x95e10fff com.apple.ColorSync 4.4.11 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x95ee6000 - 0x95f25fff com.apple.CFNetwork 129.24 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x96148000 - 0x9621dfff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x96f46000 - 0x96f86fff com.apple.ImageIO.framework 1.5.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x96fa2000 - 0x97001fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x97106000 - 0x97121fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9712c000 - 0x971b4fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x971b9000 - 0x971f8fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x97994000 - 0x979a7fff com.apple.speech.SpeechObjectsFramework 1.4 /System/Library/PrivateFrameworks/SpeechObjects.framework/Versions/A/SpeechObje cts
    0x9eb00000 - 0x9ec46fff com.apple.AddressBook.framework 4.0.6 (490) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x9ecc9000 - 0x9ece3fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9ece9000 - 0x9ecf8fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x9ecff000 - 0x9ed0afff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9ed0f000 - 0x9ed2dfff com.apple.openscripting 1.2.7 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9ed3f000 - 0x9ed56fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9ed61000 - 0x9edb9fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9edcd000 - 0x9eebafff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x9eebc000 - 0x9f270fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9f29d000 - 0x9f6a6fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9f6e0000 - 0x9f6f6fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x9f6fb000 - 0x9f7a4fff com.apple.QD 3.10.27 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9f7ca000 - 0x9fc1ffff com.apple.CoreGraphics 1.258.82 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9fcb6000 - 0x9feeefff com.apple.Foundation 6.4.11 (567.40) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    Model: MacBook2,1, BootROM MB21.00A5.B07, 2 processors, Intel Core 2 Duo, 2 GHz, 1 GB
    Graphics: Intel GMA 950, GMA 950, Built-In, spdisplaysintegratedvram
    Memory Module: BANK 0/DIMM0, 512 MB, DDR2 SDRAM, 667 MHz
    Memory Module: BANK 1/DIMM1, 512 MB, DDR2 SDRAM, 667 MHz
    AirPort: AirPort Extreme, 1.4.4
    Bluetooth: Version 1.9.5f4, 2 service, 1 devices, 4 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: TOSHIBA MK8034GSX, 74.53 GB
    Parallel ATA Device: MATSHITADVD-R UJ-857D, 569.91 MB
    USB Device: Built-in iSight, Micron, Up to 480 Mb/sec, 500 mA
    USB Device: IR Receiver, Apple Computer, Inc., Up to 12 Mb/sec, 500 mA
    USB Device: Bluetooth USB Host Controller, Apple, Inc., Up to 12 Mb/sec, 500 mA
    USB Device: Apple Internal Keyboard / Trackpad, Apple Computer, Up to 12 Mb/sec, 500 mA

  • I want to install adobe speech recognition but I don't know how can I do it. ¿can you help me?

    I have adobe speech recognition but Premiere CC tell me that I have to install.
    I don't know how to install it.
    ¿Can anybody help me?
    Thanks.

    http://helpx.adobe.com/premiere-pro/kb/installing-additional-speech-libraries.html

Maybe you are looking for

  • My ipod (6th gen nano) is not being recognized

    I was moving some music on to it, decided to update itunes, and the moment it updated my ipod stopped being recognized. I've uninstalled and reinstalled itunes, restarted the ipod, and restarted the computer- all, multiple times. Thoroughly unimpress

  • Theoretical question re: ipad 3 update from iOS6 to iOS7

    With Apple's recent statement regarding breaking Facetime on iOS6 iPads, do we have recourse if the update to 7.1.1 slows the machine down, as I've read here that it does in many posts? For example, my iPad 3 is under AppleCare. if the update cripple

  • How to extend rollback segment

    Hi, for a few days I've been getting the following messages: ORA-01562: failed to extend rollback segment number 3 ORA-01650: unable to extend rollback segment RBS2 by 512 in tablespace RBS after running a package which has always had no problems and

  • Complete workitem and proceed further.

    Hi All, My Scenarion is: I have an Activity->Task, in which i am using a standard BOR 'FORM' to open approval screen, but in this BOR we do not have any events. Now i want to use terminating event within this task. I tried to use my custom BOR for th

  • SAX driver property

    Hi All, I am using apache xerces SAX driver in my java application. However, when I start the program I am having to specify the driver property like below java -Dorg.xml.sax.driver=org.apache.xerces.parsers.SAXParser MySAXAppI believe that it is pos