You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ability select voice based on gender or content of activity, and also by providing custom voice model name.
This select voice predicate today is based on activity locale, UI language, and browser language only. It currently lives in component/src/Activity/Speak.js.
selectVoice: voices=>{voices=[].slice.call(voices);return(voices.find(({ lang })=>lang===activity.locale)||voices.find(({ lang })=>lang===language)||voices.find(({ lang })=>lang===window.navigator.language)||voices.find(({ lang })=>lang==='en-US')||voices[0]);}
[Enhancement]
The text was updated successfully, but these errors were encountered:
Custom Voice support is recently added (last week) to the adapter, but Web Chat did not provide a way to use it yet. This work should also allows developers to select voice by simply providing the model name.
BTW, you can try out our Web Speech API adapter for Custom Voice font support. You would need to specify both "Deployment ID" and "Voice URI" (a.k.a. custom voice model name). 😉
Feature Request
Ability select voice based on gender or content of activity, and also by providing custom voice model name.
This select voice predicate today is based on activity locale, UI language, and browser language only. It currently lives in
component/src/Activity/Speak.js
.[Enhancement]
The text was updated successfully, but these errors were encountered: