Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

node-edge-tts

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-edge-tts - npm Package Compare versions

Comparing version 1.1.3 to 1.1.4

2

package.json
{
"name": "node-edge-tts",
"version": "1.1.3",
"version": "1.1.4",
"description": "node-edge-tts is a module that using Microsoft Edge's online TTS (Text-to-Speech) service on the Node.js",

@@ -5,0 +5,0 @@ "keywords": [

@@ -36,2 +36,25 @@ # node-edge-tts

```
You can find the available options for speechconfig at [voice/lang](https://learn.microsoft.com/en-us/azure/ai-services/speech-service/language-support?tabs=tts)|[outputFormat](https://learn.microsoft.com/en-us/dotnet/api/microsoft.cognitiveservices.speech.speechsynthesisoutputformat?view=azure-dotnet), but not all options are accessible due to limitations of the services provided by Microsoft Edge.
You can find the available options for speechconfig at [voice/lang](https://learn.microsoft.com/en-us/azure/ai-services/speech-service/language-support?tabs=tts)|[outputFormat](https://learn.microsoft.com/en-us/dotnet/api/microsoft.cognitiveservices.speech.speechsynthesisoutputformat?view=azure-dotnet), but not all options are accessible due to limitations of the services provided by Microsoft Edge.
### subtitles
Subtitles are json files with the same name as the audio file, as shown below:
```
\\ the *start* is the time point at which the *part* begins, measured in milliseconds.
[
{ "part": "node-edge-tts ", "start": 212 },
{ "part": "is ", "start": 1412 },
{ "part": "a ", "start": 1575 },
{ "part": "module ", "start": 1625 },
{ "part": "that ", "start": 2175 },
{ "part": "utilizes ", "start": 2512 },
{ "part": "Microsoft ", "start": 3300 },
{ "part": "Edge's ", "start": 3912 },
{ "part": "online ", "start": 4337 },
{ "part": "TTS (", "start": 4875 },
{ "part": "Text-to-Speech) ", "start": 5712 },
{ "part": "service ", "start": 6900 },
{ "part": "on ", "start": 7487 },
{ "part": "Node.", "start": 7687 },
{ "part": "js\"", "start": 8087 }
]
```
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc