npx skills add ...
npx skills add sonilo-ai/skills --skill video-to-sfx
Generate sound effects matched to a video using Sonilo — footsteps, impacts, ambience, foley — optionally scripted to specific timed segments, returning either the audio or a new video with the SFX muxed in. Use when the user has footage that needs sound design. For SFX from a text description alone, use the text-to-sfx skill; for music, use video-to-music.
npx skills add sonilo-ai/skills --skill video-to-sfx
Hand Sonilo a video and it generates sound effects matching what it sees —
footsteps, impacts, ambience, UI sounds, whatever the scene calls for — or pin
specific sounds to specific moments with segments. Generation runs as an async
task on the backend; the tools poll internally and hand back the saved file.
Setup: See the setup-api-key skill.
⚠️ Cost: every tool below makes an API call that may incur charges. Only call it when explicitly requested.
Pick one at the start of the session and stay on it. Do not mix the two inside a single job, and do not announce the choice.
video_to_sfx and friends) — use them. This is the preferred path: it needs no shell, and it is the only one that survives a very long generation. If a call fails to authenticate — rather than failing on its inputs — this transport is not usable in this session: go to 2 instead of retrying it.sonilo account exits 0 — use the CLI commands below. Same API, same account, same credential file. Probe with sonilo account, not sonilo whoami: whoami exits 0 even when signed out, so it cannot tell the two states apart.api.sonilo.com with curl to work around it; both transports handle uploads, polling and retries that a bare request does not.pip install sonilo)npm install sonilo)npm install -g sonilo-cli or pip install sonilo-cli)Always async under the hood — the CLI submits and polls for you. --format accepts wav|mp3|aac|flac.
Every call is task-based: the endpoint returns {"task_id": ...} (HTTP 202), and the result is fetched from GET /v1/tasks/{task_id} once status is terminal. The MCP tools do this polling for you and return the saved path directly — you only see the task_id if the call times out (see task-recovery).
| Tool | Description |
|---|---|
video_to_sfx(video_path? | video_url?, prompt?, segments?, audio_format?, output_directory?) | Generate SFX matched to a video. Returns audio only (not the source video). |
video_to_video_sfx(video_path? | video_url?, prompt?, segments?, output_directory?) | Same, but returns a new .mp4 with the SFX muxed in. |
| Parameter | Type | Default | Notes |
|---|---|---|---|
prompt | string | — | Optional overall description (max 2000 chars) — omit it to let Sonilo interpret the video on its own. |
video_path | string | — | .mp4/.mov/.webm/.m4v/.gif (gif must be animated) — a narrower set than the music tools. Max 180s (3 min), subject to the account's upload-size cap. |
video_url | string | — | HTTPS/HTTP URL to a video. Exactly one of video_path/video_url. |
segments | list[dict] | — | Script SFX to specific time ranges: [{"start": float, "end": float, "prompt": str}, ...]. See rules below. Max 30 segments. |
audio_format | string | aac (.m4a) | wav, mp3, aac, or flac. video_to_sfx only (video-to-video always outputs .mp4). |
output_directory | string | SONILO_MCP_BASE_PATH | Absolute, or relative to the base path. |
segments rulesValidated by the backend before any charge — an invalid list is rejected with a 422/400 and nothing is billed:
start must be 0.end must equal the next segment's start.end must be greater than its start.prompt must be non-empty, max 200 chars.end must not exceed the video's actual duration.No prompt is required — the model reads the cut. Quality comes from a time-segmented action map: what is on screen, what it's made of, what it does, second by second. The footage is the source of truth.
Before a paid call: probe the exact duration and existing audio, respect the 180 s cap (over = 422 reject, never truncated), and get sign-off — failed runs auto-refund, but your own retry is a new charge.
prompt/segments unset to let Sonilo read the whole video and decide; use segments when you need specific sounds pinned to specific moments (e.g. a punch landing at 2.3s, a door slam at 5.0s).video_to_video_sfx instead of video_to_sfx.Every tool here is async on the backend already; a long generation can still exceed TIME_OUT_SECONDS. If it does, the error carries a task_id — the job keeps running (and is already charged). Call get_sfx_task(task_id) — get_generation_task(task_id) on the hosted server — later to retrieve the result; see task-recovery.
video_to_sfx: saved in the requested audio_format (.wav/.mp3/.flac, or .m4a for the aac default), named from the prompt (slugified) or sfx-<first 8 chars of the task id>.video_to_video_sfx: a single .mp4 with the SFX muxed in.Common errors: 401 invalid key, 402 insufficient balance / trial exhausted, 413 file too large, 422 invalid parameters or malformed segments, 429 rate limit. See the account skill.
import { SoniloClient } from "sonilo";
const client = new SoniloClient(); // reads SONILO_API_KEY
const foley = await client.videoToSfx.generate({
video: "./action-scene.mp4",
prompt: "Footsteps on gravel, distant traffic, a door slam",
});
// video_to_video_sfx: get the video back with the effects muxed in
const video = await client.videoToVideoSfx.generate({
video: "./action-scene.mp4",
segments: [{ start: 0, end: 2, prompt: "footsteps on gravel" }],
});sonilo video-to-sfx --video action-scene.mp4 --output foley.wav# the muxed video, from the CLI
sonilo video-to-video-sfx --video clip.mp4 --prompt "footsteps, distant thunder" --output foley.mp4curl -X POST "https://api.sonilo.com/v1/video-to-sfx" \
-H "Authorization: Bearer $SONILO_API_KEY" \
-F "video=@action-scene.mp4" \
-F "prompt=Footsteps on gravel, distant traffic, a door slam"
# -> {"task_id": "..."} poll GET /v1/tasks/{task_id} until status is succeeded/failed