Socket
Socket
Sign inDemoInstall

cordova-plugin-rangle-speech

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    cordova-plugin-rangle-speech

Objective-C/JavaScript cordova plugin that provides text-to-speech (TTS) and control of voice properties.


Version published
Weekly downloads
2
increased by100%
Maintainers
1
Install size
22.5 kB
Created
Weekly downloads
 

Readme

Source

Rangle Text to Speech Cordova Plugin

Objective-C/JavaScript cordova plugin that provives text-to-speech (TTS) and control of the voice properties.

Installing

First make sure you have the cordova CLI installed on your machine.

npm install -g cordova

Once you have the cordova CLI, you can install the plugin using the cordova plugin install command:

Cordova Install via GitHub

cordova plugin add https://github.com/rangle/cordova-plugin-rangle-speech --save

or

Cordova Install via NPM

cordova plugin add cordova-plugin-rangle-speech --save

Then you just need to rebuild your cordova project.

cordova build ios

That's it! The plugin will expose a RNGSpeech object globally from which you can call the plugin method from your code.

Getting Started

The RNGSpeech object aims to provide a simple interface for native device TTS. As a developer you have control of what is said as well as control over the voice properties.

Voice Properties

All properties are optional, meaning you just have to change the properties you want. Once a property is set, the plugin will remember that setting and continue to use it until a new value is set.

This API closely matches the iOS SDK properties for AVSpeechUtterance. As such the descriptions below are taken from the iOS SDK Documentation for greater clarity.

  • pitchMultiplier The default pitch is 1.0. Allowed values are in the range from 0.5 (for lower pitch) to 2.0 (for higher pitch).

  • postSpeechInterval The amount of time a speech synthesizer will wait after the utterance is spoken before handling the next queued utterance.

  • preSpeechInterval The amount of time a speech synthesizer will wait before actually speaking the utterance upon beginning to handle it.

  • rate The rate at which the utterance will be spoken. Lower values correspond to slower speech, and vice versa.

  • volume The volume used when speaking the utterance. Allowed values are in the range from 0.0 (silent) to 1.0 (loudest). The default volume is 1.0.

JavaScript API
//Voice Properties Object
{
    pitchMultiplier: 1.0,
    postSpeechInterval: 0.0,
    preSpeechInterval: 0.0,
    rate: 1.0,
    voiceLocale: 'en-US',
    volume: 1.0
}

Plugin Example

RNGSkpeech.speek(
    "Dave, What are you doing Dave?", //String to speak
    {volume:1.0, rate:1.0, voiceLocale:'eg-GB'}, //Voice properties
    ()=>{console.log('success')}, //sucess callback
    ()=>{console.log('failure')} //failure callback
);
Objective-C API

@protocol RNGSpeechDelegate <NSObject>

@optional
- (void)didFinishSpeaking: (AVSpeechUtterance*)utterance;
- (void)willBeginSpeaking: (AVSpeechUtterance*)utterance;
@end


@property (strong,nonatomic) AVSpeechSynthesisVoice *voice; // set explicit voice object

@property (strong,nonatomic) NSString *voiceLocale; // set locale for voice only (note this will do nothing if voice is explictly set)

@property (nonatomic) float pitchMultiplier; //Pitch is multiplied by this number

@property (nonatomic) NSTimeInterval postSpeechInterval; //Delay in seconds after speech utterance and the next in queue.

@property (nonatomic) NSTimeInterval preSpeechInterval; //Delay before beginning a new speech utterance

@property (nonatomic) float rate; //Speed at which the utterance is spoken

@property (nonatomic) float volume; //Volume of the utterance


@property (nonatomic, assign, nullable) id<RNGSpeechDelegate> delegate; //Object that implements RNGSpeechDelegate

- (void) speek: (NSString *)speechString; //execute speech.

Supported platforms

  • iOS 8.x+

Supported Cordova Versions

  • >=3.4.0

Licence

    The MIT License (MIT)

    Copyright © 2016 Rangle.io

    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the Software is
    furnished to do so, subject to the following conditions:

    The above copyright notice and this permission notice shall be included in all
    copies or substantial portions of the Software.

    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    SOFTWARE.

Keywords

FAQs

Last updated on 15 Aug 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc