remove: node

This commit is contained in:
小尛 2023-04-24 19:57:33 +08:00
parent 24a838646d
commit a48caf51e1
3 changed files with 2 additions and 16 deletions

View File

@ -25,15 +25,10 @@ string.width = api.nvim_strwidth
local system = Trans.system local system = Trans.system
local f = local f =
vim.fn.has 'wsl' == 1 and 'powershell.exe -Command "Add-Type -AssemblyName System.speech;(New-Object System.Speech.Synthesis.SpeechSynthesizer).Speak(\\\"%s\\\")"' or vim.fn.has 'wsl' == 1 and 'powershell.exe -Command "Add-Type -AssemblyName System.speech;(New-Object System.Speech.Synthesis.SpeechSynthesizer).Speak(\\\"%s\\\")"' or
system == 'win' and 'powershell -Command "Add-Type -AssemblyName System.speech;(New-Object System.Speech.Synthesis.SpeechSynthesizer).Speak(\\\"%s\\\")"' or
system == 'mac' and 'say %q' or system == 'mac' and 'say %q' or
system == 'termux' and 'termux-tts-speak %q' or system == 'termux' and 'termux-tts-speak %q' or
system == 'win' and 'powershell.exe -Command "Add-Type -AssemblyName System.speech;(New-Object System.Speech.Synthesis.SpeechSynthesizer).Speak(\\\"%s\\\")"' or system == 'linux' and 'echo %q | festival --tts'
system == 'linux' and 'echo %q | festival --tts' or
'node ' .. Trans.relative_path { 'tts', 'say.js' } .. ' %q'
-- 'python ' .. Trans.relative_path { 'pytts', 'say.py' } .. ' %q'
-- 'powershell -Command "Add-Type AssemblyName System.Speech; (New-Object System.Speech.Synthesis.SpeechSynthesizer).Speak([Console]::In.ReadToEnd())" | Out-File -Encoding ASCII %q'
-- or 'node' .. Trans.relative_path { 'tts', 'say.js' } .. ' %q'
-- system == 'win' and 'powershell -Command "Add-Type AssemblyName System.Speech; (New-Object System.Speech.Synthesis.SpeechSynthesizer).Speak([Console]::In.ReadToEnd())" | Out-File -Encoding ASCII %q'
string.play = function(self) string.play = function(self)
fn.jobstart(f:format(self)) fn.jobstart(f:format(self))

View File

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

View File

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