我试图在Node.JS中使用google文本来使用语音API,我正在使用google api生成api链接,并且现在想要播放它们。是否有任何节点库,可以播放声音从一个网络链接?
var tts = require("google-tts-api");
tts(text, "de-DE", 1).then(function(url) {
playSound(url);
});
function playSound(url) {
//Some code, that is able to play the audio from the url.
}
标题说得很清楚,我该如何将消息作者拖到机器人目前所在的语音通道中?
说我的机器人一个人在一个语音频道。调用命令只对作者播放声音。
但是作者不在语音通道中,所以我不能使用move_to(*)方法,因此单词拖放。
我在API引用中寻找连接,但似乎找不到任何连接。
Is it even possible to drag users into a voice channel?
我想创建一个与GoBarbara.com类似的页面。在那里,文本字段的内容将从文本转换为语音。
因此,我想使用SpeechSynthesis API (javaScript),它在触发intro.mp3之后执行文本到语音的操作。播放完演讲后,应该播放end.mp3。这是由intro.mp3末尾的"onend“类型的事件侦听器和演讲处理的。
播放音频的基本触发方案是1 -> 2 -> 3,其中1是intro.mp3,2是语音,3是end.mp3。
我的当前代码如下:
function doSpeech() {
var speech = new SpeechSynthes
不幸的是,当我使用Twilio语音消息时,它不能播放消息,而是播放一些噪音。我也使用了Twilio支持的mime类型。
var response = new VoiceResponse();
var call = Twilio.Rest.Api.V2010.Account.CallResource.Read(parentCallSid: callSid).ToList();
if (call[0].Status.ToString() == "in-progress")
{