voice-recognition

Acoustic fingerprint code for iOS?

旧城冷巷雨未停 提交于 2019-12-06 05:37:05
问题 I've started looking on the subject of Acoustic Fingerprint (http://en.wikipedia.org/wiki/Acoustic_fingerprint) for a pet project of mine for the iOS and I was wondering if there are: Any opensource libraries or source code for the iOS that handle this? Assuming I'm a veteran jack of all trades coder, is it very problematic to implement this myself if there is no open-source versions? Will the Accelerate DSP library in iOS able to handle such a task? Thanks 回答1: Not of my knowledge No problem

Android catch Bluetooth HFP's Activate Voice Recognition

别来无恙 提交于 2019-12-06 03:40:49
When Bluetooth hands free device connected to mobile phone, if device sends an AT command AT+BVRA to enable voice recognition, the mobile phone launches the default voice recognition app if it supports. My android phone (OS : 4.1.2, Model : Samsung Galaxy Core I8262) launching S Voice app for recognition. I think if my phone has more recognition activities, it may show list to select one, if no default set. I never observed this case. My question, Is there any way to catch AT+BVRA command received ? If anybody know about this, please give your valuable suggestions. To receive AT+BVRA on

Android offline voice recognition using PocketSphinx

ε祈祈猫儿з 提交于 2019-12-05 22:11:28
Trying to do Voice Recognition without internet using PocketSphinx referrring to the site, http://swathiep.blogspot.com/2011/02/offline-speech-recognition-with.html Followed the same as what it is. Run the program in emulator,since it will not support audio, get crashed(not Force Close).but while trying to run this on phone,the application just opened and closed(not Force Close).Do need to add any more libraries to run this application????????? pls reply fast anyone........ Latest documentation on pocketsphinx on android is provided on CMUSphinx wiki . Basically you need to pull the demo from

HotwordDetector using VoiceInteractionService in android

*爱你&永不变心* 提交于 2019-12-05 21:35:12
问题 I am creating the voice recognition service like "Ok Google" with custom command. For this I have used the VoiceInteractionService and I refered the code from here. Also, I am getting the STATE_HARDWARE_UNAVAILABLE error in onAvailabilityChanged . public class VoiceCommandService extends VoiceInteractionService { private static final String TAG = "AlwaysOnHotwordDetector"; Locale locale = new Locale("en-US"); protected SpeechRecognizer mSpeechRecognizer; protected Intent

Text to speech not working on android device

天大地大妈咪最大 提交于 2019-12-05 19:33:52
Below is my code.I am unable to hear the voice in my kitkat device.Toast is appearing but voice is not playing.I am following this tutorial https://www.tutorialspoint.com/android/android_text_to_speech.htm package com.example.insert; import android.os.Parcelable; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.app.Activity; import android.os.Bundle; import android.speech.tts.TextToSpeech; import android.view.View; import android.widget.Button; import android.widget.EditText; import java.util.Locale; import android.widget.Toast; import android.util.Log;

Voice Biometrics for Android [closed]

淺唱寂寞╮ 提交于 2019-12-05 13:00:38
Closed. This question is off-topic . It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . i am planning to build a voice authentication system for android devices. Simply meaning instead of the login screen where you have to type your password or draw the pattern, you only only need to say one word such as "Login" and the phone authenticates you and automatically unlocks the phone. I was initially planning to implement it on windows but i am afraid that windows might not support voice bio metrics. So

Java voice recognition for very small dictionary

*爱你&永不变心* 提交于 2019-12-05 05:19:16
I have MP3 audio files that contain voicemails that are left by a computer. The message content is always in same format and left by the same computer voice with only a slight variation in content: "You sold 4 cars today" (where the 4 can be anything from 0 to 9). I have be trying to set up Sphinx, but the out-of-the-box models did not work too good. I then tried to write my own acoustic model and haven't had much better success yet (30% unrecognized is my best). I am wondering if voice recognition might be overkill for this task since I have exactly ONE voice, an expected audio pattern and a

SpeechRecognizer not Hearing After First Result

99封情书 提交于 2019-12-05 04:31:17
问题 I am using SpeechRecognizer and RecognizerIntent in Android to implement speech recognition. My aim is to restart listening to speech after my speech recognizer displays the results on the screen. For that purpose, I am using the following code. The problem is, the first time runs fine and displays the results but after it starts listening for the second time (called from onResults method), it does not hear what is being spoken for some reason. Then it gives a ERROR_SPEECH_TIMEOUT error,

How do I use Android SpeechRecognizer as a service?

扶醉桌前 提交于 2019-12-04 23:10:55
问题 I am trying to run Android voice recognition as a service. I can verify that the onCreate() and onStart() methods of the service are called, but no callbacks to the speech recognition methods are called, despite the fact that I have set up the SpeechRecognizer object correctly. The speech recognition seems to work when it is done in an activity instead of a service. How do I make it work as a service? Is this a manifest issue? package net.viralpatel.android.speechtotextdemo; import java.io

Voice recognition fails to work when the voice is under recording

烈酒焚心 提交于 2019-12-04 21:45:19
问题 I am working on a function that when a button is pressed, it will launch voice recognition and at the same time will record what the user says. Codes as follows: button_start.setOnTouchListener( new View.OnTouchListener() { @Override public boolean onTouch(View arg0, MotionEvent event) { if (pressed == false) { Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH); intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,RecognizerIntent.LANGUAGE_MODEL_FREE_FORM); intent.putExtra