Skip to content

Latest commit

 

History

History
669 lines (562 loc) · 28.6 KB

SPEECH.md

File metadata and controls

669 lines (562 loc) · 28.6 KB

Using Cognitive Services Speech Services

Direct Line Speech is the preferred way to provide speech functionality in Web Chat, please refer to DIRECT_LINE_SPEECH.md.

This guide is for integrating speech-to-text and text-to-speech functionality using Azure Cognitive Services.

We assume you have already set up a bot and have Web Chat running on a page.

Sample code in this article is optimized for modern browsers. You may need to use a transpiler (e.g. Babel) to target a broader range of browsers.

Support matrix

Chrome/Microsoft Edge
and Firefox
on desktop
Chrome
on Android
Safari
on macOS/iOS
Web View
on Android
Web View
on iOS
STT Basic recognition 4.2 4.2 4.2 4.2 *1
STT Custom Speech 4.6 4.6 4.6 4.6 *1
STT Text normalization options 4.2 4.2 4.2 4.2 *1
STT Abort recognition 4.6 4.6 4.6 4.6 *1
STT Interims 4.2 4.2 4.2 4.2 *1
STT Dynamic priming 4.6 4.6 4.6 4.6 *1
STT Reference grammar ID 4.6 4.6 4.6 4.6 *1
STT Select language at initialization 4.2 4.2 4.2 4.2 *1
STT Select language on-the-fly 4.2 4.2 4.2 4.2 *1
STT Input hint 4.5 4.5 4.6 4.5 *1
STT Select input device *3 *3 *3 *3 *1
TTS Basic synthesis using text 4.2 4.2 4.2 4.2 *2
TTS Speech Synthesis Markup Language 4.6 4.6 4.6 4.6 *2
TTS Custom Voice 4.6 4.6 4.6 4.6 *2
TTS Selecting voice/pitch/rate/volume 4.6 4.6 4.6 4.6 *2
TTS Text-to-speech audio format 4.6 4.6 4.6 4.6 *2
TTS Stripping text from Markdown 4.5 4.5 4.5 4.5 *2
TTS Override using "speak" property 4.2 4.2 4.2 4.2 *2
TTS Adaptive Cards using "speak" property 4.5 4.5 4.5 4.5 *2
TTS Interrupt synthesis when clicking on microphone button (Bug) (PR) 4.6 4.6 4.6 4.6 *2
TTS Synthesize activity with multiple attachments 4.2 4.2 4.2 4.2 *2

Notes

  1. Web View on iOS is not a full browser. It does not have audio recording capabilities, which is required for Cognitive Services
  2. As speech recognition is not working (see above), speech synthesis is not tested
  3. Cognitive Services currently has a bug on selecting a different device for audio recording

Requirements

In order to use the speech functionality in Web Chat, the browser needs to provide minimal media capabilities, including recording from microphone and playing audio clips.

Internet Explorer 11 does not meet the basic requirements for both speech recognition and speech synthesis.

Speech-to-text requirements

  • Browser must support WebRTC API
    • Available on most modern browsers on desktop and mobile platform
    • WebRTC will not work on third-party apps or browsers on iOS
  • Web page must be hosted over HTTPS
  • User must explicitly grant permission for microphone access

Special considerations for iOS

Safari is the only browser that supports WebRTC API on iOS.

Chrome, Microsoft Edge and native apps built using WKWebView do not support WebRTC API. Apps based on Cordova/PhoneGap and React Native WebView might need additional plugins or custom code to support WebRTC API.

Text-to-speech requirements

Special considerations for Safari on macOS and iOS

Safari requires additional permission granted explicitly by the user. The user needs to perform an interaction (click/tap/type) before any audio clips can be played during the browser session.

When the user taps on the microphone button for the first time, Web Chat will play a very short and silent audio clip. This will enable Web Chat to play any audio clip synthesized from bot messages.

If you customize Web Chat to perform any text-to-speech operations before user gestures, Web Chat will be blocked by Safari for audio playback. Thus, bot messages will not be synthesized.

You can present a splash screen with a tap-to-continue button, which will ready the engine by sending an empty utterance to unblock Safari.

Special considerations for Cordova on Android

Cordova apps require additional permission for speech synthesis on Android. An example plugin that works with Web Chat is the cordova-plugin-k-webrtc-permission. Please note that this plugin can enable permissions beyond the necessary scope for Web Chat, and developers should only enable what their particular application needs.

Setting up Web Chat

To use Cognitive Services in Web Chat, you will need to add minimal setup code to set up Web Chat with your Cognitive Services subscription.

Setting up your Azure subscription

You will need to obtain a subscription key for your Azure Cognitive Services subscription. Please follow instructions on this page to obtain a subscription key.

To prevent exposing your subscription key, you should build/host a server that uses your subscription key to generate authorization tokens, and only send the authorization token to the client. You can find more information about authorization tokens on the Cognitive Services Authentication documentation. Never use subscription keys to access your Azure resources in a production environment.

To use new voices powered by deep neural network, you might need to have a subscription in "West US 2" region or other supported regions.

Integrating Web Chat into your page

This integration code is excerpted from the sample named "Integrating with Cognitive Services Speech Services".

To bring more focus to the integration part, we simplified the original sample code by using subscription key instead of authorization token. You should always use authorization token for production environment.

const { createCognitiveServicesSpeechServicesPonyfillFactory, createDirectLine, renderWebChat } = window.WebChat;

renderWebChat(
  {
    directLine: createDirectLine({
      secret: 'YOUR_DIRECT_LINE_SECRET'
    }),
    locale: 'en-US',
    webSpeechPonyfillFactory: await createCognitiveServicesSpeechServicesPonyfillFactory({
      credentials: {
        region: 'YOUR_REGION',
        subscriptionKey: 'YOUR_SUBSCRIPTION_KEY'
      }
    })
  },
  document.getElementById('webchat')
);

After adding the ponyfill factory, you should be able to see the microphone button in Web Chat, which indicates that speech is enabled.

Additional features

These features are for improving the overall user experience while using speech in Web Chat.

Using Speech Synthesis Markup Language

Instead of synthesizing text, Web Chat can also synthesize Speech Synthesis Markup Language (or SSML). Cognitive Services supports SSML 1.0 with "mstts" extensions.

When the bot sends the activity, include the SSML in the speak property.

<speak
  version="1.0"
  xmlns="https://www.w3.org/2001/10/synthesis"
  xmlns:mstts="https://www.w3.org/2001/mstts"
  xml:lang="en-US"
>
  <voice name="en-US-JessaNeural">
    <mstts:express-as type="cheerful">That'd be just amazing!</mstts:express-as>
  </voice>
  <voice name="ja-JP-Ayumi-Apollo">
    <prosody pitch="+150%">素晴らしい!</prosody>
  </voice>
</speak>

The SSML code snippet above is using neural voice "JessaNeural" for expression, which is only supported in some regions.

With "mstts" extension, you can also add speaking style (e.g. cheerful) and background audio to your synthesized speech.

Using input hint

The bot can set input hint when sending activity to the user to indicate whether the bot is anticipating user input. This can be used re-open the microphone if the last message was sent through microphone. You can set it to either expectingInput, acceptingInput, and ignoringInput. If it is not defined, it will default to acceptingInput.

  • "expectingInput": Web Chat will open the microphone after the bot's message is spoken and the last message was sent through microphone
  • "acceptingInput": Web Chat will do nothing after the bot's message is spoken
  • "ignoringInput": Web Chat will explicitly close the microphone

Note: expectingInput is currently not working on Safari for both macOS and iOS.

For more details, please follow this article on adding input hints to messages.

Input hint behavior before 4.5.0

In issue #2022, it was brought to the Web Chat team's attention that the speech behavior of v3 and v4 of Web Chat do not match. In the 4.5.0 release, the expected behavior of a speech bot has been modified in order to bring parity to v3 behavior regarding input hint. This means the following:

  • Expecting input will now be respected by Web Chat and open the microphone during a speech conversation. This is assuming that the user has given permission for the browser to use the mic.
  • Accepting input will no longer open the mic after the bot has responded to a speech activity from the user. Instead, the user will have to press the microphone button again in order to further interact with the bot.
  • Ignoring input will continue to not open the mic after a speech activity has been sent from the bot.

Selecting voice

Different voices can be selected based on the synthesizing activity.

By default, we will use the following order to determine which voice to use. If available, we prioritize deep neural network-based voices over traditional voices.

  • Locale specified in the activity
  • Display language of Web Chat
  • Browser language
  • English (US)
  • The first available voice

In the following code, voice is selected based on the language of the synthesizing activity. If the activity is in Cantonese (zh-HK), we will select the voice with keyword "TracyRUS". Otherwise, we will select the voice with keyword "Jessa24kRUS".

  const {
    createCognitiveServicesSpeechServicesPonyfillFactory,
    createDirectLine,
    renderWebChat
  } = window.WebChat;

  renderWebChat({
    directLine: createDirectLine({
      secret: 'YOUR_DIRECT_LINE_SECRET'
    }),
    language: 'en-US',
+   selectVoice: (voices, activity) => {
+     if (activity.locale === 'zh-HK') {
+       return voices.find(({ name }) => /TracyRUS/iu.test(name));
+     } else {
+       return voices.find(({ name }) => /Jessa24kRUS/iu.test(name));
+     }
+   }
    webSpeechPonyfillFactory: await createCognitiveServicesSpeechServicesPonyfillFactory({
      credentials: {
        region: 'YOUR_REGION',
        subscriptionKey: 'YOUR_SUBSCRIPTION_KEY'
      }
    })
  }, document.getElementById('webchat'));

Custom Speech

Custom Speech is a trained recognition model that improves recognition of words that are not in the default recognition model. For example, you can use it to improve accuracy when recognizing trademark words or the name of a person.

First, you need to set up a Custom Speech project. Please follow the article on creating a new Custom Speech project.

After your Custom Speech project is set up and a model is published to a deployment endpoint, in the "Deployment" tab, save your "Endpoint ID".

You will then need to modify your integration code as below.

  renderWebChat({
    directLine: createDirectLine({
      secret: 'YOUR_DIRECT_LINE_SECRET'
    }),
    language: 'en-US',
    webSpeechPonyfillFactory: await createCognitiveServicesSpeechServicesPonyfillFactory({
      credentials: {
        region: 'YOUR_REGION',
        subscriptionKey: 'YOUR_SUBSCRIPTION_KEY'
-     }
+     },
+     speechRecognitionEndpointId: 'YOUR_ENDPOINT_ID',
    })
  }, document.getElementById('webchat'));

Custom Voice

Custom Voice is a trained synthesis model for providing your user with an unique synthesized voice when performing text-to-speech.

First, you need to set up a Custom Voice project. Please follow the article on creating a new Custom Voice project.

After your Custom Voice project is set up and a model is published to a deployment endpoint, in the "Deployment" tab, save the "Model / Voice name" and the value of "deploymentId" inside the "Endpoint URL" field.

You will then need to modify your integration code as below. The selectVoice function will be used to choose which trained synthesis model to use.

  renderWebChat({
    directLine: createDirectLine({
      secret: 'YOUR_DIRECT_LINE_SECRET'
    }),
    language: 'en-US',
+   selectVoice: () => ({ voiceURI: 'YOUR_VOICE_MODEL_NAME' }),
    webSpeechPonyfillFactory: await createCognitiveServicesSpeechServicesPonyfillFactory({
      credentials: {
        region: 'YOUR_REGION',
        subscriptionKey: 'YOUR_SUBSCRIPTION_KEY'
-     }
+     },
+     speechSynthesisDeploymentId: 'YOUR_DEPLOYMENT_ID',
    })
  }, document.getElementById('webchat'));

Note: if you send SSML instead of plain text, make sure the voice model is correctly selected in your SSML.

Text-to-speech audio format

To conserve bandwidth, you can set the text-to-speech audio format to one that consumes less bandwidth by modifying your integration code as below:

  renderWebChat({
    directLine: createDirectLine({
      secret: 'YOUR_DIRECT_LINE_SECRET'
    }),
    language: 'en-US',
    webSpeechPonyfillFactory: await createCognitiveServicesSpeechServicesPonyfillFactory({
      credentials: {
        region: 'YOUR_REGION',
        subscriptionKey: 'YOUR_SUBSCRIPTION_KEY'
-     }
+     },
+     speechSynthesisOutputFormat: 'audio-24khz-48kbitrate-mono-mp3',
    })
  }, document.getElementById('webchat'));

Please refer to the following list of supported audio formats.

Text normalization options

Text normalization is an ability to modify how the speech engine normalizes text. For example, when the user says, "I would like to order 2 4-piece chicken nuggets." It could be recognized as "two four piece" (default) or "2 four piece" (inverse text normalization, or ITN).

You can read more about various text normalization options.

To select different text normalization options, you will need to modify your integration code as below:

  renderWebChat({
    directLine: createDirectLine({
      secret: 'YOUR_DIRECT_LINE_SECRET'
    }),
    language: 'en-US',
    webSpeechPonyfillFactory: await createCognitiveServicesSpeechServicesPonyfillFactory({
      credentials: {
        region: 'YOUR_REGION',
        subscriptionKey: 'YOUR_SUBSCRIPTION_KEY'
-     }
+     },
+     textNormalization: 'itn'
    })
  }, document.getElementById('webchat'));

Supported text normalization options are "display" (default), "itn", "lexical", and "maskeditn".

Disabling telemetry

