speech

TI-99 speech effect?

Hi, I want to make a program that takes recorded speech and transforms it so it sounds like it's coming from a Texas TI-99. Do you have any good ideas and resources for how to go about that? ...

Java Speech recognition api

HI, i am currently developing an android application where i am required to implement speech recognition...could u suggest a link where i could find a java speech recognition API...? Thanks ...

How to work with the OCS 2007 samples?

I started the first OCS sample (BargeIn) but got "Unable to connect to the server" after clicking the "Call" button of the "Voice Response Debugging Window". Already verified that the server is running on the default listening ports. Any ideas? ...

Library for extracting words (speech) out from audio stream?

I have an audio stream and I would extract words (speech) from it. So for example having audio.wav I would get 001.wav, 002.wav, 003.wav, etc where each XXX.wav is one word. I am looking for a library or program to do it -- platform does not matter, but I prefer open-source solution. Thank you in advance for help. ...

Speech-Over PDF?

I'd like to add speech-over/narration to a PDF document. So a sentence is highlighted (background color or text color changes) and the synced audio (not a computer voice but a recorded audio clip) plays. How do I do it? Are there readymade software available (on mac preferably) to achieve this? I'd appreciate any help. Thanks ...

python 3.x speech module

Hi, Is there pyTTS or some kind of speech module for python 3.0? I can't seem to find it anywhere and I'd really like to try it out. ...

Speech Indexing

Can Microsoft SAPI or another technology be used to index speech in a wav file based on time so that based on a searched phrase a specific time index into a wav file can be played? ...

Microsoft speech api 5.1 GetVoices returns voices that don't exist on Windows 7.

I'm migrating from XP to Windows 7 64 bit. My app which I compiled on my XP machine works properly on XP. However when I run the exe on my W7 machine, the list of voices returned by GetVoices is as follows: Microsoft Anna Microsoft Mary Microsoft Mike Sample TTS Voice. Checking the W7 Speech Properties dialog shows that only Microsoft...

Run Microsoft.Speech over IIS?

Hello, I have an app that uses Microsoft.Speech to recognize speech in a WAV file. It works perfectly when run locally as a console app but barfs when executed by IIS. Assuming I have the following installed on WinServer 2008 with .NET 3.5+: Microsoft Speech Platform - Software Development Kit (SDK) (Version 10.1) Microsoft Speech Pl...

Speech recognition in Python

Hi every one. I found the speech module and i can get my computer to say the stuff i write. But the problem is when i try out the example code from here: http://pypi.python.org/pypi/speech/0.5.1 It gives me an error and can't do it. This is the error i get: Traceback (most recent call last): File "<pyshell#1>", line 1, in <module> resp...

transcription with MS Speech Recognition server API

As we all know by now loading dictation grammars is not supported in the server version of MS speech API (Microsoft.Speech). Q1: Is there a way to get around that? Q2: One of the ideas I thought of would be to build a grammar based on a history of the conversations (chat room for instance) that people had on a particular topic. The so...

Microsoft Speech SDK buying Voices and different Languag

Hi Everyone, I need to know that how many languages the Microsoft Speech SDK support, I need to speak out text in different Languages, I am not sure if they support all the cultures or I need to buy the license for the same. Thanks. ...

getting started with speech recognition and speech synthesis

Hello, i want to get started with speech recognition and speech synthesis in http://stackoverflow.com/questions/3865351/prototype-based-on-speech-recognition somebody told me to use microsoft speech server (sdk and so on) when i have this, how do i programm an application, and with which programming language (development enviroment?)? ...

ISpRecoGrammar::IsPronounceable in PHP?

I was trying to track down something that could test a string for "Pronounceability" and though I actually doubt there's anything that might be freely available. I was actually a bit surprised to find that Microsoft has a library. http://msdn.microsoft.com/en-us/library/ms718902(VS.85).aspx This got me thinking, maybe it does exist els...

HOW TO CONVERT TEXT TO SPEECH USING FREETTS 1.2.1

import com.sun.speech.freetts.; import java.util.; public class Demofreetts { private String speaktext; public void doSpeak(String speak, String voice) { speaktext = speak; try { VoiceManager voiceManager = VoiceManager.getInstance(); Voice voices = voiceManager.getVoice(voice); Voice s...

How to create speech recognition plugin to add language support in Android

I saw this class http://developer.android.com/reference/android/speech/RecognitionService.html but there is no sample how to extend it so I can make the plugin to support my own language. My idea to sample the sound and send it through web service available at my lab then the processed sound will be returned as text. Thanks for help......