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

Similar Messages

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

  • How to use text-to-speech so that my text messages are read to me in the car?

    How to use text-to-speech so that my text messages are read to me in the car?

    I have the same question but I have iPhone 5

  • I am using OSX 10.9.5 and Outlook Web App for emails. When I download an attachment it replaces the space in the file name with   - how can I change this?

    I am using OSX 10.9.5 and Outlook Web App for emails. When I download an attachment it replaces the space in the file name with %20  - how can I change this?

    Click on the below link :
    https://get.adobe.com/flashplayer/otherversions/
    Step 1: select Mac OS  X 10.6-`0.`0
    Step 2 : Safari and FIrefox
    Then click on " Download Now"  button.

  • An error message pops up when using text to speech function in trial version

    An unable to decode and import the selected wav/mp3 message
    pops up when trying to use the text to speech function with the
    trial version. It will let me select the voice but will not apply
    the changes or convert.
    Any suggestions??

    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

  • How to use text-by-speech for N80?

    I have been reading some posts here and there, but I havent seen anywhere where it states that text by speech works or does not work for N80? I was hoping somebody coud tell me, if it does work how do you install it?
    Thank you so much

    text to speech is a feature on a certainphone eg E90.the phone has to support text to speech.And the software that u download is only the langague for text to speech.
    At last a nseries phone im truely happy with THE N82

  • How do I use the alternate list template when rendering web app items to a page?

    I need to have the ability to use the main list template on particular pages, but then use different markup for other pages - is there a way that I can specify the alternate list template within the module tag?

    Hi Matt, You should read about web apps here:
    http://helpx.adobe.com/content/help/en/business-catalyst/partner/web-apps-module-create-cu stom.html
    And module reference here:
    http://helpx.adobe.com/business-catalyst/kb/modules-quick-reference.html
    If you insert through the admin and click customise you will see the option to use listbackup. You will also see that layout availible via FTP and in the admin or DW.
    Here you can see where in the module paramaters the option to choose listbackup occurs:
    http://helpx.adobe.com/business-catalyst/kb/modules-quick-reference.html#id_65138

  • How to use iweb rss feed in an iphone web app?

    So this is my dilemma.  I wanted my iweb turned into a web app using the rss feed.
    This is simply done cause of the "Add To Homescreen" feature. 
    While the RSS feed works beautifully on safari... it does not read as a webapp.
    This surprised me cause I thought it would still be safari that would be loading my web app.
    I tried everything to get my RSS feed to work in a web app but i failed miserably.
    Is there a fix for this?

    Adding to the homescreen doesn't make it a webapp.
    It creates a shortcut to the webpage, just as dragging a url to the desktop creates a .webloc file.
    You want an iWeb "webapp"?
    Add this page to the homescreen and then click that icon :
    http://www.wyodor.net/_Demo/Fancy/Dynamic_Text.html
    Then click the links in the dynamic textboxes.
    I leave it to you to figure out how it's done. Hint : read the documentation.
    To summarize : you want a fix for a problem that does not exist.

  • Help using JMX to Get Context of Deployed Web Apps

    I think this question is more of a JMX question that anything else (like a JNDI question), so I am posting here. If anyone feels this should be posted elsewhere, please let me know.
    I want to be able to get a handle to each deployed web app's context, so that I may get a BasicDataSource from it, then look at the connection attributes inside of that BasicDataSource, i.e., Number of active connections, number of idle connections, etc. for each deployed web app.
    This is the path I am heading down (if there is another way, please let me know). The code below is inside of a JSP running inside of a web app within my Tomcat 5.0.16 server, running JDK 1.4.2.
    Here is the entire JSP...
    <%@ page import="org.apache.commons.dbcp.BasicDataSource,
                     javax.naming.InitialContext,
                     javax.naming.Context,
                     javax.management.ObjectName,
                     javax.management.MBeanServer,
                     java.util.Set,
                     org.apache.catalina.mbeans.MBeanUtils,
                     java.util.Iterator,
                     javax.management.ObjectInstance,
                     org.apache.catalina.core.StandardContext"%>
    <html>
        <head>
            <meta http-equiv="refresh" content="3"> <!-- refresh every 3 seconds -->
        </head>
        <body>
    <%
        //InitialContext ctx = new InitialContext();
        //Context envCtx = (Context) ctx.lookup("java:comp/env");
        String dsName = "";//"jdbc/raptor";
        String appName = "";//(String) envCtx.lookup("appName");
        BasicDataSource ds = null;//(BasicDataSource) envCtx.lookup(dsName);
        MBeanServer mBeanServer = MBeanUtils.createServer();
        ObjectName oname = new ObjectName("*:j2eeType=WebModule,*");
        Set contexts = mBeanServer.queryMBeans(oname, null);
        Iterator it = contexts.iterator();
        while(it.hasNext()) {
            ObjectInstance oi = (ObjectInstance)it.next();
            ObjectName cname = oi.getObjectName();
            System.out.println(">>> cname = " + cname.toString()); // this prints something like this: Catalina:j2eeType=WebModule,name=//localhost/accesstracker,J2EEApplication=none,J2EEServer=none
                Is this the right way to do this??? I seem to be getting the web app, I just want to be able to
                get a handle to that web app's context, get a BasicDataSource from it, then look at the connection
                attributes inside of that BasicDataSource, i.e., Number of active connections, number of idle
                connections, etc. for each deployed web app
            //javax.naming.Context iCtx = (javax.naming.Context) mBeanServer.invoke(cname, "findStaticResources", null, null); // will this do it???
            Object obj = new InitialContext().lookup("java:comp/env"); // this only gets the current context (the web app I'm currently in)
            if(obj != null){
                Context envCtx = (Context) obj;
                appName = (String) envCtx.lookup("appName");
                ds = (BasicDataSource) envCtx.lookup("jdbc/raptor");
            }else{
                System.out.println("obj is null");
    %>      <%=cname.toString()%><br/>
            Application name: <%=appName%><br/>
              Number of Active Connections = <%=ds.getNumActive()%>
            <br/>
              Number of Idle Connections = <%=ds.getNumIdle()%>
            <br/>
              Initial Size of Pool = <%=ds.getInitialSize()%>
            <br/>
              Maximum Number of Active Connections = <%=ds.getMaxActive()%>
            <br/>
    <%
    %>
        </body>
    </html>The above JSP will output all of the info for each deployed web app, however, when it gets to getting the Context of the web app, it simply outputs information repeatedly for the web app this JSP is in (which makes sense since I'm using InitialContext).
    I appreciate any help anyone could provide.
    Thank you

    If you want your application to work only with specific JRE version, you should use static versioning. I installed JRE 1.3.1_15 and JRE 5.0U5 , both of them works successfully. I used the below syntax to load applets:
    for 1.3.1_15:
    <object
        classid = "clsid:CAFEEFAC-0013-0001-0015-ABCDEFFEDCBA"
        codebase = "http://java.sun.com/products/plugin/autodl/jinstall-1_3_1_15-windows-i586.cab#Version=1,3,1,15"
        WIDTH = 150 HEIGHT = 25 >
        <PARAM NAME = CODE VALUE = "HelloWorld.class" >
        <param name = "type" value = "application/x-java-applet;jpi-version=1.3.1_15">
        <param name = "scriptable" value = "false">
        <comment>
         <embed
                type = "application/x-java-applet;jpi-version=1.3.1_15" \
                CODE = "HelloWorld.class" \
                WIDTH = 150 \
                HEIGHT = 25
             scriptable = false
             pluginspage = "http://java.sun.com/products/plugin/index.html#download">
             <noembed>
                </noembed>
         </embed>
        </comment>
    </object>for 5.0U5
    <object
        classid = "clsid:CAFEEFAC-0015-0000-0005-ABCDEFFEDCBA"
        codebase = "http://java.sun.com/update/1.5.0/jinstall-1_5_0-windows-i586.cab#Version=1,5,0,5"
        WIDTH = 150 HEIGHT = 25 >
        <PARAM NAME = CODE VALUE = "HelloWorld.class" >
        <param name = "type" value = "application/x-java-applet;jpi-version=1.5.0_05">
        <param name = "scriptable" value = "false">
        <comment>
         <embed
                type = "application/x-java-applet;jpi-version=1.5.0_05" \
                CODE = "HelloWorld.class" \
                WIDTH = 150 \
                HEIGHT = 25
             scriptable = false
             pluginspage = "http://java.sun.com/products/plugin/index.html#download">
             <noembed>
                </noembed>
         </embed>
        </comment>
    </object>- Mike

  • Problem using text to speech with Pages 09 and snow leopard

    Hi,
    I am writing a large document and use the start speaking function often to hear parts of it read back after I write it.The speech sounds great for a page or two and then starts to become choppy and skips words and eventually becomes inaudible except for a few sputters. I would like to be able to listen to the entire document when I am done and would like to either solve the sputtering problem or find a new app that will allow a long paper to be read back by the computer. This problem is consistent on my macbook(2010) as well as my iMac(2009).
    Thanks for any suggestions in advance.

    I have to constantly reboot/restart between Lion on my New Thunderbolt Mini and Snow Leopard off and External Drive.
    Why? There is no good way to do what you're doing.

  • What webbased tools can I use to create a custom PDF Reader Web App?

    I want to build a webtool that allows user to view PDFs but I also want to add my own toolbar to allow users to do some custom things to the document like select text and return that text to the webapp (built with AJAX). Or maybe insert a bookmark or open multiple PDF documents in multiple windows to compare them.
    What tools do I need to build something like this???
    Thanks!

    I've seen it done with Flex, which means in theory it should work with AIR as well.
    However, the Acrobat SDK would be way out of range for this. You are not allowed to install Acrobat on a web server (section 2.3 of the EULA), so it would have to be entirely separate from the Acrobat SDK, since the SDK is nothing and does nothing without Acrobat installed.
    EDIT: Actually, I believe it was using FlashPaper, not a direct PDF-in-Flash render.

  • 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

  • Tips for speaking text (text to speech)

    I have just added these notes to an OS X tips page that I created sveral years ago:
    Visually impaired users should find the built-in Text-to-speech technology of OS X useful. Go to System Preferences/ Speech/ Text to Speech. Tick the "Speak selected text.." box. Enter a keyboard shortcut (I use Control-F19 as the keys are diagonally opposite on my keybaord. You will need to select text for this to work. To select all text from a document press Command-A. Then press Control-F19 to start the computer speaking. Unfortunately Microsoft apps like Word (2004) do not have this speech capability. You will need to copy (Command-C) and paste (Command-V) the text into Text Edit before invoking Text to Speech. PDF documents in Preview and email in Mail work fine.
    The tips page is:
    http://users.tpg.com.au/aoaug/mac_osx.html
    Having a temporary patch over one eye I thought I should invoke this technology but found it difficult to locate some basic tips on the net. If you have some good links/tips please post them on this thread.

    It's a bug. I have submitted feedback on this point to Apple. I really hope they take notice, because the male voice is horrible.
    There is a workaround though - go to Settings/General/International/Region Format, and change the region to "Isle of Man".

  • Experience using Flex and TTS technology

    Hi,
    I'm looking for anyone that have some kind of experience
    using Text-to-speech (TTS) technology together with a Flex
    application. Is there any good products/services out there which
    can deliver real-time speech based on text sent from my Flex app?
    Thanks for any advise!
    Regards,
    Sven
    Making Waves

    Sorry I don't have any complete reference on Flex/CSS. But I
    usually find all I need in the documentation.
    There is also a really nice application which allows you to
    manipulate the graphical aspects of the application. What's nice is
    that it creates a CSS file you just have to copy/paste in your
    application.
    Here is the link to the app:
    http://examples.adobe.com/flex2/consulting/styleexplorer/Flex2StyleExplorer.html
    Have fun
    David

  • Any third party apps to highlight words on Mac as they're read by the built in Text-to-Speech?

    Hello everyone,
    I want to use my Mac to it's full potential!  And I believe this is the community that can help.  Is there a way for my mac to highlight the words which are read by the built in text-to-speech voices?
    I really love the VoiceDream application for the iPad, and I'm looking for an equivalent or isotope of similar features on the Mac. 
    The answers to this question can benefit:
    1.)  People who have trouble reading without voice-over.
    2.)  Foreign language learners who want to follow along as the text is being read.
    3.)  People who have difficulty focusing while they read.
    If you know of any amalgamation of solutions to this problem, I will really appreciate it!  I am currently experimenting with using text-to speech as a way to read my textbooks for better comprehension and to remember more information. I really don't want to move to the VoiceDream app because everything is centralized on my Mac, and I like the variety of voices already available for free on the Mac. 
    I recently got my MacBook Air mid-2014 Model with OSX 10.9.4 installed, so this is what I'm working with. 
    As a last resort, if there is a solution that will work on a Windows computer, I can install Parallel Desktop to take advantage of an application if it has a comprehensive solution that would make it worth it to install that platform.
    The perfect solution would really be if there was a Mac version of VoiceDream Reader, but seeing as there isn't, I would love to find out how I can make due with what is out there, or maybe even petition some software developers to create a solution to this problem that would enhance the study-toolbox of students and life-long learners.
    Thank-you for any answers.  I appreciate the community vibe!

    Did you have a look at GhostReader. It works in demo mode for 14 days to test it.
    http://www.convenienceware.com/product/ghostreade
    I have used it a lot but some functionalities are not yet working in Yosemite beta.

Maybe you are looking for

  • Has Anyone tried to Launch GB and Logic at the same time?

    I launch both of the and GB causes logic to freeze when i quite GB logic works fine is this a bug? or whats the work around stash

  • Re-enable UDF in Marketing Docs

    Hi, I had created a UDF in marketing docs with DI API and in my code I set the field to be Enabled = false, ok, no problems until yesterday. Now I need to set Enabled = true but i'm getting the error "The field is not a user defined field" and i can'

  • Writing data to a foreign database-SQLServer using a stored procedure

    Does anyone know if I can Insert data into a SQLServer table which resides out on the WAN using a stored procedure which resides in my Oracle database?

  • WHICH SOAP CLIENT STACK FOR  JDEV 10.1.3 WEBPROXY ?

    Hello everybody, I just succeeded in calling webservice stubs, created in Jdeveloper 10.1.2., from a oracle10G (R2) DB. This works perfectly... Now i'm trying to deploy the same webservice from Jdeveloper 10.1.3 into the same database. I generated a

  • Email notification from Activation Server

    I've received an email notification from Activation Server ([email protected]) telling me that i have successfully set up my email account with my Blackberry and that i should begin to receive new messages in approx. 20 minutes...strange though, i se