Questions tagged [speech-recognition]
Converting human voice into text
20 questions
1
vote
0
answers
114
views
speech recording and translate
I have a problem with converting from "wav" to "flac".
Command:
arecord -D plughw:0,0 -f cd -t wav -d 0 -q -r 16000 | flac - -s -f --best --sample-rate 16000 -o daveconroy.flac
...
1
vote
1
answer
245
views
How to manually begin/end speech recognition with X11?
Having found speech recognition software that works well (see this question),
I'm still left with needing integration, in my case, an easy way to activate it.
The outcome I'm looking for is:
Press a ...
4
votes
3
answers
2k
views
What are some current transcription or dictation software packages for Linux?
The Mozilla deepspeech project is interesting, but perhaps not sufficiently sophisticated. My results, at least, were underwhelming.
Online transcription or dictation services are fine, but an ...
1
vote
0
answers
306
views
Feedback on voice-recognition software for Linux
I'd like to get some feedback on any of the voice recognition software that is available for Linux. Free or paid..
That can type on any program and have enter key and right mouse click. I'm currently ...
4
votes
1
answer
318
views
Detect simple voice commands
I would like to detect simple words or phrases from my microphone and perform actions based on those phrases. I've looked into Python libraries and Google text-to-speech but these seem like extreme ...
1
vote
0
answers
1k
views
Error while trying to run a python program
Error occurs when Trying to run a python with speech recognition and py audio..
ALSA lib pcm_dsnoop.c:641:(snd_pcm_dsnoop_open) unable to open slave
ALSA lib pcm_dmix.c:1089:(snd_pcm_dmix_open) ...
0
votes
1
answer
251
views
Kali - problem with kaldi/egs/voxforge/s5 run.sh
I try to launch run.sh but it fails.
Does anyone know how to fix it?
Text from terminal after launching run.sh:
There was an error running the SLURM sbatch command.
The command was:
'/usr/bin/...
7
votes
3
answers
2k
views
Comfortable offline speech recognition software for Linux?
I'm looking for an offline speech recognition software for Linux which can handle also German language and which is easy to use and configure.
I already tried CMU Sphinx and a few more others, but ...
1
vote
0
answers
261
views
Native speech recognition software for Linux [duplicate]
I am looking for a user friendly speech-to-text software to run offline on linux.
Simon needs a dictionary and training, I need a full dictation-able software, speechpad needs internet access, julius ...
1
vote
0
answers
70
views
Use whole dictionary file with Julius or return null
I have successfully set up Julius to work with my own grammar and .voca files.
The problem I have is that it always returns a suggested response, even though the phrase uttered may not sound like ...
125
votes
13
answers
89k
views
Is there any decent speech recognition software for Linux?
The short version of the question: I am looking for a speech recognition software that runs on Linux and has decent accuracy and usability. Any license and price is fine. It should not be restricted ...
3
votes
2
answers
6k
views
Redirect Output of Pocketsphinx_continuous to a file
I have an ugly command:
pocketsphinx_continuous -samprate 48000 -nfft 2048 -hmm /usr/local/share/pocketsphinx/model/en-us/en-us -lm 9745.lm -dict 9745.dic -inmic yes
Breakdown: It listens for any ...
2
votes
1
answer
283
views
How can I run speech to text and save the result in a variable?
I would like to speak into my computer's microphone, have what I say converted to text and then have that available as a shell variable.
Is this possible? I thought I might do it using Google's ...
3
votes
3
answers
7k
views
Running a C++ compiled program in the background and sending input whenever needed
I have a compiled program written in C++ for a UNIX environment which has this kind of structure:
int main(){
...
LoadEngine()
...
while(1){
std::cin >> buffer;
...
ExecuteFunction(...
1
vote
1
answer
4k
views
Unable to use python speech_recognition lib Microphone class due to ALSA
I am attempting to write a speech recognition program for the raspberry pi, however I am facing some issues using python's speech_recognition library.
From the error messages (posted below) I think ...