Browse
 
Tools
Rss Categories

API Functions

1 LV_TTS_AddEvent

Events are added to call log files (special logs generated by the client which contain information for each synthesis and a host of other information). The call log files are generated in the responses folder located in the installation directory, under the…

2 LV_TTS_AddFieldToRequest

Adds a custom string to a named field in the call log file, that can be used to filter or identify certain calls. This value persists until changed or the call ends. Function LV_TTS_RETURN_CODE LV_TTS_AddFieldToRequest(HTTSCLIENT client_handle, const char…

3 LV_TTS_CreateClient

Creates a TTS client object that is necessary to perform any TTS operations. This object acts as a connection from the TTS client application to the TTS server. If NULL values are passed, it will pull the values from the config file (client_property.conf)…

4 LV_TTS_DestroyClient

Releases a TTS client object that was created using LV_TTS_CreateClient. Proper destruction of the TTS client object allows for recycling of any license(s) acquired by it. This should be called for every successful call to LV_TTS_CreateClient when your application…

5 LV_TTS_GetCallGuid

Query the ID used in call logging. It can be used inconjunction with LV_TTS_SetCustomCallGuid to link events across ASR ports and TTS ports to the same call log. This is an optional, advanced function, which can be used to get the ID that will be associated…

6 LV_TTS_GetFloatPropertyEx

Returns the specified configuration setting value for "float" type options in the LV_TTS interface. Function LV_TTS_RETURN_CODE LV_TTS_GetFloatPropertyEx(HTTSCLIENT client_handle, int property, int target, float * pvalue); Parameters client_handle Handle…

7 LV_TTS_GetIntPropertyEx

Returns the specified configuration setting value for "int" type options in the LV_TTS interface. Function LV_TTS_RETURN_CODE LV_TTS_GetIntPropertyEx(HTTSCLIENT client_handle, int property, int target, int * pvalue); Parameters client_handle Handle to the…

8 LV_TTS_GetLastSSMLError

Returns a character string from the last SSML syntax error, if any. Function LV_TTS_RETURN_CODE LV_TTS_GetLastSSMLError(HTTSCLIENT client_handle, char * error_buffer, int error_buffer_length); Parameters client_handle Handle to the TTS client object. error_buffer…

9 LV_TTS_GetLastSynthesisError

Returns a character string from the last (non-SSML) synthesis error, if any. This functionality was added with LumenVox version 11.3.100 (August 2013) Function LV_TTS_RETURN_CODE LV_TTS_GetLastSynthesisError(HTTSCLIENT client_handle, char * error_buffer,…

10 LV_TTS_GetLastSynthesisErrorCode

Returns the last (non-SSML) TTS error code, or LV_SUCCESS if no error is recorded. This functionality was added with LumenVox version 11.3.100 (August 2013) Function LV_TTS_RETURN_CODE LV_TTS_GetLastSynthesisErrorCode(HTTSCLIENT client_handle, int * error_code);…

1 2 3 4 Next