microsoft-speech-api

Speech-to-text large audio files [Microsoft Speech API]

时光怂恿深爱的人放手 提交于 2021-02-07 18:42:46
问题 What is the best way to transcribe medium/large audio files, ~ 6-10 mins each file, using Microsoft Speech API? Something like batch audio files transcription? I have used the code provided in https://docs.microsoft.com/en-us/azure/cognitive-services/speech-service/speech-to-text-sample, for continuously transcribing speech, but it stops transcribing at some point. Is there any restriction on the transcription? I am only using the free trial account atm. Btw, I assume there is no difference

Can't pip microsoft azure-cognitiveservices-speech?

雨燕双飞 提交于 2021-02-05 05:31:11
问题 Following the guide here to install the microsoft azure text to speech SDK: https://docs.microsoft.com/en-us/azure/cognitive-services/speech-service/quickstart-python#install-the-speech-sdk It says to run pip install azure-cognitiveservices-speech , but unfortunately this returns Could not find a version that satisfies the requirement azure->cognitiveservices-speech (from versions: ) No matching distribution found for >azure-cognitiveservices-speech I've tried adding the version # at the end

Can't pip microsoft azure-cognitiveservices-speech?

 ̄綄美尐妖づ 提交于 2021-02-05 05:28:05
问题 Following the guide here to install the microsoft azure text to speech SDK: https://docs.microsoft.com/en-us/azure/cognitive-services/speech-service/quickstart-python#install-the-speech-sdk It says to run pip install azure-cognitiveservices-speech , but unfortunately this returns Could not find a version that satisfies the requirement azure->cognitiveservices-speech (from versions: ) No matching distribution found for >azure-cognitiveservices-speech I've tried adding the version # at the end

get working Microsoft Speech API with Angular

纵饮孤独 提交于 2020-05-27 04:36:05
问题 hi im trying to find a way to get working Angular 5 with Microsoft Speech API i used microsoft-speech-browser-sdk for javascript https://github.com/Azure-Samples/SpeechToText-WebSockets-Javascript i just import the SDK import * as SDK from 'microsoft-speech-browser-sdk'; and i tried to use the same code on the example but i have this error SDK.Recognizer.CreateRecognizer is not a function I know that the skd is imported because it executes the first functions also i cant find the API

Microsoft Speech Recognition: Alternate results with confidence score?

倾然丶 夕夏残阳落幕 提交于 2020-01-13 11:35:09
问题 I'm new to working with the Microsoft.Speech recognizer (using Microsoft Speech Platform SDK Version 11) and I'm trying to have it output the n-best recognition matches from a simple grammar, along with the confidence score for each. According to the documentation (and as mentioned in the answer to this question), one should be able to use e.Result.Alternates to access the recognized words other than the top-scoring one. However, even after resetting the confidence rejection threshold to 0

Difference among Microsoft Speech products/platforms

女生的网名这么多〃 提交于 2019-12-30 06:43:26
问题 It seems Microsoft offers quite a few speech recognition products, I'd like to know the differences among all of them pls. There is Microsoft Speech API, or SAPI. But somehow Microsoft Cognitive Service Speech API has the same name. Ok now, Microsoft Cognitive Service on Azure offers Speech service API and Bing Speech API . I assume for speech-to-text, both APIs are the same. And then there is System.Speech.Recognition (or Desktop SAPI), Microsoft.Speech.Recognition (or Server SAPI) and

Difference among Microsoft Speech products/platforms

我的梦境 提交于 2019-12-30 06:42:33
问题 It seems Microsoft offers quite a few speech recognition products, I'd like to know the differences among all of them pls. There is Microsoft Speech API, or SAPI. But somehow Microsoft Cognitive Service Speech API has the same name. Ok now, Microsoft Cognitive Service on Azure offers Speech service API and Bing Speech API . I assume for speech-to-text, both APIs are the same. And then there is System.Speech.Recognition (or Desktop SAPI), Microsoft.Speech.Recognition (or Server SAPI) and

Calling SpeechAPI for text to speech on Azure

孤街醉人 提交于 2019-12-23 18:29:52
问题 I have the following very basic TTS code running on my local server using System.Speech.Synthesis; ... SpeechSynthesizer reader = new SpeechSynthesizer(); reader.Speak("This is a test"); This code has a dependency on System.Speech for which I have added a Reference in my VS 2015 project. Works fine but from what I have read and from trying it I know this will not work when the code is hosted on Azure. I have read several posts on SO querying if it is actually possible to do TTS on azure.