# espeak-pipe

> Simple eSpeak interface which exposes stdout and stderr pipes from the eSpeak application.

Latest version **0.0.2** (published 2015-05-13) · MIT license · 0 weekly downloads

## Install

```sh
npm install espeak-pipe
pnpm add espeak-pipe
yarn add espeak-pipe
bun add espeak-pipe
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.2 |
| Published | 2015-05-13 |
| First published | 2015-05-13 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Winston R. Milling |
| Maintainers | wrmilling |
| Keywords | eSpeak, TTS |

## Links

- npm: https://www.npmjs.com/package/espeak-pipe
- Repository: https://github.com/WRMilling/node-espeak-pipe
- Issues: https://github.com/WRMilling/node-espeak-pipe/issues
- npm.io page: https://npm.io/package/espeak-pipe

## Recent versions

- 0.0.2 (latest) — 2015-05-13
- 0.0.1 — 2015-05-13

## README

# node-espeak-pipe
Simple eSpeak interface using a node child process and PassThrough streams to pipe stdout and stderr.

## Installation
    npm install espeak-pipe

## Usage
Minimal usage is to require the library, define the audio pipe, and tell it to say something! The example below uses node-speaker to output the audio data from eSpeak

    var Speaker = require('speaker'),
        espeak = require('espeak-pipe');
    // Values below pertain to my test system
    var ttsSpeaker = new Speaker({
        channels: 1,
        bitDepth: 16,
        sampleRate: 22050,
        signed: true
    });
    espeak.audio.pipe(ttsSpeaker);
    espeak.say("Speaker Initialized, sir.");

## Configuration
You can also specify any option for the eSpeak application you want with a call to init. Basics can be seen below:

    var espeak = require('espeak-pipe');
    espeak.init({
        "voice": "en-us+f3",
        "pitch": "5",
        "speed": "150",
        "volume": "10",
        "addn_args": []
    });

## License
Please see the LICENSE file included with this repository for full details.

The MIT License (MIT)

Copyright (c) 2015 Winston R. Milling

---
_Source: https://npm.io/package/espeak-pipe · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
