Questions tagged [bing-speech]
41 questions
9
votes
1 answer
Bing Speech to Text API - Communicate via websocket in c#
I'm trying to get the Bing Speech API to work in C# via WebSockets. I've looked through the implementation in Javascript here and have been following the protocol instructions here, but I've come up against a complete brick wall. I can't use the…

Stephen Ellis
- 2,561
- 2
- 24
- 47
4
votes
2 answers
How can I transcribe a speech file with the Bing Speech API in Python?
How can I transcribe a speech file with the Bing Speech API in Python? My speech file is longer than 15 seconds.
I'm aware that one may use the Bing Speech REST API in Python. https://gist.github.com/jellis505/973ea6de12508c7c720da4a074e7d065…

Franck Dernoncourt
- 77,520
- 72
- 342
- 501
3
votes
1 answer
How can I change language on bing speech in bot
I am using bing speech in botframeowrk as below:
var speechOptions =
{
speechRecognizer: new CognitiveServices.SpeechRecognizer(
{
subscriptionKey: 'YOUR_COGNITIVE_SPEECH_API_KEY'
}),
speechSynthesizer: new…

Bena
- 33
- 3
3
votes
1 answer
Can Microsoft Bing Speech be configured to return only numbers / letters?
Can the Microsoft Bing Speech API be configured to only return numbers and letters, as opposed to full words?
The use case is translating Canadian postal codes. Ex. M 1 B 0 R 3. Microsoft may return "Em 1 Be 0 Are 3"
Our audio file is 8000hz and…

Bobby Bruce
- 341
- 5
- 12
2
votes
1 answer
Bing speech API constantly returns ServiceUnavailable status
I am trying to use the Bing Speech Api using C# but 95% of the times I get the following response from the API:
Message=SendRequest: Non-success status received :: Status Code:
ServiceUnavailable; Reason: ; Content:…

Toto
- 736
- 9
- 33
2
votes
0 answers
Skype audio for Bing Speech to Text bot
I have an Azure bot which is capable of getting a wav audio file and translating to text using the Bing Speech API. I am trying to hook this up to Skype. I can't work out how to get a stream from the attachment. The first part of my code finds the…

Zelestor
- 93
- 6
2
votes
3 answers
Perform real time continuous speech recognition using Xamarin and Microsoft Speech Service API
I saw on the documentation of the Bing Speech API that it is possible to stream a recording microphone input to the REST service (https://learn.microsoft.com/en-us/azure/cognitive-services/speech/home):
Real-time continuous recognition. The speech…

Toto
- 736
- 9
- 33
2
votes
1 answer
What should be the maximum audio file length (duration) to be sent to Bing Speeh to Text API?
I have referred this documentation.
They have mentioned when using client libraries for speech to text, "the long audio stream (up to 10 minutes)".
Whether speech to text accepts audio file greater than 10 minutes?
What will happen if we pass audio…

user7369339
- 57
- 8
2
votes
1 answer
How to use Bing Speech API with Bot Framework C#
I want to use Bing Speech API with bot framework and I have downloaded a c# project from this link https://code.msdn.microsoft.com/bing/Speech-To-Text-Bot-using-db55e1d0
but in web.config it needs the following values to get the token:
I tried with…

Javier171296
- 49
- 1
- 4
2
votes
0 answers
Loading RequireJS in React-Native app
I've spent the last two days pouring over every shred of documentation and every tangentially related support thread I could find but have run into a dead end on this.
Working on a React-Native application for a client. They are insisting we use…

Memige Den Adel
- 21
- 3
2
votes
4 answers
Speech to text bing speech API Azure
When I trying to execute the code below, I get the following error:
(node:3784) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): Error: Voice recognition failed miserably: socket hang up
var fs = require('fs');
var…

Lokesh Avichetty
- 88
- 1
- 7
1
vote
1 answer
Bing Speech API / Speech service on Xamarin (No REST, sdk web socket to handle continous recognition)
I'm evaluating "Bing Speech API" and its new brother "Speech Service" (still in preview mode) for a simple voice recognition mobile application based on Xamarin.
I've obtained good results using the API REST but it has a constraint duration length…

Alessandro
- 71
- 5
1
vote
1 answer
Microsoft Azure Cognitive Services - Bing Text to Speech API - Play audio using javascript
I am following this documentation to convert text to speech using the Text To Speech REST API.
I'm successfully able to get a valid response using Postman and I'm able to pay the audio in PostMan. But I am not able to play the audio using…

Anand Murali
- 4,091
- 1
- 33
- 46
1
vote
1 answer
Azure Speech To Text API
The thing I like about the Google Speech to Text API, is that it has fantastic accuracy, a fair bit better than the Azure API in my experience. The reason being, I am able to send a list of expected words in my request to the Google API, and…

Harry Stuart
- 1,781
- 2
- 24
- 39
1
vote
1 answer
voice xml:lang="en-US" xml:gender="Male" name="Microsoft Server Speech Text is always in Female voice
I am just trying to develop a function which converts text to speech. The issue here is, the conversion is always happening in the female voice, even though I had specified the xml:gender to male. Here is my function, is there anyway I can transform…

Sibeesh Venu
- 18,755
- 12
- 103
- 140