speech-to-text

Text-to-speech (voice generation) and speech-to-text (voice recognition) APIs?

∥☆過路亽.° 提交于 2019-11-26 14:22:51
Is there a comprehensive list of known APIs for desktop or browser environments? Michael Levy I'll rehash and update an answer from Speech recognition in C or Java or PHP? . This is by no means comprehensive, but it might be a start for you From watching these questions for few months, I've seen most developer choices break down like this: Windows folks - use the System.Speech features of .Net or Microsoft.Speech and install the free recognizers Microsoft provides. Windows 7 includes a full speech engine. Others are downloadable for free. There is a C++ API to the same engines known as SAPI.

SpeechRecognizer causes ANR… I need help with Android speech API

天涯浪子 提交于 2019-11-26 12:12:18
问题 EDIT : I should have mentioned this already, but I\'m running this code in a service. The entire app is turned on/off by a widget button and has no activity. Update : I tried attaching the SDK sources to the project so I could get a more precise idea of where the failure was occurring, but from the looks of it, only public APIs are included, which seems to make them a lot less useful... can anyone suggest at least a debugging approach for solving this issue? I\'m kind of stuck. I\'m trying to

record/save audio from voice recognition intent

二次信任 提交于 2019-11-26 11:20:35
Before asking this question, I checked all stackoverflow other threads related to this issue without any success, so please, don't answer with links to other threads, :) I want to save/record the audio that google recognition service used for speech to text operation (using RecognizerIntent or SpeechRecognizer). I experienced many ideas: onBufferReceived from RecognitionListener: I know, this is not working, just test it to see what happens and onBufferReceived is never called (tested on galaxy nexus with JB 4.3) used a media recorder: not working. it's breaking speech recognition. only one

Speech to Text from own sound file

|▌冷眼眸甩不掉的悲伤 提交于 2019-11-26 11:11:27
问题 As you probably know, implementing speech-to-text is pretty easy with the Android API. All you have to do is just call up the API\'s intent and it will return text for you. My case is a bit different, I have a prerecorded 3GPP sound file that I\'ve recorded from the user and is saved on the SD card. I want to know if it\'s possible to transcribe that into text like any other speech recognition. Does the speech-to-text API allow for uploading you\'re own sound files to be processed? Or is this

Is there a way to use the SpeechRecognizer API directly for speech input?

一笑奈何 提交于 2019-11-26 10:36:22
问题 The Android Dev website provides an example of doing speech input using the built-in Google Speech Input Activity. The activity displays a pre-configured pop-up with the mic and passes its results using onActivityResult() My question: Is there a way to use the SpeechRecognizer class directly to do speech input without displaying the canned activity? This would let me build my own Activity for voice input. 回答1: Here is the code using SpeechRecognizer class (sourced from here and here): import

iPhone App › Add voice recognition? [closed]

限于喜欢 提交于 2019-11-26 10:30:19
I'd like to build an app that uses voice recognition. I've seen big companies like Google etc implement this feature, but I'm curious about doing it on a start-up level. Anyone looked into this? Are there any tools out there for us to do this? OpenEars looks promising... http://www.politepix.com/openears/ Based on Pocket Sphinx. JJ Rohrer If you start here at wikipedia, you'll get a good list engines ( http://en.wikipedia.org/wiki/Speech_recognition#Commercial_software.2Fmiddleware ) As I write this (June 24, 2009) it looks to me that are two viable open source solutions Pocket Sphinx ( http:/

SAPI and Windows 7 Problem

僤鯓⒐⒋嵵緔 提交于 2019-11-26 04:55:45
问题 I\'m trying to recognize speech with Windows 7 but it always recognizes a speech as a command or just says \"What was that?\". How I can get all speeches? CODE: SpeechRecognizer _speechRecognizer; public Window1() { InitializeComponent(); // set up the recognizer _speechRecognizer = new SpeechRecognizer(); _speechRecognizer.Enabled = false; _speechRecognizer.SpeechRecognized += new EventHandler<SpeechRecognizedEventArgs>(_speechRecognizer_SpeechRecognized); } 回答1: Perhaps you want to use the

record/save audio from voice recognition intent

本小妞迷上赌 提交于 2019-11-26 02:20:07
问题 Before asking this question, I checked all stackoverflow other threads related to this issue without any success, so please, don\'t answer with links to other threads, :) I want to save/record the audio that google recognition service used for speech to text operation (using RecognizerIntent or SpeechRecognizer). I experienced many ideas: onBufferReceived from RecognitionListener: I know, this is not working, just test it to see what happens and onBufferReceived is never called (tested on

Offline Speech Recognition In Android (JellyBean)

家住魔仙堡 提交于 2019-11-25 23:36:51
问题 It looks as though Google has made offline speech recognition available from Google Now for third-party apps. It is being used by the app named Utter. Has anyone seen any implementations of how to do simple voice commands with this offline speech rec? Do you just use the regular SpeechRecognizer API and it works automatically? 回答1: Google did quietly enable offline recognition in that Search update, but there is (as yet) no API or additional parameters available within the SpeechRecognizer