Releases: googleapis/nodejs-speech
@google-cloud/speech v0.5.0
@google-cloud/speech v0.4.1
@google-cloud/speech v0.4.0
@google-cloud/speech v0.3.0
⚠️ Breaking Changes
Promises have arrived!
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
Features
Sync dependencies with other service modules to minimize download and installation time as much as possible. (#1605)
@google-cloud/speech v0.1.1
@google-cloud/speech v0.1.0
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.