Speech Recognition grammar

hello,
please I'm using windows 8(frensh), but I'm creating a speech recognitipon software, and I wanna use the english grammar not frensh, I've used this but the result's giving frensh:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Speech.Recognition;
namespace IWritin
    public partial class Form3 : Form
        public Form3()
            InitializeComponent();
        SpeechRecognizer writer = new SpeechRecognizer();
        void writer_SpeechRecognized(object sender, SpeechRecognizedEventArgs e)
            richTextBox1.AppendText(e.Result.Text.ToString() + " ");
        private void Form3_FormClosed(object sender, FormClosedEventArgs e)
            Application.Exit();
        private void Form3_Load(object sender, EventArgs e)
            writer.SpeechRecognized += new EventHandler<SpeechRecognizedEventArgs>(writer_SpeechRecognized);

Hi
ayman-at1000,
I doubt there is no English language in your machine,  so first please make sure you have installed English language in your machien.Here is a
blog that discusses installing language packs in Windows8     
Then open Advanced Speech Options and change to EN-US.
For more detaild information, please check
Windows 8 Speech Recognition Language
Have a nice day!
kristin
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • C# Speech Recognition - Movie Database

    Hi, I recently started a project which is a digital life assistant. Would it be possible so when the Form starts up it grabs a RSS and pulls the latest names of movies and places it in the Grammar text document? That way I could ask for the latest movies
    or show trailers for the movies.

    Hi Danny,
    From my point of view, it is possible can be implemented.
    Like you said, you can place the latest names of movies in a Speech Recognition Grammar.
    When the form loads, it automatically starts Windows Speech Recognition and its graphical user interface. You can activate speech recognition by saying "start listening" or by pressing the Microphone button. The
    SpeechRecognized method, which executes when the speech recognizer raises the
    SpeechRecognized event, displays the name of all movies that are recognized in the speech input. And search trailers for the movies after matched.
    Please also refer to
    https://msdn.microsoft.com/en-us/library/hh378426(v=office.14).aspx for more details.
    Have a nice day!
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • 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...

  • Speech recognition and manual user input

    I  have a main GUI VI that contains two listboxes.  Both listboxes are selectable by the user.  Here is how I want them to interact.
    When the VI is initialized, the first listbox will be filled with string phrases.  If the user double clicks a cell in the first listbox, the second listbox will be populated by sorting the string phrases from the first listbox to only include phrases starting with same first letter.  Next, I want the user to be able to double click one of the phrases in the second listbox or 'say' the phrase into a microphone for speech recognition.  The phrase that is double clicked in the second listbox or identified through speech recognized will then be displayed on the main GUI VI.
    I've got my main GUI VI working such that the first listbox will populate the second listbox after the user double clicks a cell in the first listbox.  I've also got it working such that I'm able to double click the second listbox and display the phrase.  I'm using an event structure to do this thanks to some previous help from Dennis shown here.  I've also got a decent VI working based on this example that will recognize a phrase spoken based on an array of possible input phrases (grammar builder).  So I've got the pieces working independently of each other...
    My question is how to have both the speech recognition listening and second listbox waiting for a double click for input at the same time?  I have an event structure that waits for a double click to determine which phrase from the second listbox goes in the displayed phrase, I get that part, but how to use an event structure for speech recognition too?  Do I need a button to click to start the speech recognition VI?  I don't think I want the speech recognition VI running in the background just listening in some endless loop do I?
    Thanks,
    Mike

    Hi,
    It is a bit unclear what you are actually after.  Yes you could use the speach recognition in a seperate loop running as a daemon / callback or something but what is to stop you coding both bits of code in the same event structure.  You could do these in serial / parrallell just by the way you code them using dataflow.  It definitiely shouldnt be block diagram space as you can always create sub vi's.  You can deal with one of the events then create a user defined event to deal with the next process immediately after the first.
    So to  re-iterate, i am unsure as to what exactly you are after but i gave you my best guess
    Craig
    Message Edited by craigc on 26--01-2010 07:56 AM
    LabVIEW 2012

  • 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 Recognition problem (gramcomp)

    I'm trying to add speech recognition to my program. I've tried to compile my grammar using the following  gc /o grammar.cfg /h grammar.h grammar.xml. I get a message "compilation successful" but the header file is empty (but the cfg file is
    OK). Is there something I have to do to get the header file created?

    Hello AlanWK1947,
    >> I've tried to compile my grammar using the following 
    gc /o grammar.cfg /h grammar.h grammar.xml.
    It seems that you are using a command tool to compile your grammar, however it is not clear which one you are using, could you please tell the detail information?
    >> I'm trying to add speech recognition to my program
    If your program is based on .NET, you could check this article:
    https://msdn.microsoft.com/en-us/magazine/dn857362.aspx
    It shows how to add the speech recognition to .NET project.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • 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.

  • 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...)

  • 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

  • Speech Recognition not working when tested in IE on Windows 8.1

    Hi,
    I have adapted the example code form the Speech Recognition documentation to fire up Speech recognition in Visual Studio for Web Express 2013 on Windows 8.
    The speech synthensizer works fine when I fire up the app in IE and produce Text-to-speech, but when I try the Speech recognition code, all I get is "Waiting for Localhost" messages, and no result.
    Is there a problem with speech recognition with Web development using browsers? (I tried and failed in Opera as well)
    I am keen to use speech recognition for a webapp, ultimately serving mobile devices with the power of server-based processing.
    Anyone help please?

    Hi simulsys,
    I am moving your question to the moderator forum ("Where is the forum for..?"). The owner of the forum will direct you to a right forum.
    If it is related to the Windows Speech Recognition, this forum would be better:
    http://archive.msdn.microsoft.com/wsrmacros/Thread/List.aspx
    Or it is the Speech Server issue:
    http://social.msdn.microsoft.com/Forums/en-US/3ae80ba0-9a35-4457-8d08-a069e1a54506/windows-speech-recognition?forum=whatforum
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Speech recognition

    The speech recognition doesn't work for me I do have a microphone on my computer because at first it worked but now it doesn't. I can't find the calliberation window could u help

    Go to the Blue Apple
    Select System Preferences
    Select Speech
    Select correct microphone
    Select Calibrate.

Maybe you are looking for

  • Adobe Bridge Buttons in Dreamweaver, Flash, and Fireworks?

    Hello, Adobe says that the button to connect to Adobe bridge is in every CS3 application. I can find it in Photoshop, Illustrator, and even Contribute, a former Macromedia project, but none of the other Macromedia projects (Dreamweaver, Flash, Firewo

  • Why are Vocal Lyric found loops under Sound Effects in Apple Loops

    Was About to explore what Vocal lyrics are available in Apple Loops of Logic Pro when I realised that a lot are duplicated in Sound Effects filter as well as Vocals filter. Also, some vocals Lyrics are only in Sound Effects. Why aren't Vocal Lyric lo

  • How do I alphabetize my album list?

    This is my first attempt at a question for discussion..The question is: How do I alphabetize my iphoto picture album list.?

  • How does the N70 phone memory interact with the me...

    I am not sure how to use the phone memory and the card memory on my N70. I thought that the memory card was simply an overflow which was activated when my phone memory was full. However when I download music from my PC and my phone memory is full I w

  • Call up window commands thru JSP

    hi, I am new to JSP. I need to write a JSP page to call up the COPY function from Window Explorer: to copy files from client harddisk to another harddisk available in the network. Can anyone help me on this? Many Thanks, sh