Text to Speech programs

I have a HP TouchSmart 520 and I have a two text to speech programs downloaded on my computer. However, I don't have sound on these programs. I did in the past before I did an update sometime ago. Can someone help me with this issue?

Hello Gwenna,
Welcome to the HP Forums, I hope you enjoy your experience! To help you get the most out of the HP Forums I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More.
I understand that your two text to speech applications do not have audio and that they did, but after an update no longer  do. I would be happy to assist you, but first I would encourage you to post your product number for your computer. I am linking an HP Support document below that will show you how to find your product number. As well, if you could indicate which operating system you are using. And whether your operating system is 32-bit or 64-bit as with this and the product number I can provide you with accurate information.
How Do I Find My Model Number or Product Number?
Which Windows operating system am I running?
Is the Windows Version on My Computer 32-bit or 64-bit?
Please re-post with the requested information and I would be happy to provide you with assistance. Thank you for posting on the HP Forums. Have a great day!
Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
Dunidar
I work on behalf of HP
Find out a bit more about me by checking out my profile!
"Customers don’t expect you to be perfect. They do expect you to fix things when they go wrong." ~ Donald Porter

Similar Messages

  • How can I get my text to speech program NVDA to work on Adobe Digital Edition 2.0?

    Adobe Digital Edition 2.0 text to speech program NVDA is suppose to work. How can I get it to work?

    In short, no. iAS is a 2.2 servlet container. You would have to backport your application to version 2.2 of the servlet spec.

  • Add-ons Manager / Extensions / Text-to-Speech doesn't work

    I use Natural Reader, a text-to-speech program.
    It won't let me highlight the text in Firefox Add-ons, so Natural Reader can read it to me.
    Some pages like snopes and enviroreporter . . . I have found that I need to disable javascript in order to make the text highlightable . . . you go into about:config . . . and double-click to disable: javascript.enabled
    So, I was looking into this, and found the NoScript plugin that has javascript disabled by default, and all other scripts on a page - this looks good for added security, so I will use it . . .
    But now I see this in Add-ons, where I can't highlight the text. Any idea what's going on? Thx.

    RightToClick . . . I don't see this in my Add-ons bar, or when I right click a page
    . . . the description for an Add-on is still unhighlightable . . . even if I right-click it with this Add-on . . . should I be able to highlight it? Or does it have some other way to make itself un-copyable, besides javascript?

  • I need a Text to Speech conversion program

    Hi everyone,
    I need a program for conversion of text to speech(TTS) in java. If you have this program or website address. please send me as much fast as possible

    Okay, I wrote this a looong time ago with intentions to only use as a joke (sorry if it is not well structured)...
    I turn the speakers up very loud in my cubicle and make my computer call out to other people in the office... "Help Help, someone help me... " or "Joe... why do you abuse me so?" you get the idea... hehe.. anyway, two Classes: Gui and SpeechModule. Enjoy, I have. : )
    GUI
    import javax.swing.JFrame;
    import javax.swing.JButton;
    import java.awt.BorderLayout;
    import oracle.jdeveloper.layout.XYLayout;
    import oracle.jdeveloper.layout.XYConstraints;
    import java.awt.Insets;
    import javax.swing.JTextField;
    import javax.swing.JTextArea;
    import javax.swing.JScrollPane;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    import java.awt.event.WindowListener;
    import java.awt.event.WindowEvent;
    public class Gui extends JFrame  {
         protected SpeechModule speechModule = new SpeechModule();
      JButton cmdSpeak = new JButton();
      XYLayout xYLayout1 = new XYLayout();
      JScrollPane jScrollPane1 = new JScrollPane();
      JTextArea txtWords = new JTextArea();
      JTextField txtPitch = new JTextField();
      JTextField txtShift = new JTextField();
      public Gui() {
        super("Java Speech"); 
        try {
          jbInit();
        } catch(Exception e) {
          e.printStackTrace();
      public static void main(String[] args) {
        Gui gui = new Gui();
        gui.show();
      private void jbInit() throws Exception {
        this.getContentPane().setLayout(xYLayout1);
        this.addWindowListener(new java.awt.event.WindowAdapter()
            public void windowClosing(WindowEvent e)
              this_windowClosing(e);
        cmdSpeak.setText("Speak");
        cmdSpeak.setActionCommand("cmdSpeak");
        cmdSpeak.setMargin(new Insets(0, 0, 0, 0));
        cmdSpeak.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
              cmdSpeak_actionPerformed(e);
        xYLayout1.setWidth(454);
        xYLayout1.setHeight(327);
        txtWords.setText("Hello. Hello.  Testing  one  two  three.");
        txtWords.setSelectionEnd(1);
        txtPitch.setText("10");
        txtShift.setText("100");
        jScrollPane1.getViewport().add(txtWords, null);
        this.getContentPane().add(txtShift, new XYConstraints(40, 260, 55, 25));
        this.getContentPane().add(txtPitch, new XYConstraints(40, 220, 55, 25));
        this.getContentPane().add(jScrollPane1, new XYConstraints(50, 40, 360, 150));
        this.getContentPane().add(cmdSpeak, new XYConstraints(160, 230, 75, 25));
        this.setSize(600, 400);
      void cmdSpeak_actionPerformed(ActionEvent e) {
        System.out.println("pitch" + Float.valueOf(txtPitch.getText()).floatValue());
        System.out.println("pitchShift" + Float.valueOf(txtShift.getText()).floatValue());
        speechModule.setPitch( Float.valueOf(txtPitch.getText()).floatValue() );
        speechModule.setPitchShift( Float.valueOf(txtShift.getText()).floatValue() );
        speechModule.speak(txtWords.getText());
      private void this_windowClosing(WindowEvent e)  {
        System.exit(0);
    SpeechModule
    import com.sun.speech.freetts.Voice;
    import com.sun.speech.freetts.audio.JavaClipAudioPlayer;
    import com.sun.speech.freetts.en.us.CMULexicon;
    public class SpeechModule {
         public static Class voiceClass = null;
         static {
              try {
                   //voiceClass = Class.forName("CMUDiphoneVoice");
                   voiceClass = Class.forName("com.sun.speech.freetts.en.us.CMUDiphoneVoice");
              } catch (ClassNotFoundException cnfe) {
                   cnfe.printStackTrace();
         private Voice voice = null;
         public SpeechModule() {
              try {
                   this.voice = (Voice) voiceClass.newInstance();
          voice.setPitch(100);
          voice.setPitchShift(10000);
              } catch (InstantiationException ie) {
                   ie.printStackTrace();
              } catch (IllegalAccessException iae) {
                   iae.printStackTrace();
              voice.setLexicon(new CMULexicon());
              voice.setAudioPlayer(new JavaClipAudioPlayer());
              voice.load();
      public void setPitch(float n){
          voice.setPitch(n);
      public void setPitchShift(float n){
          voice.setPitchShift(n);
         public void speak(String value) {
              voice.speak(value);
    }

  • Is there a way to specify text-to-speech to dictate a specific line or..

    Hi guys,
    Is there a way to specify text-to-speech to dictate a specific line or page in a pdf file?
    In fact, it would be cool if text-to-speech highlighted each word that is being spoken through out the document during dictation and you could rewind, pause or fastforward the speech in real-time. Is this feature available? if not, can anyone recommend any other programs that can do this?
    thanx in advance

    Is there a way to specify text-to-speech to dictate a specific line or page in a pdf file?
    Yes!
    With fully modern Cocoa applications (like Safari, Preview, TextEdit, and Mail) you can select the line or page and then from the application menu > Services > Speech > Start Speaking Text
    You can also select and then Control-Click on the selection and then pick Speech > Start Speaking Text from the contextual menu. (Works with Safari, TextEdit, and Mail, but not Preview for PDF.)
    In fact, it would be cool if text-to-speech
    highlighted each word that is being spoken through
    out the document during dictation and you could
    rewind, pause or fastforward the speech in real-time.
    That would be cool. Are you looking for an interface enhancement, or would a talking book reader with these features be acceptable?
    Is this feature available?
    No, but you can get somewhat close to this ideal by using VoiceOver and checking Show Caption Panel.
    if not, can anyone recommend any other programs that can do this?
    I have had fair success with the Text Help Read & Write Aloud products.
    http://www.texthelp.com/rwm.asp?q1=products&q2=rwm
    eMac 1.42   Mac OS X (10.4.6)   I paid the going Windows price for a screen reader and got a free computer!

  • TTS(text to speech) prompts in CUCE

    hello everyone
    i want to edit sample script of CUE, i  want to ask if i can convert text into speech like using TTS prompts in it??
    i wanna change only wellcome greeting to my requiremnt so how can i do this in CUCE editor?

    Thanks for your reply.  That's what I was afraid of. (I could probably program such interface myself, but I really don't like working with Microsoft code, libraries and interfaces... and I have a bit of a time constraint)
    That wrapper executable you pointed to looks like it could be promising (and has source code), I'll check it out.
    -- Matt

  • "text-to-speech" problem in Yosemite (very annoying) - "object replacement character"

    After upgrading to Yosemite, yesterday, I have problems reading websides and documents in my Mac with text-to-speech.
    I'm slightly dyslexic and prefer text-to-speech instead of reading myself.
    All documents that have illustrations give problems with text-to-speech.
    Whenever the text overlaps an (I think...) invisible lay-out feature that has to do with illustrations I hear "Object Replacement Character".
    That makes many texts "unreadable" for me...
    Is there anyone with the same problem?
    Can someone help me to get rid of this?
    It makes text-to-speech practically useless for me...
    Big problem!
    Jur Kuipers, The Netherlands
    iMac (27-inch Mid 2010), OS X Yosemite 10.10

    Perhaps I have to tweak some settings in "VoiceOver-Program" after selecting "Alex" in System Preferences?
    I cannot understand why Alex gives errors and my Dutch voices are not..., my VoiceOver-settings with these different voices are the same...
    VoiceOver is complicated (many settings and difficult interface) , perhaps someone knows what to do ???

  • Disable the text-to-speech?

    How do I disable the text-to-speech that happenens everytime I get a messgae?

    ruwim wrote:
    In Skype open Tools -> Options -> Advanced settings. At the bottom of this screen you should see a menu item saying “Manage other programs access to Skype”. Click on this menu. Do you see any applications listed there?Just Clownfish.

  • Problems installing german text-to-speech package ...

    Hi guys,
    recently, I bought the new Navigator 6710. Everything works fine, except for the missing text-to-speech package in German. So I decided to download and install it via cellphone and PC. Neither of those options were successful. The installation finishes stating "Installation successful", yet there is no new entry for the German voice (e.g. Jürgen or Nicole).
    I was quite desperately looking for an answer so far, but wasn't able to find one, yet. I hope you guys are able to help me findig a solution.
    Thanks in advance,
    Freddy

    Thank you Vikram, you helped me a lot.
    So i only have to install the text to speech products and their voices are then available in captivate?
    Does anyone has experience with such programs or knows voices that sound really good. I like the voice of Stefan from Loquendo.
    But i don't find where to buy it and the serviceteam didn't respond.

  • Text to Speech Dictionary Editing

    Hey everybody.  I'm confused and could stand some help from my fellow Captivators.  I'm trying to edit the user dictionary in the text to speech feature of Captivate 4.  I saw the blog post at http://blogs.adobe.com/captivate/2009/03/customizing_text_to_speech_pro.html.  I find that the path specified in the post for the dictionary does not exist on my machine, but there are two parallel paths, one for Kate and one for Paul at C:\Program Files\Adobe\Adobe Captivate 4\VT\Kate\M16\data-common\userdict and C:\Program Files\Adobe\Adobe Captivate 4\VT\Paul\M16\data-common\userdict.  In playing with this, it appears to me that Paul uses Kate's userdict_eng.csv.  But he has his own dictionary in the above path.  If I edit the dictionary in Paul's path, then re-launch Captivate, none of the pronunciation changes take place.  But if I edit Kate's dictionary, then re-launch Captivate, the new pronunciation is spoken by both Kate and Paul.  ????
    Am I seeing the right thing here?  If so, it would appear that I should always edit Kate's dictionary and ignore Paul's???  Or am I completely off the mark?
    Thanks.

    Hi there
    Is is possible that after you edited Kate's dictionary you performed another action that caused both to be read in? You might try this by further editing Paul's and seeing if the changes take effect or if it only happens after you also edit Kate's.
    Just thinking out loud... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Text to Speech Narration

    In my project, I have imported some Powerpoint slides and I
    am attempting to add a narration feature to them. From my reading,
    I gather I have about two options. The first is to use a text to
    speech engine to narrate each slide. Some of the questions I have
    concerning this are: -
    1) How would I be able to turn it off and on as required?
    2) How do I substitute a voice of my own choosing to do the
    narration instead of Microsoft Sam
    The second option involves importing WAV files and converting
    them to SWA format . My questions are: -
    1) How do I create WAV files in the first place from
    Powerpoint files or the existing authoware files I have created? Is
    there a program you can recommend to do that?
    2)What are dangers in using this approach?
    3) How do I turn the narration on and off as required.
    I would appreciate your help

    I've never integrated text-to-speech so not sure on your
    first
    questions. From past questions/answers here, I gather it's
    not a trivial
    thing to do. I'd imagine it wouldn't be difficult to turn
    on/off but
    perhaps a bit more difficult to choose the voice (though
    perhaps not in
    light of getting everything else setup). I'd search past
    posts in this
    forum and the AwareList
    http://ls.kuleuven.ac.be/cgi-bin/wa?A0=aware
    to look for similar questions.
    For the second part, you can record audio with any such tool
    you prefer.
    A decent free one is Audacity:
    http://audacity.sourceforge.net
    I'm pretty sure PPT has voice recording functionality, but
    I've never
    done it so not sure how to get the audio files out of PPT for
    importing
    into Authorware. I also don't know if you can control the
    recording
    settings in PPT, which could mean very large files, though if
    you
    convert them to SWA (once you get them out of PPT), that
    shouldn't
    matter so much.
    I always have our audio professionally recorded at 22khz,
    16bit, mono,
    then either import that directly into Authorware as is or
    convert it to
    SWA or MP3... You don't have to use SWA.
    I wouldn't say there are any dangers I know of...
    To turn it on and off, you can just setup a perpetual
    interaction that
    has a short audio file that will 'cut off' the current audio,
    then use
    the ActiveIf option in each audio icon to determine whether
    to play the
    file or not (via whatever setting/variable you set in that
    perpetual
    on/off interaction).
    It's not terribly complicated, though it may sound so!
    Erik
    Technovators wrote:
    > In my project, I have imported some Powerpoint slides
    and I am attempting to
    > add a narration feature to them. From my reading, I
    gather I have about two
    > options. The first is to use a text to speech engine to
    narrate each slide.
    > Some of the questions I have concerning this are: -
    > 1) How would I be able to turn it off and on as
    required?
    > 2) How do I substitute a voice of my own choosing to do
    the narration instead
    > of Microsoft Sam
    >
    > The second option involves importing WAV files and
    converting them to SWA
    > format . My questions are: -
    > 1) How do I create WAV files in the first place from
    Powerpoint files or the
    > existing authoware files I have created? Is there a
    program you can recommend
    > to do that?
    > 2)What are dangers in using this approach?
    > 3) How do I turn the narration on and off as required.
    >
    > I would appreciate your help
    >
    Erik Lord
    http://www.capemedia.net
    Adobe Community Expert - Authorware
    http://www.adobe.com/communities/experts/
    http://www.awaretips.net -
    samples, tips, products, faqs, and links!
    *Search the A'ware newsgroup archives*
    http://groups.google.com/group/macromedia.authorware

  • Text to Speech does not appear to be working in the new version of Pages

    I have tried several ways to get the text to speech feature to work with the new version of Pages, but haven't yet had success. I use that feature in editing my articles alot, so I guess I'll stick with Pages 09 for now.
    Anyone found a work around?

    Nope, working as intended.
    Pages 5 breaks accesibility completely.
    If you're visually-impaired DO NOT UPDATE.

  • Using text-to-speech technology in my web app

    Hi all,
    I work for a small web development company and we're curently in the process
    of building a web app for foreign language learners. One of the features
    we'd like to have is speech synthesis. We immediately thought about
    incorporating the technology developed by Apple into our app, but
    I want to make sure we're allowed to do that in the first place.
    Basically, here's what we want to do: we have a simple application
    where users can learn new vocabulary. Every word saved by a user
    can have a few example sentences (also posted by our users).
    We could then generate audio files from these sentences using
    "say" command (which is built into the Mac OS) and put
    them on our website.
    If you're familiar with Apple's policy on such uses of their text-to-speech
    synthesis, I'd be grateful if you could clarify it for me.
    Thanks.
    PS: it's my first post here, so if I chose the wrong forum, please let me know where
    I should post it.

    Hi there
    I've noticed more than few posts about this since Captivate 4
    was released.
    Are you by chance using Windows Vista 64 bit? Seems most that
    have reported this issue have been using that version.
    Please report it to Adobe as a bug.
    Click
    here to view the WishForm/Bug Reporting Form
    Cheers... Rick

  • Everytime i try to add a text box the program crashes.  Why and how do I fix it?

    Since I purchased and installed Adobe Photoshop Elements every time I try to add a text box the program crashes.  Why and how do I fix it?

    TeeKnows wrote:
    Debit cards are accepted in the iTunes store.
    No longer accepted for NEW accounts, however if a debit card were associated with the account BEFORE this change, they can still be used.

  • I need to reprogram the delete and enter key to the left side of a external keyboard for the ipad mini. don't need the caps/lock or ctrl key and due to an injury my daughter can only use her left hand to type. She is using a text to speech app to verbaliz

    I need to reprogram the delete and enter key to the left side of a external keyboard for the ipad mini. I don't need the caps/lock or ctrl key. Due to a brain injury my daughter can only use her left hand to type. She also uses a text to speech app to verbalize all of her needs since her speech isn't intelligible any longer either. And her vision was significantly affected also, so the keyboard has to be mounted about 6 inches from her face. So to reach across the keyboard with her left hand to the right side delete and enter button is physically difficult and causes typing errors, which cause people to not understand what shes trying to say.
    The best keyboard so far is the Zagg folio mini. I just had to make stickers to enlarge the letters on the key buttons.
    Does anyone know how I can reprogram these two keys? Or where I can buy a wireless mini keyboard for Ipad made for lefthanders with these two functions on the left side. I have searched for days and days. It's sooooo important to me that she be able to contribute her voice again. Imagine if you got in a car accident and couldn't speak clearly any longer, but understood everything still. Thanks for any help and suggestions you all take the time to share with me. I really appreciate the kindness of strangers to help me help my daughter.
    Sami's mom

    Sami\'s mom wrote:
    I need to reprogram the delete and enter key to the left side of a external keyboard for the ipad mini.
    You cannot.

Maybe you are looking for

  • Xorg or xfce4 issue?

    Hey all, I'm new to arch linux. I installed Archlinux into my laptop and it's running pretty well except of this issue: When I start the xfce it's all working fine until I close it. If I try to run it again then it's not working and my pc stucks. I c

  • Loading image in to a word document

    Hello guys, I hava an image( .bmp file) on the desktop, through java program can I create/load the same image in to a word Document?

  • RFC to File - XML file output

    Hi, We are doing a RFC to file scenario where our o/p file is in XML format. The required o/p file format is : <?xml version="1.0" ?> <MAT_GROUP xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <HEADER>   <MINISTRY_CODE>TOT</MINISTRY_CODE>   <D

  • Error handling in BI7.0

    Looking for a functionality which we have in 3.x infopackage level.In infopackage of 3.x we have the concept of error handling by going to update tab and we will give the error handling wherein we have the option of giving few records and selecting '

  • Batch schedule several webi reports

    hi, all i have lots of webi reports to schedule, and it's time consuming to do it one by one, any method can schedule them in batch mode. boe 3.1 sp3. thanks in advance. Ada