diff --git a/plugin/Trans.lua b/plugin/Trans.lua index 3e45f55..5788005 100644 --- a/plugin/Trans.lua +++ b/plugin/Trans.lua @@ -24,10 +24,12 @@ string.width = api.nvim_strwidth local system = Trans.system 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 system == 'mac' and 'say %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' or - 'node' .. Trans.relative_path { 'tts', 'say.js' } .. ' %q' + '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' diff --git a/pytts/say.py b/pytts/say.py deleted file mode 100644 index a03da38..0000000 --- a/pytts/say.py +++ /dev/null @@ -1,7 +0,0 @@ -import pyttsx3 -import sys - -a = pyttsx3.init() - -a.say(sys.argv[1]) -a.runAndWait()