Code Monkey home page Code Monkey logo

aws-polly-voices's Introduction

AWS Polly Voices

A lightweight library to get the VoiceID programmatically without install or call the heavyweight aws-sdk for nodejs. https://docs.aws.amazon.com/polly/latest/dg/voicelist.html

travis build codecov coverage version downloads style quality license

Getting Started

Prerequisites

node -v
node: >= v8.16.1

Installing

Using npm

npm install --save aws-polly-voices
npm i aws-polly-voices

Using Yarn

yarn add aws-polly-voices

How to use

Importing with Commonjs style

const Voices = require('aws-polly-voices')
const voices = new Voices()

Importing with ES6 modules style

import Voices from 'aws-polly-voices'
const voices = new Voices()

Examples

With SINGLE VoiceId

const Voices = require('aws-polly-voices')
const voices = new Voices()

const brazilianFemaleVoice = voices.brazilian().female()

// Returns the array with the voice(s) data.
// Depending on the selected language this array can have more than one element.
const voiceData = brazilianFemaleVoice.val

console.log(voiceData)
/**
 [{
  Gender: 'Female',
  Name: 'Vitória',
  LanguageName: 'Brazilian Portuguese',
  Id: 'Vitoria',
  LanguageCode: 'pt-BR'
 }]
 */

// Get the VoiceId.
// If there is only one element in voiceData array then it will return that voiceId.
// Otherwise it will return a random voiceId based on the criteria (chained methods and/or filters).
// See the next example for clarity.
const voiceId = brazilianFemaleVoice.id // Vitoria

With MULTIPLE VoiceId

const Voices = require('aws-polly-voices')
const voices = new Voices()

const englishMaleVoices = voices.english().male()

const voiceData = englishMaleVoices.val
console.log(voiceData)
/**
 [{
  Gender: 'Male',
  Name: 'Matthew',
  LanguageName: 'US English',
  Id: 'Matthew',
  LanguageCode: 'en-US'
},
{
  Gender: 'Male',
  Name: 'Justin',
  LanguageName: 'US English',
  Id: 'Justin',
  LanguageCode: 'en-US'
 }]
 */

const voiceId = englishMaleVoices.id // random value: [Matthew, Justin]
const matthew = voiceData[0].Id // Matthew
const justin = voiceData[1].Id // Justin

Full API reference

Most of the methods are chainable.

const Voices = require('aws-polly-voices')
const voices = new Voices()

// available languages by name
// this parameter can be: ['Gender', 'Name', 'LanguageName', 'Id', 'LanguageCode']
// defaults to: LanguageName
const allLanguages = voices.languages()

// available Voice Id
const allVoicesId = voices.languages('Id')

// by language: english
const english = voices.english() || voices.byLang('english')

// by language code: nl-NL
const dutch = voices.dutch() || voice.byLangCode('nl-NL')

// by gender: male || female
const portuguese = voices.portuguese().male() || voices.brazilian().female()

// by voice id
const vitoria = voices.byId('Vitoria')

// reseting the filter
voices.reset()
const portuguese = voices.portuguese().male()

// Helpers for specific languages
const english = voices.english()
const portuguese = voices.portuguese()
const dutch = voices.dutch()
const russian = voices.russian()
const german = voices.german()
const polish = voices.polish()
const turkish = voices.turkish()

// Helpers for specific language and country
const american = voice.american()
const brazilian = voice.brazilian()
const british = voices.british()

Running the tests

To run the tests, go to the terminal and enter:

  • All tests: npm run test
  • Watch: npm run test:watch

TODO

  • 100% unit test coverage
  • Documentation (this file)
  • CI/CD with sematinc-release integrating with Travis, Github and NPM registry
  • Add support for Typescript
  • Implement a helper for Portugal Portuguese
  • Implement a helper for Welsh English
  • Implement a helper for Spanish
  • Implement a helper for US Spanish
  • Implement a helper for Castilian Spanish
  • Implement a helper for Mexican Spanish
  • Implement a helper for Icelandic
  • Implement a helper for Arabic
  • Implement a helper for Chinese Mandarin
  • Implement a helper for Welsh
  • Implement a helper for Swedish
  • Implement a helper for Indian English
  • Implement a helper for Canadian French
  • Implement a helper for Australian English
  • Implement a helper for Romanian
  • Implement a helper for Turkish
  • Implement a helper for French
  • Implement a helper for Danish
  • Implement a helper for Japanese
  • Implement a helper for Norwegian
  • Implement a helper for Korean

Contributing

If you want to collaborate, please feel free. I appreciate any help :)

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Authors

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE file for details.

aws-polly-voices's People

Contributors

chgasparoto avatar ranjithashankar avatar arkadiuszz avatar danielotieno avatar ikhemissi avatar juliabenton avatar tomekmularczyk avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.