-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
62d6118
commit 77d463d
Showing
2 changed files
with
64 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
--- | ||
layout: default | ||
title: Text-to-Speech Generation | ||
description: Job request to convert text input to an audio file. | ||
--- | ||
|
||
# Input | ||
Clients provide an Input such as a prompt, an event or job ID. | ||
|
||
|
||
## `language` | ||
|
||
Specifies the output language of the video. Input language is auto-detected. | ||
|
||
``` | ||
[ "param", "language", "en"] | ||
``` | ||
|
||
# Params | ||
|
||
|
||
| ID | Language | | ||
| ---- | --------- | | ||
| en | English | | ||
| es | Spanish | | ||
| fr | French | | ||
| de | German | | ||
| it | Italian | | ||
| pt | Portugese | | ||
| pl | Polish | | ||
| tr | Turkish | | ||
| ru | Russian | | ||
| cs | Czech | | ||
| ar | Arabic | | ||
| zh-cn| Chinese | | ||
| ja | Japanese | | ||
| hu | Hungarian | | ||
| ko | Korean | | ||
|
||
|
||
|
||
# Output | ||
|
||
A link to the generated audio. | ||
|
||
# Example | ||
|
||
## Generates the output based on the input link and params | ||
|
||
```json | ||
{ | ||
"content": "", | ||
"kind": 5250, | ||
"tags": [ | ||
[ "i", "Mic Check, one, two.", "text" ], | ||
[ "param", "language", "en"], | ||
] | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters