1.0.2 • Published 9 years ago

vocalwarenodeclient v1.0.2

Weekly downloads
1
License
ISC
Repository
-
Last release
9 years ago

VocalwareNodeClient

A Nodejs Client for Vocalware

Node client for the Vocalware REST API.

You will need your account number, your api number and secret information from your account at www.vocalware.com

Install

Run npm install vocalwarenodeclient.

Usage

var vocalwareClient = require('vocalwarenodeclient');

var vClient = new vocalwareClient({ACC: '526972X', API: '243XXX', SECRET: 'ea7793b4XXXXXXa098d91046924aa'});

vClient.TextToSpeech("This is a test string test", "test.mp3")
    .then(function (audioBuffer) {
        // Eventhing went well so lets save the audio to a file.
        vClient.WriteAudioToFile(audioBuffer, "/temp/newFile.mp3")
            .then(function() {
                console.log("File werite completed");
            }
        );
    }, function (error) {
        // An error occured print it to console.
        console.error(error);
    });
1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago