Questions tagged [voice-recognition]

Voice Recognition means identification of the person talking and is frequently misapplied to mean "Speech Recognition" - identification of what is being said.

1464 questions
17
votes
1 answer

Android voice recognition API offline

Can someone please help me? I am developing an application with voice recognition via RecognizerIntent. Which Android version brought in officially the offline recognition available to apps by API? Is there any statement about it? By what I read…
Androrider
  • 1,050
  • 2
  • 13
  • 20
17
votes
2 answers

Do Chrome extensions support WebSpeech API?

Do google Chrome extensions support Chrome's Web Speech speech recognition API? I have included some javascript to create a speech recognition object, but when I launch my extension, I am not prompted for microphone access. This is not an issue with…
16
votes
4 answers

Angular2: Web Speech API - Voice recognition

After reading the documentation of webkitSpeechRecognition (voice recognition in Javascript) I tried to implement it in Angular 2. But when I did this: const recognition = new webkitSpeechRecognition(); TypeScript say this error: [ts] Cannot find…
16
votes
2 answers

Integrate Google Voice Recognition in Android app

I want to introduce a new feature into my app: permanent voice recognition. First of all I followed these posts: Voice recognition Speech recognition in Android Offline Speech Recognition In Android (JellyBean) and more others, plus other posts…
16
votes
1 answer

Reading and processing WAV file data in C/C++

I'm currently doing a very very important school project. I need to extract the information of a WAVE file in C/C++ and use the information to obtain the LPC of a voice signal. But, in order to do that, I need to do some pre-processing to the…
Luxk
  • 185
  • 1
  • 1
  • 6
15
votes
6 answers

Android RecognitionListener: onResults being called twice

I have a project using RecognitionListener written in Kotlin. The speech-to-text function was always a success and never presented any problems. Since last week, it's onResult function started to be called twice. No changes were made on the project.…
15
votes
3 answers

Is there a fast way to find (not necessarily recognize) human speech in an audio file?

I want to write a program that automatically syncs unsynced subtitles. One of the solutions I thought of is to somehow algorythmically find human speech and adjust the subtiles to it. The APIs I found (Google Speech API, Yandex SpeechKit) work with…
Ilya Peterov
  • 1,975
  • 1
  • 16
  • 33
14
votes
4 answers

Sound recognition in Android

I want my Android app to recognize sound. For example I want to know if the sound from microphone is a clapping or knocking or something else. Do I need to use math, or can I just use some library for that? If there are any libraries for sound…
Elephant
  • 675
  • 1
  • 8
  • 18
14
votes
1 answer

Voice recognition for alQuran Arabic

How can we compare two audio files, or voice recorder files, according to Al-Quran. Al-Quran has special pronunciation compared to Arabic pronunciation. Is it possible to do the comparison between user voice and the way Al-Quran is pronounced? I…
Ticherhaz FreePalestine
  • 2,738
  • 4
  • 20
  • 46
14
votes
1 answer

RecognizerIntent.ACTION_GET_LANGUAGE_DETAILS in Oreo

In most Android devices, the RecognitionService will be supplied by Google's native 'Now/Assistant' application. Up until Android Oreo, I was able to query the languages supported by the Google Recognizer with the following simple code: final Intent…
14
votes
4 answers

Why did RecognitionListener stop working in JellyBean?

For everyone using Android's voice recognition API, there used to be a handy RecognitionListener you could register that would push various events to your callbacks. In particular, there was the following onBufferReceived(byte[]) method: public…
Adrian Petrescu
  • 16,629
  • 6
  • 56
  • 82
13
votes
3 answers

voice recognition in mono

Is there any way to add voice recognition feature to mono application. There are a System.Speech (in .net) and Microsoft.Speech (in MS Speech Platform) namespaces, but I can't find any in Mono. So how is it possible to add speech recognition…
kalan
  • 1,752
  • 4
  • 20
  • 35
13
votes
2 answers

Voice to Text conversion R

Is there any way to convert user speech to text in realtime using R ? Just curious. Also it will be great if anybody could share some examples regarding what they have done in this domain.
bison2178
  • 747
  • 1
  • 8
  • 22
13
votes
4 answers

Muting the Google voice recognition beep sound

I have a test app that uses Google voice in a continuous manner and it plays the beep sound every time Google recognition service is called. I am trying to get rid of the beep sound. I have read threads of muting the music stream but that would not…
13
votes
5 answers

bind to recognition service failed

i am testing VoiceRecognition.i have searched and didn't find any feasible answer. here is the code. import android.content.Intent; import android.speech.RecognitionListener; import android.speech.RecognizerIntent; import…
1
2
3
97 98