By default, Azure Cognitive Services will collect telemetry for service performance. If you prefer to disable telemetry, please modify the code as below:

  renderWebChat({
    directLine: createDirectLine({
      secret: 'YOUR_DIRECT_LINE_SECRET'
    }),
    language: 'en-US',
    webSpeechPonyfillFactory: await createCognitiveServicesSpeechServicesPonyfillFactory({
      credentials: {
        region: 'YOUR_REGION',
        subscriptionKey: 'YOUR_SUBSCRIPTION_KEY'
-     }
+     },
+     enableTelemtry: false,
    })
  }, document.getElementById('webchat'));

Using authorization token

This sample uses a subscription key for simplicity. If you need to use authorization token, you can pass a Promise function to the credentials property. The function could potentially be a network call to your token server.

  async function fetchCredentials() {
    const res = await fetch('/api/authorizationtoken');

    if (res.ok) {
      return {
        authorizationToken: await res.text(),
        region: 'westus2'
      };
    } else {
      throw new Error('Failed to retrieve authorization token for Cognitive Services.');
    }
  }

  renderWebChat({
    directLine: createDirectLine({
      secret: 'YOUR_DIRECT_LINE_SECRET'
    }),
    language: 'en-US',
    webSpeechPonyfillFactory: await createCognitiveServicesSpeechServicesPonyfillFactory({
+     // Note we are passing the function, not the result of the function call, as there is no () appended to it.
+     // This function will be called every time the authorization token is being used.
+     credentials: fetchCredentials
-     credentials: {
-       region: 'YOUR_REGION',
-       subscriptionKey: 'YOUR_SUBSCRIPTION_KEY'
-     }
    })
  }, document.getElementById('webchat'));

The function fetchCredentials will be called every time a token is needed. For simplicity, token caching is not provided in this sample code. You should add caching based on the validity of the token.

Using two subscription keys for speech-to-text and text-to-speech

In some cases, you may be using two different Cognitive Services subscriptions, one for speech-to-text and another one for text-to-speech. You could create two ponyfills and combine together to form a hybrid ponyfill.

+ const speechToTextPonyfillFactory = await createCognitiveServicesSpeechServicesPonyfillFactory({
+   credentials: {
+     region: 'YOUR_STT_REGION',
+     subscriptionKey: 'YOUR_STT_SUBSCRIPTION_KEY'
+   }
+ });

+ const textToSpeechPonyfillFactory = await createCognitiveServicesSpeechServicesPonyfillFactory({
+   credentials: {
+     region: 'YOUR_TTS_REGION',
+     subscriptionKey: 'YOUR_TTS_SUBSCRIPTION_KEY'
+   }
+ });

  renderWebChat({
    directLine: createDirectLine({
      secret: 'YOUR_DIRECT_LINE_SECRET'
    }),
    language: 'en-US',
-   webSpeechPonyfillFactory: await createCognitiveServicesSpeechServicesPonyfillFactory({
-     credentials: {
-       region: 'YOUR_REGION',
-       subscriptionKey: 'YOUR_SUBSCRIPTION_KEY'
-     }
-   })
+   webSpeechPonyfillFactory: options => {
+     const { SpeechGrammarList, SpeechRecognition } = speechToTextPonyfillFactory(options);
+     const { speechSynthesis, SpeechSynthesisUtterance } = textToSpeechPonyfillFactory(options);
+
+     return {
+       SpeechGrammarList,
+       SpeechRecognition,
+       speechSynthesis,
+       SpeechSynthesisUtterance
+     };
+   }
  }, document.getElementById('webchat'));

Note: it is correct that speechSynthesis is in camel-casing, while others are in Pascal-casing.

Using this approach, you can also combine two polyfills of different types. For example, speech recognition powered by Cognitive Services with browser-supported speech synthesis. You can refer to our Web Chat sample on hybrid speech to learn more.

Using sovereign cloud

If you need to use sovereign cloud such as Azure Government (United States) or Microsoft Azure China, you will need to configure a specific host name. When generating an authorization token, you should use the corresponding token URL.

For details on setting up sovereign cloud and their limitations, please refer to this article.

  renderWebChat({
    directLine: createDirectLine({
      secret: 'YOUR_DIRECT_LINE_SECRET'
    }),
    language: 'en-US',
    webSpeechPonyfillFactory: await createCognitiveServicesSpeechServicesPonyfillFactory({
      credentials: {
-       region: 'westus2',
+       speechRecognitionHostname: 'virginia.stt.speech.azure.us',
+       speechSynthesisHostname: 'virginia.tts.speech.azure.us',
        subscriptionKey: 'YOUR_SUBSCRIPTION_KEY'
      }
    })
  }, document.getElementById('webchat'));

Related articles