Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
polly-text-split
Advanced tools
Adaptively split plain text by batches with size of <=1500 characters each to overcome AWS Polly TTS input limitations. By default, this utility splits text by the nearest dot (.) or if no dot found - it searches for other characters, that we can set by our own or use the defaults.
When you use method synthesizeSpeech()
of AWS Polly TTS SDK you cannot pass more than 1500 character at a time. If you have a long text, it can become tedious to manually split it at the right positions. This little library solves this problem by splitting your text by batches suitable for Polly input.
Also, given that the AWS Polly is a context aware text-to-speech system, it adjusts speech pronunciation and accents based on punctuation too. So this library tries to keep speech natural by splitting only at the right places:
.
,
or ;
(by default, can be configured)HARD_LIMIT
indexnpm install polly-text-split
const pollyTextSplit = require('polly-text-split')
// 1. Method split() returns array of strings.
const batches = pollyTextSplit.split('your long text here')
// 2. Method splitIndex() returns index of the possible split position.
const splitIndex = pollyTextSplit.splitIndex('your long text here')
// So you can split manually using native string method
const batch = 'your long text here'.slice(0, splitIndex + 1)
By default, configuration is not necessary, but if you need to set your own limits or split characters, you can use method configure()
for that.
const pollyTextSplit = require('polly-text-split')
// Configuration example with default values
const options = {
// MIN length of a single batch of split text
softLimit: 1000,
// MAX length of a single batch of split text
hardLimit: 1500,
// Set of extra split characters (Optional property)
extraSplitChars: ',;',
}
// Apply configuration
pollyTextSplit.configure(options)
// Use with new configuration
const batches = pollyTextSplit.split('your long text here')
npm test
Any contributions are very welcome.
MIT.
FAQs
Text splitter for working with AWS Polly TTS.
The npm package polly-text-split receives a total of 92 weekly downloads. As such, polly-text-split popularity was classified as not popular.
We found that polly-text-split demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.