Skip to content

Commit

Permalink
Update readme for multiple TTS engines
Browse files Browse the repository at this point in the history
  • Loading branch information
ak1394 committed Nov 22, 2019
1 parent da3376f commit 58e51f4
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,17 @@ Tts.addEventListener('tts-finish', (event) => console.log("finish", event));
Tts.addEventListener('tts-cancel', (event) => console.log("cancel", event));
```

### Support for multiple TTS engines

Platforms: Android

Functions to list available TTS engines and set an engine to use.

```js
Tts.engines().then(engines => console.log(engines));
Tts.setDefaultEngine('engineName');
```

### Install (additional) language data

Shows the Android Activity to install additional language/voice data.
Expand Down

0 comments on commit 58e51f4

Please sign in to comment.