Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/palmerabollo/bingspeech-api-client
Microsoft Bing Speech API client in node.js
https://github.com/palmerabollo/bingspeech-api-client
bing-speech speech-to-text stt text-to-speech tts
Last synced: about 1 month ago
JSON representation
Microsoft Bing Speech API client in node.js
- Host: GitHub
- URL: https://github.com/palmerabollo/bingspeech-api-client
- Owner: palmerabollo
- License: other
- Created: 2016-09-25T15:35:16.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-03-01T14:40:06.000Z (almost 2 years ago)
- Last Synced: 2024-11-21T19:41:53.895Z (about 1 month ago)
- Topics: bing-speech, speech-to-text, stt, text-to-speech, tts
- Language: TypeScript
- Size: 208 KB
- Stars: 32
- Watchers: 7
- Forks: 17
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bingspeech-api-client
A Microsoft Bing Speech API client written in node.js.
Official documentation for [Bing Speech API service](https://docs.microsoft.com/en-us/azure/cognitive-services/speech/home).
>To work with Bing Speech API, you must have a subscription key. If you don't have a subscription key already, get one here: [Subscriptions](https://docs.microsoft.com/en-us/azure/cognitive-services/speech/getstarted/getstartedjswebsockets).
## Usage
Install [`bingspeech-api-client`](https://www.npmjs.com/package/bingspeech-api-client) in your node project with npm.
```
npm install --save bingspeech-api-client
```See example below on how to require and use for Speech to text (STT) and text to speech (TTS).
## Examples
Following example code is assuming you are using [typescript](https://www.typescriptlang.org/). If you are, skip this section and go straight to the examples. But if you are using node ES6 and want to use the example code read on.
At present node does not support `import`. As mentioned on [MDN](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Statements/import)
>Note: This feature[`import`] is only beginning to be implemented in browsers natively at this time. It is implemented in many transpilers, such as the Traceur Compiler, Babel, Rollup or Webpack.
To get the example code working change the first line to:
```js
const { BingSpeechClient, VoiceRecognitionResponse } = require('bingspeech-api-client');
```### STT usage example (recognize)
```javascript
import { BingSpeechClient, VoiceRecognitionResponse } from 'bingspeech-api-client';let audioStream = fs.createReadStream(myFileName); // create audio stream from any source
// Bing Speech Key (https://www.microsoft.com/cognitive-services/en-us/subscriptions)
let subscriptionKey = 'your_private_subscription_key';let client = new BingSpeechClient(subscriptionKey);
client.recognizeStream(audioStream).then(response => console.log(response.results[0].name));
```### TTS usage example (synthesize)
```javascript
import { BingSpeechClient, VoiceVoiceSynthesisResponse } from 'bingspeech-api-client';// Bing Speech Key (https://www.microsoft.com/cognitive-services/en-us/subscriptions)
let subscriptionKey = 'your_private_subscription_key';let client = new BingSpeechClient(subscriptionKey);
client.synthesizeStream('I have a dream').then(audioStream => /* ... */);
```