Windows speech recognition problem

I am trying out windows speech recognition but it seems to slow down Firefox? Scrolling becomes very slow and jumpy and selecting things is slow also. This doesn't happen on Internet Explorer or anywhere else for that matter.
I've disabled my addons to no effect.

Hi techpadawan1,
Windows Speech Recognition files are saved in C:\Users\<username>\AppData\Local\Microsoft\Speech\Files, and also under C:\Users\<username>\AppData\Roaming\Microsoft\Speech.
The training files are located in C:\Users\<username>\AppData\Local\Microsoft\Speech\Files so you can see that it is not a roaming folder.
Also I found a tool “Speech Recognition Profile Manager Tool”
You could use it to import/export to specific folder and it only take few seconds.
Warm remainder:large size file file roaming will cause slow user logon, and some times it will take minitus to log into user interface.
Regards

Similar Messages

  • Windows Speech Recognition Macros - Wait for Second Command

    Hello all. 'm terribly sorry if this was posted in the wrong forum. Let me know where to put it and I'll move it accordingly.
    I'm working with Windows Speech Recognition Macros, and I've got a question. Is there ANY way to write a macro that is triggered when the user says something (<listenFor></listenFor>), has the computer say something back to the user (<speak></speak>)
    and then waits a number of seconds for a specific command from the user? An example of what I'm saying would be something like....
    (I named my computer Aurora)
    ME: Aurora, close all windows.
    AURORA: Command received. Confirming close all windows.
    *WAIT*
    ME: Confirm.
    AURORA: Command confirmed. Closing all windows.
    or something along those lines to create some sort of dialogue between the computer and I. Is this acheiveable through the use of Speech Recognition Macros, or would I need to design a program that integrates Windows Speech Recognition to do this (if so,
    point me in the right direction)? Or worse, am I asking too much from a simple Speech Recognition program?

    I'm working with Windows Speech Recognition Macros, and I've got a question. Is there ANY way to write a macro that is triggered when the user says something (<listenFor></listenFor>), has the computer say something back to the user (<speak></speak>)
    and then waits a number of seconds for a specific command from the user? An example of what I'm saying would be something like....or something along those lines to create some sort of dialogue between the computer and I. Is this acheiveable through the
    use of Speech Recognition Macros, or would I need to design a program that integrates Windows Speech Recognition to do this (if so, point me in the right direction)? Or worse, am I asking too much from a simple Speech Recognition program?
    If you are asking if you can add wait commands to WSRMacros I do not see why you need a separate program. The Toolkit developed for WSR allows easy creation of WSRMacros and nesting of multiple macros using the Pause Execution command which inserts
    your choice of the length of the Wait state.
    For writing your own Wait state command, see the MSDN article on the Wait state command. I tried inserting the link but it won't activate because my account has not yet been approved.
    Marty Markoe
    2010-2011 Microsoft MVP

  • Latest Firefox FlashPlayer Plugin (14_0_0_179) software exception 0xc0000710 on Windows 7 32-bit when Windows Speech Recognition is enabled and running.

    Hi,
    Please note that I am reporting a problem happened on a different computer than the one that I am now using to submit this report.
    Computer: Dell Optiplex 980
    OS: Windows 7 Pro (with all the Windows Updates installed as of Aug 21, 2014)
    Browser: Mozilla Firefox 31.0 (most current version as of Aug 21, 2014)
    Adobe Flash Player Plugin (for Win7 32-bit, Firefox): the latest FlashPlayerPlugin_14_0_0_179.exe
    If I enabled the Win7 Speech Recognition feature, the Firefox FlashPlayer Plugin would generate an Application Error (software exception 0xc0000710) when the FlashPlayer Plugin is *first launch* in a Firefox session.
    Subsequent launching of the Flash Player plugin in the same Firefox session would *NOT* trigger the same software exception error again - until another Firefox window is launched.
    After the software exception error dialog was dismissed (via the OK button in the dialog), the plugin would go on running without any further problem and the flash video/audio would play correctly.

    Please try a clean Flash plugin install: [http://helpx.adobe.com/flash-player/kb/clean-install-flash-player.html] this error was seen last in version 11.8. Please also make sure that your video drivers are up to date: [https://forums.adobe.com/thread/945765] and [[Upgrade your graphics drivers to use hardware acceleration and WebGL]]

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

  • 10.3.9 Speech Recognition problem

    Hi to all. This is my first post.
    my question is i was trying to use speech recognition to visit saved webpages. the problem comes after i confirm to make a page speakable, the page isnt being saved. i cant find it under speakable items or under safari in speakable applications. also, i was wondering if anyone could point me to a good link for making my own speech commands using apple scripts.
    thanks

    Restart your computer with the X key held down, or go into the Startup Disk pane of System Preferences and select your hard disk as soon as you can. If the issue persists, your N key might be stuck, or a setting in the computer's NVRAM might be causing it to act like the N key was being pressed at startup. In the second case, hold down the Option, Command, P, and R keys at startup and release the keys when you hear the second startup chime to clear the setting.
    (16011)

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

  • Cannot digitally sign Windows Speech Recognition macros

    I have created five WSR macros, which I digitally signed after being asked to set up a digital signature.  When I reboot and try to create more macros I am unable to digitally sign them so I have to create them without a digital signature, and then they are ignored when I try to use them as the text I am saying is entered into WordPad instead of the text I want to enter, but the macros with digital signatures work correctly.
    I have also tried pinning WSR macros to the toolbar but when I click, double click, or right click the icon I am unable to open the WSR macros so have to go back to the Notification Area and click the icon there.

    Exactly the same problem for me

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

  • Windows 7 Speech Recognition causes Flash Player exception error in Firefox

    I have a strange problem.
    My system is Windows 7 Ultimate X64 SP1.
    Today I started working with Windows Speech Recognition. I found that if I have Speech Recognition running before I launch Firefox 30.0, I get a Flash Player Plug-in Exception error when I load certain websites.
    The version of Flash Player (Shockwave Flash) is 14.0.0.14.
    I also have SilverLight Plug-In 5.1.20913.0 installed and active.
    The problem does not occur when I use IE 10.0.9200.16798 to load the same website.
    One of the websites on which the error occurs is: www.bikeforums.net. The error appears as soon as the home page is finished loading.
    The exact error reads as follows:
    FlashPlayerPlugin_14_0_0_145.exe - Application Error
    The exception unknown software exception (0xc0000710) occurred in the application in location 0x774aa289.
    Any ideas?
    Thanks
    FW

    The problem does not occur when I use IE 10.0.9200.16798 to load the same website.
    Hi,
    Since IE works properly, it should not be Windows problem. Please try to check Firefox forum for an answer.
    Roger Lu
    TechNet Community Support

  • Speech Recognition just won't load in WIN 8.1?

    Am new to WIN 8.1 - can't get Speech Recognition to load/run... Will not run either from Control Panel, Charms (search for Speech Recognition, click Windows speech recognition or from icon in Task Bar nor from START screen..  BUT.. will run/load when
    rebooted (but often won't work/recognise speech correctly (What was that appears??)) as it then automatically appears on bootup; even though it would not run/load in previous session before the reboot.. !!
    Am running HP spectre i5, 4 meg 128GB... This failure is very frustrating - lots of other reports of this occurring but can't find any solutions specific to WIN 8.1.. PLEASE HELP - use dictation  lot as typing is abysmal!!

    Hi.. yep, have seen the video thank you.. the problem is NOT knowing how to use it.. (Have been in computers and using speech recognition, mainly Nuance DS Professional for
    ages..)
    The problem I have is in LOADING the application… sometimes it will load on the click of the mouse (or touch of the screen on this HP SPECTRE) – be it loaded from the task
    bar icon that I set up, from the Windows Speech Recognition command vis the CHARMS or even from the START tiles.. other times it will not!!  Must frustrating (will have to buy a new Nuance DNS professional as windows 8.1 is not a platform for DNS Version
    10 that I have used for ages – needs !!  or maybe go back to WIN&7??)
    Couple of things I have noticed that may help others is that the programme may not load if one clicks the icon too quickly.. I find that hovering the mouse over the icon and
    waiting until “Windows speech recognition” appears, THEN clicking the icon works at times.. after the small win Speech Recognition mode (grey) icon is closed by pressing the red “close” button then it is hard to get the programme to load again.. then one must
    go to Task manager and stop the Speech Recognition programme by clicking on the end task button..
    So.. it’s the initial loading and running of the programme that concerns me..  perhaps the bods at MS could look at how memory is allocated to this programme and why when
    closing the Speech Recognition programme from the “grey” speech recognition mode button it is  subsequently “hard” to reload it again and the programme seemingly seems to still run in Task Manager after this close button has been pressed…??  (But,
    I won’t hold my breath)…
    Cheers

  • Has anyone successfully used speech recognition software to add captions to photos?

    I have tried using Dragon and the builtin features of Win 7, but no luck.  This would be very useful for captioning large quanities of photos.
    Thanks

    I was able to create a speech macro that allows me to do this.  I have the marco set up so that I can tell it to 1) record what I dicate, 2) post it into the current picture, 3) move to the next photo.
    It is significantly faster (for me) than typing each caption.
    This was my first attempt at a (Windows speech recognition) macro, but I would be happen to share it with anyone who wants it.
    Regards,
    Joe

  • 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 window problem

    My speech recognition window (the little circle thing) disappears once in a while for extended periods of time. I have done all the things suggested in the help including:
    1. going to system preferences and turning speech off and on
    2. restarting and turning off and on / turning off, restarting, and then on
    3. deleting the com.apple.speech.recognition.feedback.prefs.plist, emptying trash, and turning off/on, turning off doing the same thing and on, off, deleting, restarting, on, etc.
    4. copying all related speech recognition prefs from another admin's library into mine.
    I once thought it may be some overheating issue as it once came back after i had shutdown and let it off for a while. however, the most recent issue, it came back without shutting it off.
    sometimes it's gone for hours at a time or shortest 30mins. It usually disappears when i turn it off to let my wife login to her setup or when i turn it off when i know i wont be using it for a while or i am going to play a memory intesive game. my wife's login seems to have no problem but she doesn't use it anywhere as much as i do.
    i have set up a few of my own commands but nothing critical. things like CNN, Visualizer, etc.
    any ideas?
    for the record, it's back now......

    hi,
    i removed all preferences stored in <your home>/Library/Preferences/com.apple.speech.*
    and switched speech recognition on/off/on and the window magically appeared -use rm carefully-
    make sure that you clean the speech processes (kill -9) too before removing these files.
    quite happy to find this, this has been a real p..n in the *. Apple guys, please clean this up asap.
    btw: i've an intel mc mini single cpu v10.4.6.
    mac mini   Mac OS X (10.4.6)  

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

  • Speech recognition feedback window won't disappear

    There is an article on how to get the speech recognition to appear when it wont. But nothing for when turning off speakable items in preferences doest make that annoying little feedback window go away. Any ideas?
    OS Lion 10.7.4

    I just deleted the .speech.recognition..plist files, and they were automatically recreated by the system. After a restart I turned off then on the speech recognition and everything worked perfectly!

Maybe you are looking for

  • Time From field is not getting displayed in correct format in Activities

    Hello Experts , We are facing one problem in UI , when we search for Activities in Web UI . In the field "Time From" we are not getting the time in correct format , ie is instead of  getting time as say 13::38 we are getting time as 13::3 , but when

  • After a new hard drive I cannot get cs4 to re- install.  it errors out on me.

    so I upgraded to a new drive now I am installing my old cs4.  it erros out after a few min.  it tells me to go check the log file but it means nothing to me.  I don't get a code that I can reference.

  • SWC as external library file

    i have created 2 project, library project (myLib) and actionscript project (myApp) which library project are only classes without any visual. i use the myLib in my myApp by setting through project properties -> actionscript build path -> library path

  • What is the use of the key date in filters in IP?

    Hi all, can anybody tell me what the key date on the filter in the planning modeler is good for? It seems to be always overwritten by either the key date in the query or the one set for the infocube in the planning modeler. Even if I don't set a key

  • Portal Event name and namespace (ECM)

    Hi Experts I want to register for the Portal Event that gets triggered when an employee is selected. In the Compensation Information page, there is an employee search iview. I need to know what Portal Event name and namespace is triggered when an emp