charlesmccarthy
/
hallo
- Public
- 30 runs
Run charlesmccarthy/hallo with an API
Use one of our client libraries to get started quickly. Clicking on a library will take you to the Playground tab where you can tweak different inputs, see the results, and copy the corresponding code to use in your own project.
Input schema
The fields you can use to run this model with an API. If you don't give a value for a field its default value will be used.
Field | Type | Default value | Description |
---|---|---|---|
source_image |
string
|
Source image file
|
|
driving_audio |
string
|
Driving audio file
|
|
output |
string
|
output.mp4
|
Output video file name
|
pose_weight |
number
|
0.5
|
Weight of pose
|
face_weight |
number
|
0.5
|
Weight of face
|
lip_weight |
number
|
0.5
|
Weight of lip
|
face_expand_ratio |
number
|
1
|
Face region expansion ratio
|
config |
string
|
config.yaml
|
Configuration file path
|
{
"type": "object",
"title": "Input",
"required": [
"source_image",
"driving_audio"
],
"properties": {
"config": {
"type": "string",
"title": "Config",
"default": "config.yaml",
"x-order": 7,
"description": "Configuration file path"
},
"output": {
"type": "string",
"title": "Output",
"default": "output.mp4",
"x-order": 2,
"description": "Output video file name"
},
"lip_weight": {
"type": "number",
"title": "Lip Weight",
"default": 0.5,
"x-order": 5,
"description": "Weight of lip"
},
"face_weight": {
"type": "number",
"title": "Face Weight",
"default": 0.5,
"x-order": 4,
"description": "Weight of face"
},
"pose_weight": {
"type": "number",
"title": "Pose Weight",
"default": 0.5,
"x-order": 3,
"description": "Weight of pose"
},
"source_image": {
"type": "string",
"title": "Source Image",
"format": "uri",
"x-order": 0,
"description": "Source image file"
},
"driving_audio": {
"type": "string",
"title": "Driving Audio",
"format": "uri",
"x-order": 1,
"description": "Driving audio file"
},
"face_expand_ratio": {
"type": "number",
"title": "Face Expand Ratio",
"default": 1,
"x-order": 6,
"description": "Face region expansion ratio"
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
Schema
{
"type": "string",
"title": "Output",
"format": "uri"
}