google-speech

0.0.5 • Public • Published

google-speech

node.js module for Google speech systems (ASR)

Install

npm install google-speech --save
 

Automatic Speech Recognition

Get API key: https://console.developers.google.com/

more docs: https://github.com/gillesdemey/google-speech-v2

var google_speech = require('google-speech');
 
google_speech.ASR({
    developer_key: 'XXXXXXXX',
    file: 'data/1.wav',
  }, function(err, httpResponse, xml){
    if(err){
        console.log(err);
      }else{
        console.log(httpResponse.statusCode, xml)
      }
    }
);
 

Text-To-Speech

(use unofficial api, api key not required)

var google_speech = require('google-speech');
 
google_speech.TTS({
  text: 'Привет, мир!',
  file: 'data/hello.mp3'
  }, function(){
    console.log('done');
  }
);
 
//or so
 
google_speech.TTS({
  text: 'Привет, мир!',
  file: 'data/hello.mp3',
  language: 'ru',
  encoding: 'UTF-8'
  }, function(){
    console.log('done');
  }
);
 

Readme

Keywords

none

Package Sidebar

Install

npm i google-speech

Weekly Downloads

2

Version

0.0.5

License

MIT

Last publish

Collaborators

  • antirek