├── .gitignore ├── README.md ├── examples ├── tts-google.js ├── tts-tts.js └── tts-voicerss.js ├── index.js ├── package.json ├── speak └── index.js └── tts ├── google.js ├── tts.js └── voicerss.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kLabs/node-tts-speak/HEAD/README.md -------------------------------------------------------------------------------- /examples/tts-google.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kLabs/node-tts-speak/HEAD/examples/tts-google.js -------------------------------------------------------------------------------- /examples/tts-tts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kLabs/node-tts-speak/HEAD/examples/tts-tts.js -------------------------------------------------------------------------------- /examples/tts-voicerss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kLabs/node-tts-speak/HEAD/examples/tts-voicerss.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kLabs/node-tts-speak/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kLabs/node-tts-speak/HEAD/package.json -------------------------------------------------------------------------------- /speak/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kLabs/node-tts-speak/HEAD/speak/index.js -------------------------------------------------------------------------------- /tts/google.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kLabs/node-tts-speak/HEAD/tts/google.js -------------------------------------------------------------------------------- /tts/tts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kLabs/node-tts-speak/HEAD/tts/tts.js -------------------------------------------------------------------------------- /tts/voicerss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G33kLabs/node-tts-speak/HEAD/tts/voicerss.js --------------------------------------------------------------------------------