我想用混合语言输入来做演讲<->文本。
最初只有中文和英文,但最终会有更多的语言对。绝大多数的演讲将是英语,但少量的中文将被包括在内。该应用程序类似于“会话式语言词典”:
用混合语言输入的语音到文本:“你怎么说猫?”
用混合语言输入的文本到语音:“猫的英文单词是猫.”我希望能用以英语为母语的人的声音/口音来说话。
- I noticed that the text-to-speech demo at [this URL](https://www.microsoft.com/cognitive-services/en-us/speech-api) can handle
使用语音转文本WinRT应用编程接口:
private async Task SynthesizeSpeech(string text)
{
var synthesizer = new SpeechSynthesizer();
var media = new MediaElement();
var stream = await m_Synthesizer.SynthesizeTextToStreamAsync(text);
m_Media.SetSource(stream, stream.ContentType);
m_Media.Play();
}
您
当我测试我的应用程序的语音转文本功能时,使用了Dragon Mobile SDK免费试用,发生了以下错误。
Exceeded maximum number of transactions per day.
我想知道我每天可以使用多少次语音到文本。
有没有办法在不购买他们的金牌服务的情况下解决这个限制?
感谢您的宝贵时间。
如果我打扰你了真的很抱歉。