Questions tagged [bing-speech]

41 questions
1
vote
0 answers

Bing speech API does not narrate long text to Chat Bot

I have created a Web Chat bot using Microsoft QnA Maker service and Azure Web App bot hosted on Azure. I have enabled Web Chat and Direct Line channels on Azure for my bot. It works fine. Now I am trying to integrate Bing Speech API for speech…
Souvik Ghosh
  • 4,456
  • 13
  • 56
  • 78
1
vote
0 answers

SIP or SIPREC integration

I need to integrate voice coming from SIP or SIPREC session to Micorsoft Speech or MS Bot. According to https://docs.microsofttranslator.com/speech-translate.html the voice should be streamed single channel, signed 16bit PCM audio sampled at 16 kHz.…
Vladimir B
  • 170
  • 1
  • 13
1
vote
1 answer

Supported browser in Botframework using Bing speech

I am using Bing for speech in botframework and when i deploy it the microphone is enabled only in Chrome and Edge, I read that its supported also in some other browser?
hSor
  • 41
  • 3
1
vote
1 answer

Translating a curl command to R using httr (specifically '--data-binary @')

I am trying to transcribe some sound files to text using bing speech-to-text. The following command works in command line (using git bash on Windows 10): curl -v -X POST…
Jagge
  • 938
  • 4
  • 21
1
vote
2 answers

Using the Bot Framework to send message on the user's behalf

I'm currently attempting to accept voice input from the user, feed it into the Bing Speech API to get text, and pass that text as a user response. I've gotten as far as receiving the text back from Bing, but I'm not sure how to send that text as a…
Gavination
  • 78
  • 1
  • 5
0
votes
1 answer

Microsoft Azure Cognitive Speech to Text - recognize dates

Can the Microsoft Cognitive Speech to Text service recognize dates and output the text in a formatted way? For example when input speech is, "date of birth is five fifteen sixty-four", that the text output shows, "date of birth is 5/15/64". Thank…
0
votes
1 answer

How do I use the new Azure Speech Services instead of Bing Speech in web chat

I have a webchat bot working fine (I can use speech with it and it returns with speech) with the Bing Speech using the following link: With option…
JDT
  • 965
  • 2
  • 8
  • 20
0
votes
2 answers

Bing Speech API integrated with Microsofts BotFramework

I figured I'd set this one out with as much detail as possible, hopefully someone out there has some experience with this kind of set-up. Front-end: ASP.Net MVC Razer website. .Net Framework 4.6.1 Back-end: Bot-framework Web API (RESTful). .Net…
0
votes
1 answer

Enable start listening feature of Bing speech in webchat automatically

I have already integrated the Bing speech API using speech recognizer. It is working as expected. Now we had an additional requirement to enable the speech listening capability once an event/action is completed in the web chat. How can we enable the…
Suba
  • 21
  • 3
0
votes
1 answer

How to save SubscriptionKey on javascript

I make speech recognition App using Bing speech API with javascript library. But I need to contain SubscriptionKey to Html/JS code using Library. I think another person can see my key and use it. How to save my key? Can regenerate key dynamically on…
stack_user
  • 563
  • 2
  • 14
0
votes
1 answer

Can I mock the values of a List just like in the VS debugger?

When writing Unit Tests for a function that is consuming a List I face the following error: Invalid setup on a non-virtual (overridable in VB) member: x => x.Confidence After reading here, I get that…
malarres
  • 2,941
  • 1
  • 21
  • 35
0
votes
1 answer

can Bing Text-to-Speech take a javascript variable value and convert it to speech?

I am using Bing text to speech api in javascript and generating random numbers for addition. Just for support I wanted to integrate bing text-to-speech to my code but I am not able to find a documentation on microsoft page which says that you can…
0
votes
0 answers

No 'Access-Control-Allow-Origin' header using Bing Speech in Bot Framework

I am using Bing Speech in Chatbot using Bot Framework it was working good but today I got this error: "https://speech.platform.bing.com/synthesize: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin'…
hSor
  • 41
  • 3
0
votes
1 answer

Issue in setting up Microsoft Bing speech recognition

I am trying to use Microsoft's Bing Speech Recognition service library. The following command has to be given in the cmd with arguments. But I have no idea in which format I should enter this command. I could not find it anywhere. Can someone help…
Kabilesh
  • 1,000
  • 6
  • 22
  • 47
0
votes
1 answer

Bot Framework Emulator VS Web Chat

I have this code : if (activity.Type == ActivityTypes.Message) { var audioAttachment = activity.Attachments?.FirstOrDefault(a => a.ContentType.Equals("audio/wav") ||…