speech-recognition

UnsupportedAudioFileException in LIUM Speaker Diarization

感情迁移 提交于 2019-12-11 09:58:31
问题 I'm running the LIUM 8.4.1 Jar with this command from the quickstart: java -Xmx2024m -jar ../diarization/lium_spkdiarization-8.4.1.jar --fInputMask=./pcd.wav --sOutputMask=./showName.seg --doCEClustering showName However, the program fails with the following Unsupported Audio File Exception. How does this error crop up and what am I missing to solve it? My set up has been to install cmusphinx4 from source, then download the lium jar. Diarization INFO | Diarization tuning {main() / 10}

Speech Recognition vs. Voice Commands in Windows phone

此生再无相见时 提交于 2019-12-11 09:54:19
问题 I trying to enable Cortana in my Win8 phone app. Anyway, from MSDN I saw there is speech recognition namespaces as well as voice commands. I couldn't understand correctly what are is the different between them. In addition, i'm running my app using the emulator (and not a real device) and I'm getting the following error "something wend wrong try again in a little bit" when i'm tryng to ask cortana one of my new voice commands. Can someone help me please? 回答1: You can view this link. Specially

SpeechRecognizer keeps getting ERROR_NETWORK

孤者浪人 提交于 2019-12-11 09:43:53
问题 I'm using SpeechRecognizer to convert voice to text, but I encounter a problem that SpeechRecognizer keeps getting Error_Network (like 80 percent possiblilty). Does anyone encounter this kind of problem. 回答1: Have A look on this and this. And Android Already Define this SpeechRecognizer . You Got this error because You are use some other network. Try to use google Default netowrk using setting. May it helps... 回答2: Are you using the internet while using the speech recognizer? If so , stop all

Android: Google Voice Recognition Server

前提是你 提交于 2019-12-11 09:39:14
问题 I am currently playing around with Google's Voice Recognition API for Android SDK. What I want to know is the URL for their voice recognition. You need a data connection to use the feature, so obviously they are parsing things server-side. Does anyone know this URL? 回答1: Okay, here's what I found, building off of this article. Here is a full TCP dump of the various HTTP and TCP operations that go into a voice search: POST /m/voice-search HTTP/1.1 Content-Length: 117 Content-Type: application

Does ASP.NET MVC 5 support speech recognition? [closed]

时光总嘲笑我的痴心妄想 提交于 2019-12-11 09:29:43
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 4 years ago . I want to know if ASP.NET MVC 5 supports speech recoginition. I want to code a login system with it. 回答1: ASP.net is a web framework for building websites with HTML, Javascript and CSS, it doesn't even work with sound at all. However, you can use HTML speech recognition API (works

Python speech recognition very slow

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-11 08:06:28
问题 I am currently developing a smart assistant program (basically it is just listening to what the user says and based on that does something with the code). It was working fine up until today, when I switched to my laptop. The program does not print out any errors, but it also doesn't print out what I said. I'm using the Python Speech Recognition library version 3.8.1. Does anybody know of an alternative for this library? If yes, please try to explain how I would use it 'on the fly' (without

C# SAPI - Recognizing phrases without pre-defined condition statements

∥☆過路亽.° 提交于 2019-12-11 08:00:42
问题 Scenario : I have 2 commands. 1) Search Google for "any word here" 2) Open application "any word here" Problem : Since the word after "Search Google for" can be anything, how am I suppose to know what am I going to write for my IF statements? With pre-defined sentences, I can do it easily like void Engine_SpeechRecognized (object sender, SpeechRecognizedEventsArgs e) { if (e.Result.Text == "Search Google Stackoverflow") { Search("Stackoverflow"); } } But since now it's not pre-defined, what

find Pitch-synchronous windowing based on pitch tracking

*爱你&永不变心* 提交于 2019-12-11 07:24:06
问题 As seen in comment link a pitch by Talkin’s Robust Algorithm for Pitch Tracking in voicebox (function name is "fxrapt") is extracted. http://www.ee.ic.ac.uk/hp/staff/dmb/voicebox/doc/voicebox/fxrapt.html However, I need to find pitch pulses in the LP error signal by detecting the maximum amplitude within each pitch period. For each pitch pulse, a Hamming window of two pitch periods long. if T(i-1), T(i), T(i+1) denote the locations of three successive pitch pulses. How can I design a analysis

Java speech API null response

痴心易碎 提交于 2019-12-11 06:53:07
问题 I am using the java speech recognition API - Jarvis located at https://github.com/lkuza2/java-speech-api However when I run my application, I get an error : Server returned HTTP response code: 400 for URL: https://www.google.com/speech-api/v1/recognize?xjerr=1&client=chromium&lang=en-US&maxresults=1 (This is the URL that this api uses to get response from Google) I also created a API key as mentioned in the earlier posts and tried to use the url (this is version 2 API): www.google.com/speech

winforms SpeechRecognitionEngine

我的梦境 提交于 2019-12-11 06:51:07
问题 we have started to play about with the speechRecognitionEngine, and built a very basic app based on one that we found on stack overflow. Code below:- public partial class Form1 : Form { SpeechRecognitionEngine sr = new SpeechRecognitionEngine(new System.Globalization.CultureInfo("en-US")); public Form1() { InitializeComponent(); // Create an in-process speech recognizer for the en-US locale. } private void BeginSpeach() { //Create grammar Choices words = new Choices(); words.Add("Hi"); words