node-edge-tts
Advanced tools
Comparing version 1.1.3 to 1.1.4
{ | ||
"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 } | ||
] | ||
``` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
10552
59