
Security News
GitHub Actions Checkout Now Blocks Risky pull_request_target Checkouts
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.
text-to-mp3
Advanced tools
This is a Simple script to generate MP3 from text, using public Google Translate API, so it have the limits of public usage
#Text to MP3 This is a Simple script to generate MP3 from text, using public Google Translate API, so it have the limits of public usage
Install this module through npm or clone it:
npm install --save text-to-mp3
var txtomp3 = require("text-to-mp3");
txtomp3.getMp3("Ciao Mondo", function(err, binaryStream){
if(err){
console.log(err);
return;
}
var file = fs.createWriteStream("FileName.mp3"); // write it down the file
file.write(binaryStream);
file.end();
});
var txtomp3 = require("text-to-mp3");
txtomp3.getMp3("Ciao Mondo").then(function(binaryStream){
var file = fs.createWriteStream("FileName.mp3"); // write it down the file
file.write(binaryStream);
file.end();
})
.catch(function(err){
console.log("Error", err);
});
var txtomp3 = require("text-to-mp3");
txtomp3.saveMP3("Ciao Mondo", "FileName.mp3", function(err, absoluteFilePath){
if(err){
console.log(err);
return;
}
console.log("File saved :", absoluteFilePath); //"File saved : /home/enrico/WebstormProjects/textToMp3/FileName.mp3"
});
var txtomp3 = require("text-to-mp3");
//if you do not provide a mp3 extension, or you provide it wrong, it will automatically append.
txtomp3.saveMP3("Ciao Mondo", "FileName").then(function(absoluteFilePath){
console.log("File saved :", absoluteFilePath); //"File saved : /home/enrico/WebstormProjects/textToMp3/FileName.mp3"
})
.catch(function(err){
console.log("Error", err);
});
git clone https://github.com/enricoaleandri/text-to-mp3.git
cd text-to-mp3
npm install
node textToMp3.js -t "Texto to generate speech" -f "filenameSpeech.mp3"
Fork it!
Create your feature branch: git checkout -b my-new-feature
Commit your changes: git commit -am 'Add some feature'
Push to the branch: git push origin my-new-feature
Submit a pull request :D
Lead Developer - Enrico Aleandri (@enricoaleandri)
The MIT License (MIT)
Copyright (c) 2017 Enrico Aleandri
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
This is a Simple script to generate MP3 from text, using public Google Translate API, so it have the limits of public usage
The npm package text-to-mp3 receives a total of 101 weekly downloads. As such, text-to-mp3 popularity was classified as not popular.
We found that text-to-mp3 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
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.

Product
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.

Product
Socket MCP now lets AI assistants review org alerts, investigate threats using the Socket threat feed, and inspect package files in addition to dependency scoring.