https://github.com/pseudocc/acc-predict-wrapper
https://github.com/pseudocc/acc-predict-wrapper
Last synced: 26 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/pseudocc/acc-predict-wrapper
- Owner: pseudocc
- Created: 2021-10-26T03:33:47.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-25T03:39:27.000Z (almost 4 years ago)
- Last Synced: 2026-03-29T17:09:02.392Z (3 months ago)
- Language: JavaScript
- Size: 114 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# acc-predict-wrapper
An integrated API call for automation.
## Inputs
1. SSML file to predict
1. Voice perferences JSON
This should contains exactly on element with `roleName` Narrator.
Before preparing your preferences preset,
you might need to list all your voices first.
```json
[
{
"roleName": "Narrator",
"preferredVoiceInfo": {
"type": "StandardVoice",
"name": "Microsoft Server Speech Text to Speech Voice (zh-CN, XiaomoNeural)",
"id": "0ca5d0ac-5a66-4d8e-9140-de556ef3916d"
}
},
{
"roleName": "YoungAdultMale",
"preferredVoiceInfo": {
"type": "StandardVoice",
"name": "Microsoft Server Speech Text to Speech Voice (zh-CN, YunxiNeural)",
"id": "1011ca97-3e33-4e7c-8dda-a22dc244bafc"
}
},
...
]
```
## Outputs
1. Predicted SSML file(s)
1. Error messages on command line
## Samples
CLI tool for [nodejs](https://github.com/pseudocc/acc-predict-wrapper/tree/main/nodejs)
## Notice
One subscription can only submit 200 export tasks at a time.
Be careful while running the CLI tool on parallel.