Documentation

Support

Vivox Core SDK

Vivox Core SDK

Initialize text-to-speech

Manage text-to-speech operations.
Read time 1 minuteLast updated a day ago

To start using text-to-speech (TTS) functionality, you must first create a TTS manager. The TTS manager is an SDK-internal object that controls the synthesis, injection, and queueing of TTS messages. Use the following code to create a TTS manager and return its unique identifier, which is required for accessing TTS functionality.
vx_tts_manager_id managerId;vx_tts_status status = vx_tts_initialize(tts_engine_vivox_default, &managerId);