From 0a1b6cf7422dfb44d1f2da9559086e4b71189080 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E5=B0=9B?= Date: Mon, 24 Apr 2023 13:02:48 +0800 Subject: [PATCH] feat: say.py --- plugin/Trans.lua | 1 + pytts/say.py | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 pytts/say.py 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()