Chat TTS plugin for Dalamud. Has support for triggers/exclusions, several TTS providers, and more!
/tttconfig
: Opens the configuration window./canceltts
: Cancel all queued TTS messages./toggletts
: Turns TTS on or off./disabletts
: Turns TTS off./enabletts
: Turns TTS on.
TextToTalk supports custom lexicons to modify how words are pronounced. For more information, please join our community lexicons discussion.
Direct links to information will be added here eventually.
- System (Windows)
- AWS Polly
- Azure (Microsoft Cognitive Services)
- Uberduck
- Websocket
TextToTalk can optionally open a WebSocket server to serve messages over. There are currently two JSON-format messages that can be sent:
TTS prompt:
{
"Type": "Say",
"Payload": "Firstname Lastname says something",
"Voice": {
"Name": "Gender"
},
"Source": "Chat"
}
TTS cancel:
{
"Type": "Cancel",
"Payload": "",
"Voice": null,
"Source": "None"
}