speech-to-text

android things:Use Speech to text in Raspberry Pi 3 using android things

会有一股神秘感。 提交于 2020-01-14 10:29:42
问题 im using below code for speech to text for Raspberry Pi3 Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH); intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, RecognizerIntent.LANGUAGE_MODEL_FREE_FORM); intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE, "en-US"); try { startActivityForResult(intent, RESULT_SPEECH); } catch (ActivityNotFoundException a) { a.printStackTrace(); } But code not works it gives exception as device does not support Speech to text Is there any way

x-webkit-speech is deprectated. A JS replacement for simple speech input for <input>?

本秂侑毒 提交于 2020-01-09 19:04:57
问题 I noticed this warning in Chrome devtool's console: The x-webkit-speech input field attribute is deprecated. Please use the JavaScript API instead. So what's the best JS API replacement for simple speech input on input fields? Perhaps there exists a drop-in JS module that will handle it for me? 回答1: Answering my own question: Just made a Github project for this purpose: https://github.com/Daniel-Hug/speech-input 回答2: There is a JavaScript SpeechRecognition API that does text-to-speech and

x-webkit-speech is deprectated. A JS replacement for simple speech input for <input>?

杀马特。学长 韩版系。学妹 提交于 2020-01-09 19:01:04
问题 I noticed this warning in Chrome devtool's console: The x-webkit-speech input field attribute is deprecated. Please use the JavaScript API instead. So what's the best JS API replacement for simple speech input on input fields? Perhaps there exists a drop-in JS module that will handle it for me? 回答1: Answering my own question: Just made a Github project for this purpose: https://github.com/Daniel-Hug/speech-input 回答2: There is a JavaScript SpeechRecognition API that does text-to-speech and

pyspeech (python) - Transcribe mp3 files?

点点圈 提交于 2020-01-09 11:14:10
问题 I'd like to transcribe mp3 (speech-to-text) using the pyspeech API. I don't know if this is possible, though. Is it? How? 回答1: pyspeech seems to be merely a python interface to the regular Windows speech APIs. Most likely you'd create some method of treating mp3 playback as an audio source for that speech API to listen to. 回答2: I don't know about pyspeech, but if it is a Python wrapper around the Microsoft speech APIs, then some other posts may be helpful. Microsoft Speech engines do not

pyspeech (python) - Transcribe mp3 files?

。_饼干妹妹 提交于 2020-01-09 11:13:27
问题 I'd like to transcribe mp3 (speech-to-text) using the pyspeech API. I don't know if this is possible, though. Is it? How? 回答1: pyspeech seems to be merely a python interface to the regular Windows speech APIs. Most likely you'd create some method of treating mp3 playback as an audio source for that speech API to listen to. 回答2: I don't know about pyspeech, but if it is a Python wrapper around the Microsoft speech APIs, then some other posts may be helpful. Microsoft Speech engines do not

How to use Androids' speech to text with audio sample file

三世轮回 提交于 2020-01-09 11:06:53
问题 I was able to run an example project which uses Android speech to text using this code: private void startVoiceRecognitionActivity() { Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH); intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, RecognizerIntent.LANGUAGE_MODEL_FREE_FORM); intent.putExtra(RecognizerIntent.EXTRA_PROMPT, "Voice recognition Demo..."); startActivityForResult(intent, REQUEST_CODE); } This works fine, but I was wondering, is it possible to use speech

Sphinx 4 Failed to align audio to trancript

吃可爱长大的小学妹 提交于 2020-01-05 04:18:07
问题 I am following Acoustic Model Adaption using Sphinx 4 with the following wav files. Here is the result I get when using bw -hmmdir wsj -moddeffn wsj/mdef -ts2cbfn .cont. -feat 1s_c_d_dd -cmn current -agc none -dictfn vn.dic -ctlfn lisp.fileids -lsnfn lisp.transcription -accumdir . utt> 0 lisp_0001 53INFO: cmn.c(175): CMN: 73.43 2.89 -0.3 4 -1.85 -0.98 -0.52 0.33 0.67 -0.77 -0.56 0.18 -0.50 -0.30 0 28 1 ERROR: "backward.c", line 421: Failed to align audio to trancript: final state of the

Is “System.Speech.Recognition” namespace available in mono framework?

。_饼干妹妹 提交于 2020-01-04 05:16:09
问题 I am building one speech recognition app using classes available in .net framework. My client wants to run this application in Linux using mono framework. I tried to search whether this particular namespace and its related classes are available and working in mono framework too but couldn't find 100% correct answer. So I have two questions in my mind : Whether this System.Speech.Recognition namespace is available in mono? How to check if particular namespace/feature/class present in .net is

Sample example for Speech to Text in iOS

那年仲夏 提交于 2020-01-02 04:31:10
问题 I am new to iOS programming.Can you please tell me how to convert the speech to text in iOS?Is there any API called?Please suggest me how to proceed? 回答1: There are several libraries for this kind of conversion - I host two of those on GitHub: libsprec (this uses the Google speech recognition APIs, so it supports multiple languages) and VocalKit which uses the high-quality opensource PocketSphinx library (however, it currently supports English only). OpenEars uses PocketSphinx as well. There

what to do for voice application for ios?

只愿长相守 提交于 2019-12-30 14:26:05
问题 how to make Vlingo like application? is there any api that can be used for making apps for ios? Please provide some guide line or any tutorials or an help or comment will be appreciated Thanks in advance i also like to know how the talking ben the dog and talking tom cat is working as we talk it repeats it in funny voice. how it is possible? 回答1: For Speech Recognition on iOS, there have been many similar questions. Please see Speech to text Conversion.? or Text-to-speech (voice generation)