![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@andresaya/edge-tts
Advanced tools
Edge TTS is a package that allows access to the online text-to-speech service used by Microsoft Edge without the need for Microsoft Edge, Windows, or an API key.
Edge TTS is a powerful Text-to-Speech (TTS) package that leverages Microsoft's Edge capabilities. This package allows you to synthesize speech from text and manage voice options easily through a command-line interface (CLI).
You can install Edge TTS via npm. Run the following command in your terminal:
bun add @andresaya/edge-tts
npm install @andresaya/edge-tts
Command-Line Interface
You can install Edge TTS via npm. bun Run the following command in your terminal:
npm install -g @andresaya/edge-tts
bun install --global edge-tts
To synthesize speech from text, use the following command:
edge-tts synthesize -t "Hello, world!" -o hello_world_audio
To list available voices, run:
edge-tts voice-list
Integration into Your Project To use Edge TTS in your Bun project, you can import it like this:
import { EdgeTTS } from '@andresaya/edge-tts';
// Initialize the EdgeTTS service
const tts = new EdgeTTS();
// Get voices
const voices = await tts.getVoices();
console.log(voices); // Display available voices
// Synthesize text with options for voice, rate, volume, and pitch
await tts.synthesize("Hello, world!", 'en-US-AriaNeural', {
rate: '0%', // Speech rate (range: -100% to 100%)
volume: '0%', // Speech volume (range: -100% to 100%)
pitch: '0Hz' // Voice pitch (range: -100Hz to 100Hz)
});
// Export synthesized audio in different formats
tts.toBase64(); // Get audio as base64
await tts.toFile("output_audio"); // Save audio to file
await tts.toRaw(); // Get raw audio buffer
After synthesizing speech, you can export the audio in various formats:
toBase64
: Returns the audio as a Base64 string.toFile
: Saves the audio to a specified file (e.g., "output.wav").toRaw
: Returns the raw audio stream.If you want to use Edge TTS with PHP, you can check out the PHP version of this package, Edge TTS PHP
This project is licensed under the GNU General Public License v3 (GPLv3).
We would like to extend our gratitude to the developers and contributors of the following projects for their inspiration and groundwork:
FAQs
Edge TTS is a package that allows access to the online text-to-speech service used by Microsoft Edge without the need for Microsoft Edge, Windows, or an API key.
We found that @andresaya/edge-tts demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
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.