Greasy Fork 支持简体中文。

wsmud_pluginss

武神传说 MUD 武神脚本 武神传说 脚本 qq群367657589

< 腳本wsmud_pluginss的回應

提問/評論

§
發表於:2020-08-06
編輯:2020-08-06

TTS相关:发现代码引用了百度TTS Api,在百度繁忙的时候会直接无声音。尝试利用SpeechSynthesisUtterance做了本地合成,效果不错,希望能追加进代码之中作为备选方案使用。
平台:Win10 Chrome v82

§
發表於:2020-08-06
編輯:2020-08-06

不太优美的实现范例:
playtts: function (text) {
var msg = new SpeechSynthesisUtterance(text);
msg.lang = 'zh';
msg.voice = speechSynthesis.getVoices().filter(function(voice) {
return voice.name == 'Whisper';
})[0];
speechSynthesis.speak(msg);
// let url = ``;
// FakerTTS.playurl(url);
}

knva作者
§
發表於:2020-08-07

已合并

發表回覆

登入以回復