Speech is the vocalized form of human communication.

learn more… | top users | synonyms

-1
votes
1answer
10 views

Audio Mining and speech processing [closed]

We are intending to do a project on audio mining.It basically takes input from the user and processes the data input and gives desired results(but only on numbers).We are trying to design an android ...
0
votes
0answers
18 views

Android voice modulator

I want to create an android app that inputs the user's voice and modulate it in real-time. Therefore, I wanted to ask if there are any libraries or functions to input the speech/voice and change its ...
1
vote
2answers
40 views

Synthesize speech from text in web app

How can one synthesize speech in a web app? Is there a way using the HTML5 Web Speech API? For example, if I wanted to synthesize the sentence 'A quick brown fox jumps over the lazy dog', how could ...
0
votes
0answers
34 views

Parse SRGS document (from XML)

I would like to parse a SRGS document which is located in a XML file. Is there a efficient way to read out the content of the file in C#? Also I want to edit the SRGS document. EDIT: I found a first ...
0
votes
0answers
26 views

Decoding Googles Continuous Speech Recognition Result

I am working on a C# version of Googles continuous speech recognition. All is going well however i am suck decoding my result. I have a html output from the output request stream and i have what it is ...
0
votes
1answer
12 views

Speech recognition in a hybrid mobile app?

I'm looking to build a cross platform app, ideally using an HTML5 framework such as Trigger.io. However, I'm wondering what would be the best way to implement speech recognition. According to my ...
0
votes
0answers
21 views

Sphinx 4 Keep mic recording and testing until keyword is said

I have been trying for two days and I cant figure it out. I need Sphinx to keep the mic recording and contently test the input and when a keyword is said like computer. I can get it to test once and ...
-1
votes
0answers
15 views

C++ Text to Speech API [closed]

I need a C++ text to speech API. Currently I am working with SAPI but I would like to use it only for speech to text, because the voices it got are really robotic. I looked over Festival from ...
-5
votes
0answers
46 views

change sound track to other voices like woman, child, etc for voice changer in android [closed]

