MsEdgeTTS
MsEdgeTTS copied to clipboard
A simple Azure Speech Service module that uses the Microsoft Edge Read Aloud API
is there a possibility to get JSON format as output with start time end time and it's value (resp word)
I'm working on a program which requires the generation of many TTS audio streams. In this program, I iterate through each string using a for loop and have it read...
I tested this in my react/vite app but it keeps exiting with errors from node modules. Could anyone tell me if this library works on the browser as well. thanks
```ts import { MsEdgeTTS, OUTPUT_FORMAT } from "msedge-tts"; (async () => { try { const tts = new MsEdgeTTS(); await tts.setMetadata("en-US-AriaNeural", OUTPUT_FORMAT.WEBM_24KHZ_16BIT_MONO_OPUS).catch(e => { console.log("An error occurred:"); console.error(e); }); const...