
Security News
Open Source Maintainers Demand Ability to Block Copilot-Generated Issues and PRs
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
A basic tss manager, based on Microsoft Speech API or espeak for others OS
$ npm install simpletts
$ apt-get install espeak
http://espeak.sourceforge.net/download.html
defaultVoice: Voice (default = null)
forceEspeak: boolean (default = false)
getTTSSystem(void): "sapi" | "espeak"
getVoices(void): Promise<resolve<Array<Voice>>|reject<Error>>
isReading(void): boolean
read(Options|string): Promise<resolve<Options>|reject<Error>>
stopReading(void): Promise<resolve<void>|reject<Error>>
interface Voice {
name: string,
gender: "female" | "male"
}
interface Options {
text: string,
< voice: Voice|string, >
< integer volume, > // percentage, 0 -> 100, default 100
< integer speed > // percentage, 0 -> 100, default 50
}
When using with electronjs in Windows, you can move "vbs" scripts to external folder and pass folder path in constructor.
/**
* move "listvoices.vbs" and "playtext.vbs" in
* "./node_modules/simpletts/batchs" to external folder.
* ex: ./plugins/vbs/*
*/
const { resolve } = require("path");
const SimpleTTS = require("simpletts");
const vbsFolders = resolve("plugins", "vbs");
const simpleTTS = new SimpleTTS(vbsFolders);
$ npx run-script simpletts "This is a test"
import SimpleTTS = require("simpletts");
interface Voice {
name: string;
gender: "female" | "male";
}
interface Options {
text: string;
volume?: number;
speed?: number;
voice?: Voice | string;
}
const tts = new SimpleTTS();
tts.getVoices().then((voices: Array<Voice>) => {
return tts.read({
"text": "test",
"voice": voices[0]
});
}).then((options: Options) => {
console.log(options);
}).catch((err: Error) => {
console.log(err);
});
const SimpleTTS = require("simpletts");
const tts = new SimpleTTS();
tts.getVoices().then((voices) => {
console.log(voices[0].name);
console.log(voices[0].gender);
}).catch((err) => {
console.log(err);
});
tts.read({ "text": "this is a test", "volume": 75, "speed": 60 }).then(() => {
console.log("Ok");
}).catch((err) => {
console.log(err);
});
tts.read("this is a test").then(() => { // is equal to { "text": "this is a test", "voice": voices[0], "volume": 100, "speed": 50 }
console.log("Ok");
}).catch((err) => {
console.log(err);
});
$ npm run-script tests
FAQs
A basic TTS manager
The npm package simpletts receives a total of 2 weekly downloads. As such, simpletts popularity was classified as not popular.
We found that simpletts 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.
Security News
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
Research
Security News
Malicious Koishi plugin silently exfiltrates messages with hex strings to a hardcoded QQ account, exposing secrets in chatbots across platforms.
Research
Security News
Malicious PyPI checkers validate stolen emails against TikTok and Instagram APIs, enabling targeted account attacks and dark web credential sales.