ddvinh1/video-sfx
Public
5
runs
Run ddvinh1/video-sfx 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 |
|---|---|---|---|
| model |
None
|
qwen2
|
Model to use
|
| video |
string
|
Input video file
|
|
| prompt |
string
|
|
Custom prompt for the model (optional, uses default if empty)
|
| negative_prompt |
string
|
|
Negative prompt
|
| max_sound_duration |
number
|
0
|
Maximum duration in seconds for sound effects (0 = no limit)
|
{
"type": "object",
"title": "Input",
"required": [
"video"
],
"properties": {
"model": {
"enum": [
"qwen2",
"qwen3"
],
"type": "string",
"title": "model",
"description": "Model to use",
"default": "qwen2",
"x-order": 1
},
"video": {
"type": "string",
"title": "Video",
"format": "uri",
"description": "Input video file"
},
"prompt": {
"type": "string",
"title": "Prompt",
"default": "",
"description": "Custom prompt for the model (optional, uses default if empty)"
},
"negative_prompt": {
"type": "string",
"title": "Negative Prompt",
"default": "",
"description": "Negative prompt"
},
"max_sound_duration": {
"type": "number",
"title": "Max Sound Duration",
"default": 0,
"minimum": 0,
"description": "Maximum duration in seconds for sound effects (0 = no limit)"
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
Schema
{
"type": "object",
"title": "Output",
"additionalProperties": true
}