Luke Granger-Brown
6522ddba8c
sapi sapi sapi http://totoro:11316/sam?text=OLE%20Apartments%20are%20Very%20Complicated%20and%20cannot%20be%20understood%20by%20Mere%20Mortals.
20 lines
342 B
C++
20 lines
342 B
C++
extern "C" {
|
|
|
|
extern __declspec(dllexport) BOOL MakeSamSay(LPCSTR text, LPSTR* OutFile) {
|
|
VOICE_INFO voiceInfo;
|
|
bool ret = false;
|
|
if (!InitializeForVoice("Sam", &voiceInfo)) {
|
|
goto end;
|
|
}
|
|
|
|
UINT64 len;
|
|
if (GetTTS(&voiceInfo, 100, 150, text, &len, OutFile)) {
|
|
ret = true;
|
|
}
|
|
|
|
DeinitializeForVoice(&voiceInfo);
|
|
end:
|
|
return ret;
|
|
}
|
|
|
|
}
|