gpt4 book ai didi

speech-recognition - 如何在 bot 中更改 bing 语音的语言

转载 作者:行者123 更新时间:2023-12-04 07:53:43 28 4
gpt4 key购买 nike

我在 botframeowrk 中使用 bing 语音如下:

var speechOptions = 
{
speechRecognizer: new CognitiveServices.SpeechRecognizer(
{
subscriptionKey: 'YOUR_COGNITIVE_SPEECH_API_KEY'
}),
speechSynthesizer: new CognitiveServices.SpeechSynthesizer(
{
subscriptionKey: 'YOUR_COGNITIVE_SPEECH_API_KEY',
gender: CognitiveServices.SynthesisGender.Female,
voiceName: 'Microsoft Server Speech Text to Speech Voice (en-US, JessaRUS)'
})
}

我想将语言从“en-us”更改为其他语言,是否有任何我应该添加的选项,例如 lang:'it-it'。

还有一种方法可以根据用户使用的语言更改语言吗?

最佳答案

有2个不同的项目:语音输入(SpeechRecognizer)和语音输出(SpeechSynthesizer)

语音识别器

有一个可选的locale 参数,您可以像传递subscriptionKey 一样传递该参数,参见sources :

export interface ICognitiveServicesSpeechRecognizerProperties {
locale?: string,
subscriptionKey?: string,
fetchCallback?: (authFetchEventId: string) => Promise<string>,
fetchOnExpiryCallback?: (authFetchEventId: string) => Promise<string>
}

如果没有提供,则有一个回退(source):

const locale = properties.locale || 'en-US';

语音合成器

使用 gendervoiceName 参数 ( sources ):

export interface ICognitiveServicesSpeechSynthesisProperties {
subscriptionKey?: string,
gender?: SynthesisGender,
voiceName?: string,
fetchCallback?: (authFetchEventId: string) => Promise<string>,
fetchOnExpiryCallback?: (authFetchEventId: string) => Promise<string>
}

对于这些参数的可能值,您可以在此处找到一个列表:https://learn.microsoft.com/en-us/azure/cognitive-services/speech/api-reference-rest/bingvoiceoutput#SupLocales

关于speech-recognition - 如何在 bot 中更改 bing 语音的语言,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48422508/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com