SpeechToText-WebSockets-Javascript icon indicating copy to clipboard operation
SpeechToText-WebSockets-Javascript copied to clipboard

SDK & Sample to do speech recognition using websockets in Javascript

Results 31 SpeechToText-WebSockets-Javascript issues
Sort by recently updated
recently updated
newest added

Added the ability to pass in a custom speech endpoint and endpoint Id to the SpeechConnectionFactory. Speech endpoint will default to Bing if none is passed in.

to make this work i needed to change the websocket address in [this ](https://github.com/Azure-Samples/SpeechToText-WebSockets-Javascript/blob/b5ed42600ae587920c7384fac4ba74126ca5b4f7/src/sdk/speech.browser/SpeechConnectionFactory.ts#L58) line ` return Storage.Local.GetOrAdd("Host", "wss://speech.platform.bing.com");` to ` return Storage.Local.GetOrAdd("Host", "wss://{your Deployment ID}.api.cris.ai");` i also changed this...

Added Indian English and Hindi languages to the SDK.

These scripts were broken on macOS / Linux: In Windows CMD shells, single `&` means "run A then B", like a semicolon. In Bash shells, single `&` means "run A...

Hi, When trying to run the demo, it gives me the following error: Unhandled callback error: Error: 'Unhandled callback error: 'Filename.wav exceeds the maximum allowed file size (19200044).''. InnerError: 'Unhandled...

When building an app that uses this module on a case-sensitive filesystem, such as those used on most Linux systems, the typings file listed in package.json is not found. The...

When building an app that uses the `microsoft-speech-browser-sdk` on a case-sensitive filesystem, such as those used on most Linux systems, the TypeScript compiler gives the following error: ``` app/chat/cordova-audio-source.ts(20,8): error...

The readme file is not updated with the correct way to setup the Recognizer, is still using ```SDK.Recognizer.Create``` and not ```SDK.CreateRecognizer```.

I followed README instruction both in root and samples/browser directory to run a server by "node sample-server.js enableTunnel" command, and trying to test by speak some utterance. However my server...

Hi folks, I've create a single commit in mirror fork that replaced Gulp and related plugins with simple `tsc` compiler, `tslint` and just NPM scripts. https://github.com/peterblazejewicz/SpeechToText-WebSockets-Javascript/commit/5209385ee43b25db324bb6406a4e414498be7bf3 Would you be interested...