diff --git a/lua/Trans/init.lua b/lua/Trans/init.lua index a3b01a9..b592e08 100644 --- a/lua/Trans/init.lua +++ b/lua/Trans/init.lua @@ -25,7 +25,7 @@ local system = uname == 'Linux' and (vim.fn.executable 'termux-api-start' == 1 and 'termux' or 'linux') or error 'Unknown System, Please Report Issue' -local sep = system == 'win' and '\\' or '/' +local sep = system == 'win' and '\\\\' or '/' ---@class Trans ---@field style table @Style module ---@field cache table @Cache for translated data object diff --git a/plugin/Trans.lua b/plugin/Trans.lua index 2148c38..3e45f55 100644 --- a/plugin/Trans.lua +++ b/plugin/Trans.lua @@ -28,6 +28,7 @@ local f = system == 'termux' and 'termux-tts-speak %q' or 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' diff --git a/pytts/say.py b/pytts/say.py new file mode 100644 index 0000000..a03da38 --- /dev/null +++ b/pytts/say.py @@ -0,0 +1,7 @@ +import pyttsx3 +import sys + +a = pyttsx3.init() + +a.say(sys.argv[1]) +a.runAndWait()