Skip to content

Instantly share code, notes, and snippets.

@RalphRe
RalphRe / speech.js
Last active June 27, 2016 11:27 — forked from lukehoban/speech.js
Project Oxford Speech APIs Node.js Sample
var fs = require('fs');
var util = require('util');
var request = require('request');
var clientId = 'test-app'; // Can be anything
var clientSecret = 'KEY'; // API key from Azure marketplace
var str = 'This is a cool demo to call Microsoft text to speach service in Node.js.';
console.log('Converting from text -> speech -> text.');