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

https://github.com/akscf/mod_google_tts

Provides the ability to use Google TTS service in the Freeswitch
https://github.com/akscf/mod_google_tts

freeswitch text-to-speech tts

Last synced: 9 months ago
JSON representation

Provides the ability to use Google TTS service in the Freeswitch

Awesome Lists containing this project

README

          


Google Text-To-Speech service for the Freeswitch.

### Dialplan example
```XML






```

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

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