Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/terrillo/pollymolly
PollyMolly is a AWS Polly node.js wrapper with a better speech synthesis algorithm to provided a more natural sounding voice.
https://github.com/terrillo/pollymolly
aws aws-polly speech-synthesis
Last synced: 18 days ago
JSON representation
PollyMolly is a AWS Polly node.js wrapper with a better speech synthesis algorithm to provided a more natural sounding voice.
- Host: GitHub
- URL: https://github.com/terrillo/pollymolly
- Owner: terrillo
- License: mit
- Created: 2017-06-23T19:26:47.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-06-28T19:04:29.000Z (over 7 years ago)
- Last Synced: 2024-10-12T04:10:04.644Z (about 1 month ago)
- Topics: aws, aws-polly, speech-synthesis
- Language: JavaScript
- Homepage:
- Size: 19.5 KB
- Stars: 11
- Watchers: 2
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# PollyMolly
PollyMolly is a AWS Polly node.js wrapper with a better speech synthesis algorithm to provided a more natural sounding voice. The base of the project uses the Speech Synthesis Markup Language (SSML). [https://www.w3.org/TR/speech-synthesis/](https://www.w3.org/TR/speech-synthesis/)## Install
`npm install pollymolly`## Features
- Convert Text to SSML
- Convert SSML to Text
- Download mp3 from AWS Polly## Other docs
- [Natural Language Rules](docs/natural-rules.md)## Todo
- [x] Download mp3s from AWS Polly
- [ ] Large file download
- [ ] "Natural Pause" Algorithm
- [ ] Improved Pronunciation
- [x] Change Voice
- [ ] Change region## Usage
```
const PollyMolly = require('pollymolly')
```### Text -> SSML `text2ssml()`
Convert a plain text string to the Speech Synthesis Markup Language
```
PollyMolly.text2ssml('Hello World')
> Hello World
```### SSML -> Text `ssml2text()`
Convert Speech Synthesis Markup Language to plain text
```
PollyMolly.ssml2text('Hello World')
> Hello World
```### is SSML `isSSML()`
Check to see if string is SSML
```
PollyMolly.isSSML('Hello World')
> true
```### is Text `isText()`
Check to see if string is not SSML
```
PollyMolly.isSSML('Hello World')
> false
```### Natural `natural()`
Convert a string to a more natural speaking SSML
```
PollyMolly.natural('The curator painted the dinosaur orange - a color hated by everyone.')
> The curator painted the dinosaur orange a color hated by everyone.
```### Download File `download()`
Download .mp3 from AWS Polly
```
PollyMolly.download({ 'Text': 'Hello World' }, 'sound.mp3', function() {
console.log('DONE')
})
```## Changelog
**0.1v**
- `text2ssml()`
- `ssml2text()`
- `download()`**0.2v**
- `isSSML()`
- `isText()`
- `natural()`
- `download()` now supports the full AWS download params. [http://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/Polly.html](http://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/Polly.html)