Skip to content

mosalingua/cordova-mosalingua-plugin-tts

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cordova Mosalingua Text-to-Speech Plugin

Platforms

iOS 7+

Installation

cordova plugin add cordova-mosalingua-plugin-tts

Usage

// make sure your the code gets executed only after `deviceready`.

    // basic usage
    TTS
        .speak('hello, world!',function () {
            alert('success');
        }, function (error) {
            alert(error);
        });

    // or with more options
    TTS
        .speak('hello, world!', {locale: 'en-GB',rate: 0.75, volume: 1.0},
            function () {
            alert('success');
        }, function (error) {
            alert(error);
        });

About

Cordova Text-to-Speech Plugin (Maintainer WANTED!)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Objective-C 53.2%
  • Java 37.5%
  • JavaScript 9.3%