An open API service indexing awesome lists of open source software.

https://github.com/akscf/mod_openai_tts

Freeswitch TTS module
https://github.com/akscf/mod_openai_tts

freeswitch openai tts

Last synced: 11 months ago
JSON representation

Freeswitch TTS module

Awesome Lists containing this project

README

          


OpenAI Text-To-Speech service for the Freeswitch.

### Dialplan example
```XML






```

### mod_quickjs
```javascript
session.ttsEngine= 'openai';
session.language = 'en';

session.speak('Hello world!');
```