Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Releases: googleapis/nodejs-speech

@google-cloud/speech v0.5.0

05 Nov 04:39
Compare
Choose a tag to compare

release level

Features

@google-cloud/speech v0.4.1

05 Nov 04:38
Compare
Choose a tag to compare

release level

Features

  • Added the streamingRecognize method. (#1775)

Dependencies

  • Updated dependencies.

@google-cloud/speech v0.4.0

05 Nov 04:36
Compare
Choose a tag to compare

release level

Features

  • Updated auto-generated API (#1737)

@google-cloud/speech v0.3.0

05 Nov 04:33
Compare
Choose a tag to compare

⚠️ Breaking Changes

release level

Promises have arrived!

Issue: #551
PR: #1710

It's been a long time coming, but we're finally here. We've shipped promise support in the Google Cloud Speech module!

Do I have to use promises?

Nope, carry on.

How do I use promises?

Don't pass a callback:

var speech = require('@google-cloud/speech')();

speech.recognize('./audio.raw', {
    encoding: 'LINEAR16',
    sampleRate: 16000
  })
  .then(function(data) {
    var transcript = data[0];
  })
  .catch(function(err) {});

@google-cloud/speech v0.2.0

05 Nov 04:32
Compare
Choose a tag to compare

release level

Features

Sync dependencies with other service modules to minimize download and installation time as much as possible. (#1605)

@google-cloud/speech v0.1.1

05 Nov 04:30
Compare
Choose a tag to compare

release level

Documentation

  • Documentation updates (#1606)

@google-cloud/speech v0.1.0

05 Nov 04:28
Compare
Choose a tag to compare

release level

Initial Release

Google Cloud Speech API enables developers to convert audio to text by applying powerful neural network models in an easy to use API. The API recognizes over 110 languages and variants, to support your global user base. You can transcribe the text of users dictating to an application’s microphone, enable command-and-control through voice, or transcribe audio files, among many other use cases. Recognize audio uploaded in the request, and integrate with your audio storage on Google Cloud Storage, by using the same technology Google uses to power its own products.

Learn more