是否仍然通过Node JS Google Text-to-speech客户端支持Wavenet语音?它以前可以在NodeJs客户端的v.1.3.0上运行,但现在不行了。当我尝试使用Wavenet语音生成语音时,我得到了以下错误:Request contains an invalid argument 正常的声音可以正常工作。
我已经在我的Windows764位操作系统上安装了一个新的32位Scansoft语音(Jennifer),以便能够在我正在开发的.NET应用程序中使用。
问题是,当我调用该方法时:
List<string> allInstalledVoices = new SpeechSynthesizer().GetInstalledVoices();
我只返回了一个声音,即默认的Microsoft Anna Voice。但是我可以在其他的text to speech应用程序中看到所有安装的语音。
我为此编写了代码,但我希望将更多的语音-文本通道连接到语音通道 @bot.event
async def voice1_role(member, before, after):
if not before.channel and after.channel:
role = discord.utils.get(member.guild.roles, name="voice1")
await member.add_roles(role)
elif before.channel and not after.channel: