We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 140751d + 797b455 commit 7d5c511Copy full SHA for 7d5c511
plugins/Text_To_Speech.xml
@@ -99,7 +99,12 @@ function OnPluginInstall ()
99
require "luacom"
100
101
-- Instantiate a SAPI voice obejct
102
- talk = assert (luacom.CreateObject ("SAPI.SpVoice"), "cannot open SAPI")
+ talk = assert (luacom.CreateObject ("SAPI.SpVoice"), [[
103
+ Cannot open SAPI.
104
+ Note for Linux and Mac OS users. Text to speech functionality depends on the Microsoft Speech API.
105
+ This is not included by default in Wine, and SpeechSDK51.exe must be separately installed.
106
+ You can download it from http://download.microsoft.com/download/B/4/3/B4314928-7B71-4336-9DE7-6FA4CF00B7B3/SpeechSDK51.exe
107
+ ]])
108
109
-- Method call
110
talk:Speak ("SAPI Plug-in installed and is ready.", 1)
0 commit comments