Need text to speech in EPUB

I need a conventional hardware / software solution so I can listen to, edit, cut and paste Epub books with DRM (from Library or purchased). Adobe Digital Editions isn't it! I am a student I need to be able to listen to a book, cut segments out and insert into my notes so I can listen to a review later and the files need to be available on my "mobile device" of choice.

DRM can preclude much, if not all, of what you want to do. That is, sort of , the point of DRM. Restrictions are established by the publishing house.
As a student there may be a staff member at the school who deals with issues such as you face.
Perhaps a discussion will identify alternatives to DRM processed PDF.
Keep in mind that the various alternatives used at schools, like Digital Editions consumed products, are not going to function on 'every' device.
So, the "mobile device of my choice" may be unrealistic.
Be well...

Similar Messages

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

  • Need advice about text to speech

    It doesn't appear that the built in text to speech functionality will do what I need it to. The voice I need for a project is the popular Steven Hawking voice. I need to to be able to speak back a script that I've written and be able to record it in some sort of audio format that I can use on the internet.
    Does anybody have any advice?
    Thanks.

    Really? I don't have Snow Leopard yet, but under Leopard both Fred and Bruce (well more Fred) sound a lot like what I remember Steven Hawking sounds like. Maybe slow it down one tick below "normal."
    Have they removed those voices from SL?
    As for recording I think you could use SoundFlower and Audacity. Both are free -- not sure if either have been updated for SL yet....

  • 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);
    }

  • How to make a tts text-to-speech keyboard shortcut

    Hi,
    How do I make a tts text-to-speech keyboard shortcut
    to control the OSX "Speech" available as a contextual menu
    when you right-click selected text in Safari, TextEdit and other native apps
    *Speech > Start Speaking*
    *Speech > Stop Speaking*
    I can get this far:
    *System Preferences > Keyboard > Keyboard Shortcuts >*
    I have low-vision and need this on as many as possible or all text running on my computer.
    Less important: The "Speech" contextual menu is not available right-clicking text in Google Chrome. I could sure use it there too.
    THANKS!

    If you want it turned on permanently open Universal Access preferences, click on the Seeing tab, turn on VoiceOver. Click on the VoiceOver Application button for more configuration options.
    There's also a shortcut option for TTS in the Speech preferences.

  • Does anyone know of an e-reader app for the iphone that has text to speech capability? I have a Kindle 3G that can read whole pdf documents and books but I cannot figure out how to do it on my iphone 4.

    Does anyone know of an e-reader app for the iphone that has text to speech capability? I have a Kindle 3G that can read whole pdf documents and books but I cannot figure out how to do it on my iphone 4.
    All of the apps I have found on the App store either do not have the text to speech capability or if they have it they will only read a page at a time or simply read the text you paste into their window. I really do not understand what is so difficult about having this feature as Kindle provides it--though Amazon does not make the feature available on its iPhone 4 app.
    Please help.

    thanks. yes i am aware of the VoiceOver feature but it is NOT the solution to my problem. as you said, it is a solution to a different set of issues. i want the text to speech ability because i there are books i need to read but do not have the time to sit down and read them and have become used to listening to them read to me either by a professional human reader or with the text to speech software on the Kindle.
    I think Apple makes the best audio devices but i am really disappointed in this inexplainable shortcoming. if apple can give us siri they ought to be able to design a nice little button that i can push to turn on text to speech while i am in a document, book, magazine or webpage. clearly it is possible as apple has added the "reader" button in safari to have web pages dropped into the reader format.
    thanks for your suggestion though, it is what everyone suggests but it does not address the issue.

  • How do I install the text to speech voices in Captivate 7 trial

    I am on day 2 of the 30-day trial.  I downloaded the voice zip files, but can't seem to get them recognized/installed in the trial version.  How do I do this?
    Thanks.

    Hi there,
    If you have downloaded the voices for Captivate 7, then it has downloaded the zipped file for Text to speech installer.
    You need to extract that zipped file to a folder first, then inside that folder there is setup.exe file, double click on setup.exe to start the installation. (Captivate should be closed while installing voices)
    Note: The set up of text to speech  are different for Captivate 7 32 bit and Captivate 7 64 bit, so make sure that you have downloaded the appropriate one.
    Thanks.

  • Text-to-speech engine is not working

    when I want to use 'read out loud' in adobe reader and  foxit , I'm get no sound, I have similar problem in babylon that using TTS engine of OS.
    I'm using windows 8.1 64 bit.
    Do not get any error, but when play would have no sound.
    I previously didn't have any problem with these softwares.
    really need this functionality, please help me.
    Babylon support
    told me::
    Babylon uses a free text-to-speech engine that was developed by Microsoft and is part of Windows OS. please check with Microsoft support , why your text-to-speech engine is not working.

    Hi,
    If you go to the Start Screen, search for "Narrator" within All Apps and click it, what happens?
    In addition, please follow the steps below to check Speech Properties if there is anything wrong with it.
    Control Panel\Ease of Access\Speech Recognition\Advanced speech options
    Roger Lu
    TechNet Community Support

  • Text to speech on iphone 6 plus stops working

    Text to speech on iPhone 6 plus quits working if I leave the app that I was originally using it in.  For example, i am using text to speech to read a web site in safari.  I go to ibooks and do the two finger swipe for the text to speech window.  It comes up but, even though the play icon is on there is no sound.  I have to shut down the phone then restart it and the text to speech works again.  Any ideas?  Apple can you fix this?

    You cannot update that way. You need to download Captivate 7 separately from here:
    https://www.adobe.com/cfusion/tdrc/index.cfm?loc=en_us&product=captivate
    You can use both CP7 and CP6 simultaneously. To test your required feature, I would suggest that you try with a new file instead of opening your existing file.
    Sreekanth

  • Text to speech

    Text to speech (accessibility feature) is no longer working in my iPhone 5 after the upgrade to iOS 7.  If I hi lite text and touch Speak, nothing happens.  It works fine on my iPad.  I need this feature to work for my condition.

    sory for this
    i dont knw the rules of the forums
    as i am very new to this all things....
    i regret for this all i did
    i wil keep this in mind
    and thank you for telling me all this things

  • CP 5 text to speech--purchased voices integrated directly?

    Hi,
    I am hoping someone from Adobe will answer this question definitively for me (or someone who has figured this out and tested it). Let's say I have to add text-to-speech to a software demo and provide the demo in, say, five different languages. I have English, French, and German available to me in CP5. But I also need Spanish and Japanese. So I purchase the Spanish and Japanese voices from another TTS vendor (pick a vendor, it shouldn't matter, right?). QUESTION: will the purchased Spanish and Japanese voices be available directly in Captivate just like the voices that came with Captivate?
    Thanks!
    Joel

    From the Adobe Captivate Help file:
    Using third-party voices for speech text
    You can purchase voices from third-party vendors and use them seamlessly in Adobe Captivate.
    Note: Ensure that these voice comply with your operating system’s speech APIs.
    Install the voices on your computers using the installers provided by the vendors. The new installed voices get listed in the Speech Agent list of the Audio > Speech Management dialog box.
    I read that as YES.

  • Point me to text to speech resolution problem

    I'm running vista 64 bits in french with IE 8
    When trying to convert a text to speech, captivate is unable to do so.
    Thanks' for any input.

    For anyone looking at a solution here it goes...
    1. Close Captivate
    2. Open command prompt "As administrator" on Vista . You can do this by locating cmd.exe - it will be typically in c:\windows\system32\cmd.exe - right click it - in menu you will see - "Run as administrator”. Click that. Say Continue to the dialog which comes.
    3. In command prompt window go to the location where the nsaudio.dll resides ( you will need to have some knowledge of DOS command to navigate to the right folder) - Type "regsvr32 nsaudio.dll” and press Enter
    4. Confirm that you got the success message.
    5. Reopen Captivate - things should be fine
    And in Vista you need to Run Adobe Captivate as administrator for some functionalities.
    Hope it help others
    P.s. Who knew we would need some old DOS trick to help solve vista 64 bits file registration...

  • Text to speech converter

    Hello,
    I'm doing a project on text to speech converter using java and i'm very confused. What speech engine should i use? and how do i use it with java? i've downloaded javax package but when i run the sample codes hello world from Java speech api, it does work n i'm geting compiling errors saying tht package javax.speech does not exist.
    plz i badly need help to clear my confusion.
    thanks
    muskaan

    I would like to add a ability to my website http://www.artikelpedia.com whitch is in deutch language to be translated online from Germay to English. I have some pages now in english: http://www.artikelpedia.com/artikel/englisch/9/englisch5.php deutsch: http://www.artikelpedia.com/artikel/deutsch/27/deutsch2.php and franch: http://www.artikelpedia.com/artikel/kunst/2/kunst5.php
    but i wolud like to offer to my visitors ability to translate this pages from one language to another.
    For any sugestions about price and other facility of using java for thi please reply

  • Is there any way to use embedded commands in text to create pauses when using text to speech in iOS 5? You can do it in OS X by typing [[slnc 2000]] to get a two-second pause.

    Is there any way to use embedded commands in text to create pauses when using text to speech in iOS 5? You can do it in OS X by typing [[slnc 2000]] to get a two-second pause.

    Thanks for the reply Russ.
    Yes, I've considered adding titles and/or generators in the FCPX storyline, but this creates a need to render the entire timeline. As I'm juggling library locations and hard drive spaces I just didn't want to add a new render that will occupy a lot of space. It's also a bit of visual clultter for me, so my goal is to find the best workflow for adding this stuff on or after export.

  • Is there a text to speech app that can read text books to me?

    Is there a text to speech app that can read text books to me?

    The Apple Support Communities are an international user to user technical support forum. As a man from Mexico, Spanish is my native tongue. I do not speak English very well, however, I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture perhaps very very different from your own. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    You don't need an app for that text to speech is biult into OS X.
    http://osxdaily.com/2010/03/28/how-to-make-your-mac-talk-text-to-speech/

Maybe you are looking for

  • Getting All Local Groups, Group Members and Local accounts on all Servers

    Hello Everyone, Sorry if this has been covered already, but I didnt see anything that quite answered my question. I've been given the task of generating an Access Control List here at work and I've managed to piece together a few scripts that gets me

  • Industry standard for alloting Flash Development time

    Does anyone the industry standard for the time it takes for Flash development in general. In other words, How much developement time does it take to do one minute of flash animation. For example, with video and motion graphics, it's one hour of editi

  • Tool tips for selection list

    I want to display a tool tip for the values in a selection list in a HTML form in a JSP page. I have tried setting the title attribute on option tag but it does not work. Does anyone know how to do this? Thank you in advance

  • Presenter 7 for the MAC??

    Does anyone know if Adobe will make Presenter available for the MAC? Thanks!

  • SP16 Theme Editor and Themes

    Hi, Where i can find SP16 Theme Editor and Themes. I couldn't found SAP Note 854870 which is suppose to have link to downlod Theme Editor for different SP. Thanks Rahul