GET
/v1/schemas/fal/audio/mirelo-ai%2Fsfx-v1.5%2Fvideo-to-audio
Accept:
Request body
6 properties · 1 required · 0 $defs| property | type | description | constraints |
|---|---|---|---|
| video_url* | string | A video url that can accessed from the API to process and add sound effects | length ≥ 1 · length ≤ 2083 · format: uri |
| num_samples | integer | The number of samples to generate from the model | 2 ≤ n ≤ 8 · nullable |
| duration | number | The duration of the generated audio in seconds | 1 ≤ n ≤ 10 · nullable |
| start_offset | number | The start offset in seconds to start the audio generation from | n ≥ 0 · nullable |
| seed | integer | The seed to use for the generation. If not provided, a random seed will be used | n ≥ 1 · nullable |
| text_prompt | string | Additional description to guide the model | nullable |
Validate a payload
before you spend tokensshell
$ curl -X POST https://modelschemas.com/v1/validate \
-d '{"provider":"fal","endpointId":"mirelo-ai/sfx-v1.5/video-to-audio","payload":{…}}'
→ {"valid": false, "errors": [{"path": "#", "keyword": "required", …}]}