110 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
2
votes
1
answer
3k
views
Trying to figure out "A resource failed to call close" warning in my Android app
I was getting this warning once in my logcat every time I tested my app..
W A resource failed to call close.
I used the following code I found online in my onCreate() method to throw an exception and ...
user avatar
user1933677
1
vote
0
answers
220
views
PocketSphinx is not listening
I would like to implement the library PocketSphinx in my Android project but I fail with it since nothing happens. It doesn't work and I don't get any errors.
This is how I tried it:
Added ...
0
votes
1
answer
115
views
Pocketsphinx for android install on windows
Where can I find a step-by-step solution for my problem? I saw the demo, I checked the tutorial. I couldn't find find jar or aar file. I've downloaded tar folder, I cannot run any files in there with ...
0
votes
0
answers
62
views
Android / PocketSphinx: listener goes in standby a while after screen goes off
I made a simple app that responds to vocal commands using PocketSphinx to understand commands and standard Google's library to speak, in a sort of conversation.
It's working well but I have a problem ...
1
vote
1
answer
164
views
Pocketsphinx android demo with arabic model doesn't work as the pc model
I'm working on pocket-sphinx android demo .. I have tried my model on the PC .. but on the mobile it is not as good as the PC .. I thought of modifing the code to insert an audio file instead of ...
0
votes
0
answers
312
views
Android command line sdkmanager tool not finding licenses for new packages
I have downloaded and unzipped the linux command line sdk and have downloaded the Android SDK Build-Tools 25.0.2 and Android SDK Platform 25 components as required by the Gradle build I am trying to ...
0
votes
0
answers
303
views
Why is the Pocketsphinx wakeup word detection getting worse over time?
I use Pocketsphinx for wakeup word detection in my Android app. After initializing pocketsphinx and after start listening via
private void setup() {
try {
final Assets assets = new Assets(...
0
votes
1
answer
381
views
how to use pocketsphinx in android for multiple keyword activation without going to menu
I want pocketsphinx to listen for certain keywords and do respective actions instead of going to the menu like their demo app. I have three keywords
private static final String KEYPHRASE1 = "good ...
1
vote
1
answer
221
views
PocketSphinx - getHypstr() returns empty for KeyphraseSearch after processRaw
Trying edu.cmu.sphinx.pocketsphinx with processRaw to detect a keyword.
I have setup the SpeechRecognizer's decoder directly with getDecoder().setKeyphrase(KWS_SEARCH,KEYPHRASE);
First calling ...
1
vote
1
answer
258
views
PocketSphinx - How to understand when getHypstr() returns empty yet getInSpeech() returns True?
Trying edu.cmu.sphinx.pocketsphinx with processRaw to detect silence.
Using the following config:
en-us.lm.bin language model
en-us-ptm acoustic model
cmudict-en-us.dict dictionary
also setting ...
1
vote
0
answers
82
views
When using processRaw how does InSpeech get updated?
Trying edu.cmu.sphinx.pocketsphinx with processRaw to detect speech.
Using the following config:
en-us.lm.bin language model
en-us-ptm acoustic model
cmudict-en-us.dict dictionary
also setting ...
1
vote
0
answers
132
views
PocketSphinx: How to recognize Keyword followed by dynamic word?
I have been working on PocketSphinx Android voice command project where the user can open application listed on their Android by use command "open xxx" (I made "open" as Keyword and xxx is application'...
0
votes
0
answers
85
views
pocketsphinx NullPointerException in onBeginningOfSpeech() but the object is not null
I'm using the below code to start listening on my device for voice commands but as soon as I call SpeechRecognizer.StartListening() I get a NullPointerException.
Here is the full error:
Java.Lang....
0
votes
1
answer
483
views
pocketsphinx android - returning same word for every different spoken word
I have downloaded the pocketsphinx-android-demo from Github and did some modifications for my own purpose.
I have created a new my-en-us.dict (dictionary) file for my app specific words and added ...
1
vote
1
answer
254
views
hypothesis parameter pocketsphinx
I use Pocketsphinx in my Android app. I recognize speech using addGrammarSearch (String name, File file). When there is noise around, then Pocketsphinx catches it and recognizes it as a word or phrase ...