feat: add auto_play for hover mode

This commit is contained in:
JuanZoran
2023-01-21 21:13:51 +08:00
parent eb10830eb5
commit 294ffe1b9f
8 changed files with 70 additions and 23 deletions

5
tts/package.json Normal file
View File

@@ -0,0 +1,5 @@
{
"dependencies": {
"say": "^0.16.0"
}
}

6
tts/say.js Normal file
View File

@@ -0,0 +1,6 @@
const say = require('say')
word = process.argv
// console.log(word)
say.speak(word.slice(2))