Skip to content

simplisticated/TellMe.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 

Repository files navigation

At a Glance

TellMe.js is a library that simplifies work with voice in JavaScript.

How to Get Started

Copy the source/tellme.js file to your project.

Requirements

No special requirements.

Usage

The very basic usage looks like the example below:

tellMeIn("en-US").say(
    "Hello! How are you doing?"
)

Everything starts with tellMeIn() method that takes the only string parameter which is a locale identifier of your text: en-US, fr-FR, ru-RU, etc.

Also, the library can notify you when it finished speaking:

tellMeIn("en-US")
    .say(
        "Hello! How are you doing?"
    )
    .onFinished(function() {
        console.log("Finished");
    });

License

TellMe.js is available under the Apache 2.0 license. See the LICENSE file for more info.

About

Easy-to-use voice API for JavaScript

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors