npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

cordova-plugin-rangle-speech

v1.1.0

Published

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

Downloads

6

Readme

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.