Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/echogarden-project/gnuspeech-wasm
WebAssembly port of the GnuSpeech speech synthesizer.
https://github.com/echogarden-project/gnuspeech-wasm
gnuspeech speech-synthesizer text-to-speech
Last synced: 18 days ago
JSON representation
WebAssembly port of the GnuSpeech speech synthesizer.
- Host: GitHub
- URL: https://github.com/echogarden-project/gnuspeech-wasm
- Owner: echogarden-project
- License: gpl-3.0
- Created: 2024-11-27T11:50:59.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-11-27T12:18:38.000Z (about 1 month ago)
- Last Synced: 2024-11-27T12:33:54.474Z (about 1 month ago)
- Topics: gnuspeech, speech-synthesizer, text-to-speech
- Language: C++
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# GnuSpeech (WebAssembly port)
WebAssembly port of the [`GnuSpeech articulatory speech synthesizer`](https://github.com/mym-br/gnuspeech_sa).
## Installation
```
npm install @echogarden/gnuspeech-wasm
```## Usage example
Calling `synthesize` returns a WAVE format buffer:
```ts
import { writeFile } from 'fs/promises'
import { synthesize } from '@echogarden/gnuspeech-wasm'const { audioData } = await synthesize('Hello World!', {
voice: 'male',
controlRate: 250,
tempo: 1.0,
})await writeFile('out.wav', audioData)
```## License
MIT