audioTrack = new AudioTrack( AudioManager.STREAM_MUSIC, sampleFreq, AudioFormat.CHANNEL_CONFIGURATION_MONO, AudioFormat.ENCODING_PCM_16BIT, bufferSizeInBytes, ...
0
votes
1answer
25 views

Keep speech on android [duplicate]

So I'm building an application on my phone that will let it do commands based on what I say but the problem is that you always will have to startup the application or press A button in the ...
1
vote
1answer
73 views

An unhandled exception of type 'System.FormatException' occurred in Microsoft.Speech.dll

I have just tried to use custom pronunciation using a PLS lexicon from thr link http://msdn.microsoft.com/en-us/library/hh378403(v=office.14).aspx. My .pls file is as following Additional ...
1
vote
1answer
110 views

Jelly Bean Beep In Speech Recognition

I've been looking through different threads and haven't found anything that has worked for me on the problem that I am experiencing. I'd like to get rid of the "beep" sound that you get when speech ...
-1
votes
0answers
34 views

Speech Recognizer Listens For More Than 5 Seconds

I'm working on an app where the user is asked to talk and based on what is said it does a different function. I'm working on jelly bean 4.2.2 and when the user is asked to speak the voice may not be ...
0
votes
0answers
6 views

Algorithm to change voice to another reference voice? [duplicate]

I have voice1 and voice2 (both human). Is it possible to make one voice "sound" like other ? Are there any algorithms that may be useful here ?
1
vote
1answer
57 views

how to pass language in speech recognition on android apps?

I've been working on speech Recognition API in android and found out that the speech results vary allot when the language settings are changed , is there a way to set it programmatically ? or is there ...
1
vote
0answers
130 views

Jelly bean offline speech recognition can it be used it in system (PC) with emulator?

I just was wondering is it possible to use the android jelly bean's offline speech recognition in the system? like I install the android virtual emulator then install jelly bean download offline ...
0
votes
1answer
25 views

Lookup word in dictionary by voice

I have 1000 words in 3 different dialects for the Gaelic language. I have each word in the form of three mp3 recordings. I wish to have functionality in my application, be it a website or a mobile ...
2
votes
1answer
53 views

How to make MS speech API more accurate when recognizing only two commands

I am trying to use Speech API 5.1 in command and control mode in a c# application. I am using it inProc and have only two commands in the grammer. The problem I am facing is related to the accuracy of ...
0
votes
0answers
33 views

API for audio fingerprinting for speech ioS

Any suggestions/pointers on finding an API for audio fingerprinting for iOS for using with syllables and single phonemes.
0
votes
1answer
31 views

error when load file .dat in matlab

I have problem when I try to load file .dat in Matlab My file .dat about speech data % Read data file "orig.dat" with sampling rate of 8 kHz % create an example sound fs=8000; t=0:1/fs:3; x = ...
0
votes
1answer
38 views

Access violation exception in system.speech.synthesis

When using system.speech.synthesis like this: using (_speech) { _speech.SelectVoice("Anne"); _speech.SpeakCompleted += OnSpeakCompleted; _speech.Rate = Convert.ToInt32(Rate); ...
0
votes
0answers
28 views

Android Speech Mashup Search in a txt file

I'll try to explain my question as clear as possibile. I would like to use AT&T speech mashup technology to build a grammar and use it to make a "Search and Display Information" app. The fact ...
0
votes
0answers
39 views

how can I use System.speech to recognize English

It's weird that my program can only recognize Chinese. Btw, I'm in China. Even if I install the English version of visual c# 2010, it still can just recognize Chinese. How to change the language ...
0
votes
1answer
45 views

Wait for tts completion and wait for voice recognition to complete. Android App

I have many sections of code that utilize TTS and voice recognition. However when there are multiple tts in a row or multiple voice recognition in a row, it either crashes or skips them entirely. ...
0
votes
0answers
41 views

How can the feature extraction for emotion detection be done? [closed]

I am trying to implement "Audio Video Emotion Detection". For the same I tried to extract facial features using AAM(Active Appearance Model ), but I have not been able to extract feature. Please help ...
0
votes
1answer
36 views

Kinect Speech not getting Recognizer

I don't know how many of you have experience with the Kinect, but I posted this over on MSDN forums nearly two weeks ago and got no help.I've been racking my brain trying to get this to work maybe ...
10
votes
1answer
307 views

Fastest Speech recognition library C++ [closed]

I know its a general question topic, but still i want to know whats the fastest speech recognition library in C++? Currently I am using Microsoft SAPI with kniect. It works fine and recognizes words ...
0
votes
1answer
75 views

HTK: HVite can't find hmm

I want to build a speech recognition system using HTK and therefore downloaded a pre-trained acoustic model with tied states from http://www.keithv.com/software/htk/us/ (Training data: WSJ SI-84). ...
1
vote
0answers
44 views

Choose a Sp voice character

I am using SpeechLib namespace to synthesis two voices. I downloaded two speaker voices, one in Spanish(Hilda) and one in Chinese (han-han. The problem is I don't know how to choice which speaker ...
0
votes
2answers
222 views

Pocketsphinx Android Demo Error ndk-build on cygwin

I tried many solutions posted here in stackoverflow and some other forums and googled till I am totally frustrated. I am using Windows 8 with cygwin. I try to get the PocketSphinxAndroidDemo run, ...
1
vote
1answer
67 views

Porting a C++ library - openSMILE to Android

I want guidance on how to port the opensource openSMILE http://opensmile.sourceforge.net/ library which is in C++ to Android. Specifically how should I use SWIG to create the caller code in JAVA and ...
0
votes
0answers
34 views

Using Android-NDK to port openSMILE to Android [closed]

I am a total newbie to using the Android-NDK. I would like to port the openSMILE feature extractor which is written in C++ to Android. I have looked at how pocketsphinx was ported to Android. I would ...
0
votes
0answers
102 views

Microsoft.Speech.Recognition recognize dictation

I`m using Microssoft.Speech.Recognition to recognize some speech. I have SDK v11 installed and it works pretty good until I try to AppendDictation to GrammarBuilder: ...
1
vote
0answers
36 views

Make a custom UIView perform the Speak action

In most Apple-provided controls, you can tap and hold on the text, and get the copy/paste menu, which usually has "Speak" at the end. I have a custom control (UIView descendant) I want to do the same ...
0
votes
0answers
60 views

Using SendKeys with Speech Recognition

I'm working on a speech recognition project. I've completed the mouse controls (scrolling, clicks, etc). Now I'm building the keyboard part but my program doesn't seem to work. I don't get any errors, ...
1
vote
1answer
96 views

speech input in chrome 25 on Android

On a PC, running chrome 25 (non beta) shows me a microphone icon, clicking on it prompts for input. When I stop talking, my alert call is executed. All good. On a Galaxy Note smart phone running ...
0
votes
1answer
451 views

Android Bluetooth Headset Speech Recognition

ok, i will use android speech recognition, but android only use the device microphone not the bluetooth one. what can i do? permissions of bluetooth and bluetooth_admin are set. bluetooth headset is ...
0
votes
1answer
104 views

Kinect Speech Recognition

Modeled on the example from Kinect SDK private static RecognizerInfo GetKinectRecognizer() { foreach (RecognizerInfo recognizer in SpeechRecognitionEngine.InstalledRecognizers()) ...
1
vote
0answers
107 views

Can we use the Microsoft Speech API's speech to text functionality in MATLAB?

Can we use the Microsoft Speech API's speech to text functionality in MATLAB? Here is the code for text to speech.How can we use the functionality of SAPI is speech to text? For tts: textIn = ...
0
votes
3answers
90 views

api showing context of words in sentences

Hello I am curious about API's for determining the context of words in sentences Ever since I saw the emergence of sentiment aggregators - scripts which tried to assess the sentiment of a sentence - ...
0
votes
1answer
74 views

NSSpeechRecognizer delegate never called

I'm trying to get speech recognition working on a MacBook (OS 10.8.2) but I never get any callbacks on the delegate method. Using XCode 4.6 with ARC, here is my simple test code. I do get the ...
0
votes
0answers
57 views

naudio for real time analyzes

I need to make an application in c# which can compute and visualize some parameters of human speech (base frequency, jitter, etc). The point is that it has to be done in real time: someone talks into ...
0
votes
0answers
38 views

I can't run SREC on my android device. Did I build it in wrong way?

I am trying Nuance Speech engine in android open source. It is under $(My_Android_ASOP)/external/srec from its doc, there are 2 command files to run the test: SRecTest and SRecTestAudio first, I ...
-1
votes
2answers
322 views

Are there free speech to text API's for Javascript? [closed]

I would like to create a web interface which would utilize a speech to text feature. Does anyone know of any speech to text api's which can be written in Javacsript? Thanks in advance!
1
vote
1answer
83 views

Internetless vocal trigger recognition

Speech recognition on handheld devices is usually triggered by a press of a button. How do I go about triggering speech recognition without that? My Raspberry PI based device intentionally does not ...
7
votes
3answers
777 views

Text-to-speech in PHP with Google Translate

I am trying to convert words to speech .. Untill now I have tried this: <?php $text = "Hello this is a test for voice api of google"; // Name of the MP3 file generated using the MD5 hash ...
2
votes
0answers
350 views

Dynamic Time Warping - Comparing Values

Apologies if this is in the wrong forum. Ok, so I'm trying to compare two different speech signals and I have come into a problem. Here goes: I have split the signal into blocks, and I have computed ...
0
votes
0answers
85 views

Online free speech recogniser and API

I want to develop some web-based interactive activities for kids, and I want to use speech recognition as one kind of input. My question is not on how to record a sound in a browser, many other ...
0
votes
0answers
50 views

Where can I get a pronunciation/phoneme dictionary that splits the words by phoneme?

CMUdict provides mappings from whole words to a list of phonemes for that word, but I need a mapping between each words' characters and the corresponding phonemes.
1
vote
2answers
131 views

Questions on using LAME in C

I am trying to write a pcm to mp3 conversion program using Lame. While the pcm data does get converted to an mp3 file, the output is very squeaky. Before I post questions, the following is the code I ...

1 2 3 4 5 6