Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
simple-gtts
Advanced tools
await gTTS("hello there", {
lang: "en-us",
path: "./hello.mp3"
})
$ npm i simple-gtts
import { gTTS } from "simple-gtts"
gTTS turns text into speech, and can output either a file or a buffer
// Include a path to save to a file
await gTTS("hello there", {
path: "./hello.mp3"
})
// Not including a path will return a buffer
const buff = await gTTS("hello there")
You can change the language the text is read in by providing a language code
// Languages work with both files and buffers
await gTTS("hello there", {
lang: "fr",
path: "./hello.mp3"
})
To view the available languages, you can import and console.log them
import {languages} from "simple-gtts"
console.log(languages)
FAQs
Simple Google text to speech
We found that simple-gtts 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.