1 2 3 4 5 6 7 8 |
// 首先使用 pip 安装 // pip install edge-tts // 安装干后开始查看主播列表 // 找到合适的主播后, 再执行文本转语音; var shell = require('shelljs'); const list = shell.exec('edge-tts --list-voices'); console.log(list); shell.exec(`edge-tts --text "好消息~好消息,清仓大甩卖,全场一律8折" --voice zh-CN-YunxiNeural --write-media hello.mp3`) |