├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── examples ├── profanity.js ├── sendFile.js └── tospeech.js ├── lib ├── send-file.js └── send-stream.js ├── ms-translator-speech-service.js ├── package.json └── test ├── all.test.js ├── ms-translator-speech-service.test.js ├── sample ├── profanity01.wav └── sample01.wav └── send-file.test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noopkat/ms-translator-speech-service/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noopkat/ms-translator-speech-service/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noopkat/ms-translator-speech-service/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noopkat/ms-translator-speech-service/HEAD/README.md -------------------------------------------------------------------------------- /examples/profanity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noopkat/ms-translator-speech-service/HEAD/examples/profanity.js -------------------------------------------------------------------------------- /examples/sendFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noopkat/ms-translator-speech-service/HEAD/examples/sendFile.js -------------------------------------------------------------------------------- /examples/tospeech.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noopkat/ms-translator-speech-service/HEAD/examples/tospeech.js -------------------------------------------------------------------------------- /lib/send-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noopkat/ms-translator-speech-service/HEAD/lib/send-file.js -------------------------------------------------------------------------------- /lib/send-stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noopkat/ms-translator-speech-service/HEAD/lib/send-stream.js -------------------------------------------------------------------------------- /ms-translator-speech-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noopkat/ms-translator-speech-service/HEAD/ms-translator-speech-service.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noopkat/ms-translator-speech-service/HEAD/package.json -------------------------------------------------------------------------------- /test/all.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noopkat/ms-translator-speech-service/HEAD/test/all.test.js -------------------------------------------------------------------------------- /test/ms-translator-speech-service.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noopkat/ms-translator-speech-service/HEAD/test/ms-translator-speech-service.test.js -------------------------------------------------------------------------------- /test/sample/profanity01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noopkat/ms-translator-speech-service/HEAD/test/sample/profanity01.wav -------------------------------------------------------------------------------- /test/sample/sample01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noopkat/ms-translator-speech-service/HEAD/test/sample/sample01.wav -------------------------------------------------------------------------------- /test/send-file.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noopkat/ms-translator-speech-service/HEAD/test/send-file.test.js --------------------------------------------------------------------------------