Sonilo Video-to-Sound (Music + SFX Combined)
Generate a music bed and sound effects for a video in one call, balanced against each other and mixed by the backend — one charge instead of two separate generations. Use this whenever a video needs a full soundtrack (score + SFX), not just one or the other.
Setup: See the setup-api-key skill.
⚠️ Cost: makes one API call that may incur charges (billed once, not twice, even though it produces both layers). Only call when explicitly requested.
Transport: MCP or CLI
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.
- Sonilo MCP tools visible in this session (
video_to_sound 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.
- No usable Sonilo MCP tools, but
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.
- Neither — stop and run the setup-api-key skill. Do not call
api.sonilo.com with curl to work around it; both transports handle uploads, polling and retries that a bare request does not.
Quick Start
MCP tool call (recommended)
video_to_sound(
video_path="~/Desktop/trailer.mp4",
music_prompt="Cinematic, building tension",
sfx_prompt="Footsteps, wind, distant thunder"
)
video_to_video_sound(
video_path="~/Desktop/trailer.mp4",
music_prompt="Cinematic, building tension"
)
Python (pip install sonilo)
from sonilo import Sonilo
client = Sonilo() # reads SONILO_API_KEY
mix = client.video_to_sound.generate(
video="trailer.mp4",
music_prompt="Cinematic, building tension",
sfx_prompt="Footsteps, wind, distant thunder",
)
mix.save("soundtrack.wav")
video = client.video_to_video_sound.generate(video="trailer.mp4", music_prompt="Cinematic, building tension")
video.save("scored.mp4")
JavaScript / TypeScript (npm install sonilo)
import { SoniloClient, download } from "sonilo";
import { writeFile } from "node:fs/promises";
const client = new SoniloClient(); // reads SONILO_API_KEY
const mix = await client.videoToSound.generate({
video: "./trailer.mp4",
musicPrompt: "Cinematic, building tension",
sfxPrompt: "Footsteps, wind, distant thunder",
});
await writeFile("soundtrack.wav", await download(mix.output_url));
const video = await client.videoToVideoSound.generate({
video: "./trailer.mp4",
musicPrompt: "Cinematic, building tension",
});
await writeFile("scored.mp4", await download(video.output_url));
CLI (npm install -g sonilo-cli or pip install sonilo-cli)
sonilo video-to-sound --video trailer.mp4 \
--music-prompt "Cinematic, building tension" --sfx-prompt "Footsteps, wind, distant thunder" \
--output soundtrack.wav
sonilo video-to-video-sound --video trailer.mp4 --music-prompt "Cinematic, building tension"
Unlike the music/sound-effects skills, both tools here have CLI commands. --stem music/--stem sfx (repeatable) additionally saves the individual layers next to the combined output.
cURL (raw REST API, no MCP host)
curl -X POST "https://api.sonilo.com/v1/video-to-sound" \
-H "Authorization: Bearer $SONILO_API_KEY" \
-F "video=@trailer.mp4" \
-F "music_prompt=Cinematic, building tension" \
-F "sfx_prompt=Footsteps, wind, distant thunder"
# -> {"task_id": "..."} poll GET /v1/tasks/{task_id}
Both endpoints are task-based (202 + poll), same as the sound-effects tools — the MCP tool waits for you.
Tools
| Tool |
Description |
video_to_sound(video_path? | video_url?, music_prompt?, sfx_prompt?, segments?, preserve_speech?, ducking?, output_format?, variants_num?, output_directory?) |
Generate and mix music + SFX for a video, returns a single audio file. |
video_to_video_sound(video_path? | video_url?, music_prompt?, sfx_prompt?, segments?, keep_original_sound?, preserve_speech?, ducking?, variants_num?, output_directory?) |
Same, but returns a new .mp4 with the mixed soundtrack muxed in. By default the source's own audio is dropped — see keep_original_sound. |
Parameters
| Parameter |
Type |
Default |
Notes |
video_path |
string |
— |
.mp4/.mov/.webm/.m4v/.gif (gif must be animated). Max 180s (3 min), subject to the account's upload-size cap. |
video_url |
string |
— |
HTTPS/HTTP URL. Exactly one of video_path/video_url. |
music_prompt |
string |
— |
Style hint for the music bed (max 2000 chars). Optional — omit to let Sonilo decide. |
sfx_prompt |
string |
— |
Description of the SFX layered over the music (max 2000 chars). Optional. |
segments |
list[dict] |
— |
Per-segment SFX descriptions — same schema and validation rules as in the video-to-sfx skill. Max 30 segments. |
preserve_speech |
bool |
false |
Keep the source video's speech audible in the mix. |
ducking |
bool |
false |
Brings the source video's own speech into the mix and dips the generated music under it. Off by default: with ducking and preserve_speech both unset, the result carries the generated music and effects alone and no music_processed stem exists. Pass true for any video with dialogue or narration that should stay audible. |
keep_original_sound |
bool |
false |
video_to_video_sound only. Keeps the whole source track (dialogue, room tone, existing effects) with the generated mix over it, rather than replacing it. Add ducking=true to dip the mix under the voice instead of a flat blend. Supersedes preserve_speech. |
output_format |
string |
wav |
video_to_sound only — video_to_video_sound always returns an .mp4. wav, m4a, or mp3 (320 kbps). Sets the combined track's container only; stems keep their own native formats. |
variants_num |
int |
1 |
1–10 distinct mixes in one request, one file each. Cost scales linearly and any value above 1 is never free-trial covered — confirm the count with the user before calling. |
output_directory |
string |
SONILO_MCP_BASE_PATH |
Absolute, or relative to the base path. |
Prompting
No prompt is required — the model reads the cut. A short structured brief
adds your intent on top. Since this endpoint generates music and SFX in
one balanced call, both crafts apply:
Workflow Tips
- Use this instead of chaining
video_to_music + video_to_sfx. The two layers are balanced against each other by the backend (so the SFX doesn't fight the score), and it's one charge, not two.
- Both
music_prompt and sfx_prompt are optional — you can leave both unset and let Sonilo interpret the whole scene, or set just one to steer that layer while leaving the other automatic.
ducking is off by default — turn it on for anything with a voice. Left off, the source speech is not in the mix at all: the output is generated music and effects only. That is the right default for a silent or music-only clip and the wrong one for a talking head, so check the source audio before calling (see the pre-flight reference) rather than after the user tells you the narration is gone.
- For
video_to_video_sound, the source audio is dropped unless you say otherwise. keep_original_sound=true keeps the whole original track under the generated mix; preserve_speech=true keeps only the isolated speech. If a user reports "my dialogue disappeared", this is the fix.
- Only the combined mixed result is saved. The individual music/SFX/processed stems exist in the task body on the backend but are deliberately not downloaded — four files per call would bury the one the user actually wants. If stems are needed, call the REST API directly and inspect the task body.
- Want the video back with the soundtrack baked in? Use
video_to_video_sound instead of video_to_sound.
- Don't know what it should sound like? Run video-analysis first: one call returns a section plan plus ready-to-use generation prompts read off the footage, which beats guessing a prompt and rerolling. It is a paid call that generates nothing, so use it when the brief is genuinely unclear — not when the user already told you what they want.
Recovering a Timed-Out Call
Both tools are async; on timeout the error carries a task_id and the job keeps running (already charged). Call get_sfx_task(task_id), or get_generation_task(task_id) on the hosted server, later — see task-recovery.
Output Files
video_to_sound: a single .wav, named from music_prompt (falling back to sfx_prompt, then sound-<first 8 chars of the task id>).
video_to_video_sound: a single .mp4 with the mix muxed in, named the same way (fallback v2v-sound-<first 8 chars of the task id>).
Error Handling
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.
1---2name: video-to-sound3description: Generate music AND sound effects for a video in a single balanced, single-charge call using Sonilo. Use instead of calling the music and sound-effects skills separately for the same video — the two layers are mixed and ducked against each other by the backend. Returns a mixed audio track, or a new video with it muxed in.4license: MIT5---6
7# Sonilo Video-to-Sound (Music + SFX Combined)
8
9Generate a music bed and sound effects for a video in one call, balanced against each other and mixed by the backend — one charge instead of two separate generations. Use this whenever a video needs a **full soundtrack** (score + SFX), not just one or the other.
10
11> **Setup:** See the [setup-api-key](../setup-api-key) skill.
12
13> ⚠️ **Cost:** makes one API call that may incur charges (billed once, not twice, even though it produces both layers). Only call when explicitly requested.
14
15## Transport: MCP or CLI
16
17Pick one at the start of the session and stay on it. Do not mix the two inside
18a single job, and do not announce the choice.
19
201. **Sonilo MCP tools visible in this session** (`video_to_sound` 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.
212. **No usable Sonilo MCP tools, but `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.
223. **Neither** — stop and run the [setup-api-key](../setup-api-key) skill. Do not call `api.sonilo.com` with curl to work around it; both transports handle uploads, polling and retries that a bare request does not.
23
24## Quick Start
25
26### MCP tool call (recommended)
27
28```
29video_to_sound(
30 video_path="~/Desktop/trailer.mp4",
31 music_prompt="Cinematic, building tension",
32 sfx_prompt="Footsteps, wind, distant thunder"
33)
34```
35
36```
37video_to_video_sound(
38 video_path="~/Desktop/trailer.mp4",
39 music_prompt="Cinematic, building tension"
40)
41```
42
43### Python (`pip install sonilo`)
44
45```python
46from sonilo import Sonilo
47
48client = Sonilo() # reads SONILO_API_KEY
49
50mix = client.video_to_sound.generate(
51 video="trailer.mp4",
52 music_prompt="Cinematic, building tension",
53 sfx_prompt="Footsteps, wind, distant thunder",
54)
55mix.save("soundtrack.wav")
56
57video = client.video_to_video_sound.generate(video="trailer.mp4", music_prompt="Cinematic, building tension")
58video.save("scored.mp4")
59```
60
61### JavaScript / TypeScript (`npm install sonilo`)
62
63```ts
64import { SoniloClient, download } from "sonilo";
65import { writeFile } from "node:fs/promises";
66
67const client = new SoniloClient(); // reads SONILO_API_KEY
68
69const mix = await client.videoToSound.generate({
70 video: "./trailer.mp4",
71 musicPrompt: "Cinematic, building tension",
72 sfxPrompt: "Footsteps, wind, distant thunder",
73});
74await writeFile("soundtrack.wav", await download(mix.output_url));
75
76const video = await client.videoToVideoSound.generate({
77 video: "./trailer.mp4",
78 musicPrompt: "Cinematic, building tension",
79});
80await writeFile("scored.mp4", await download(video.output_url));
81```
82
83### CLI (`npm install -g sonilo-cli` or `pip install sonilo-cli`)
84
85```bash
86sonilo video-to-sound --video trailer.mp4 \
87 --music-prompt "Cinematic, building tension" --sfx-prompt "Footsteps, wind, distant thunder" \
88 --output soundtrack.wav
89
90sonilo video-to-video-sound --video trailer.mp4 --music-prompt "Cinematic, building tension"
91```
92
93Unlike the music/sound-effects skills, **both tools here have CLI commands**. `--stem music`/`--stem sfx` (repeatable) additionally saves the individual layers next to the combined output.
94
95### cURL (raw REST API, no MCP host)
96
97```bash
98curl -X POST "https://api.sonilo.com/v1/video-to-sound" \
99 -H "Authorization: Bearer $SONILO_API_KEY" \
100 -F "video=@trailer.mp4" \
101 -F "music_prompt=Cinematic, building tension" \
102 -F "sfx_prompt=Footsteps, wind, distant thunder"
103# -> {"task_id": "..."} poll GET /v1/tasks/{task_id}
104```
105
106Both endpoints are task-based (202 + poll), same as the sound-effects tools — the MCP tool waits for you.
107
108## Tools
109
110| Tool | Description |
111|------|-------------|
112| `video_to_sound(video_path? \| video_url?, music_prompt?, sfx_prompt?, segments?, preserve_speech?, ducking?, output_format?, variants_num?, output_directory?)` | Generate and mix music + SFX for a video, returns a single **audio** file. |
113| `video_to_video_sound(video_path? \| video_url?, music_prompt?, sfx_prompt?, segments?, keep_original_sound?, preserve_speech?, ducking?, variants_num?, output_directory?)` | Same, but returns a **new `.mp4`** with the mixed soundtrack muxed in. **By default the source's own audio is dropped** — see `keep_original_sound`. |
114
115## Parameters
116
117| Parameter | Type | Default | Notes |
118|-----------|------|---------|-------|
119| `video_path` | string | — | `.mp4/.mov/.webm/.m4v/.gif` (gif must be animated). Max **180s (3 min)**, subject to the account's upload-size cap. |
120| `video_url` | string | — | HTTPS/HTTP URL. Exactly one of `video_path`/`video_url`. |
121| `music_prompt` | string | — | Style hint for the music bed (max 2000 chars). Optional — omit to let Sonilo decide. |
122| `sfx_prompt` | string | — | Description of the SFX layered over the music (max 2000 chars). Optional. |
123| `segments` | list[dict] | — | Per-segment SFX descriptions — same schema and validation rules as in the [video-to-sfx](../video-to-sfx) skill. Max 30 segments. |
124| `preserve_speech` | bool | `false` | Keep the source video's speech audible in the mix. |
125| `ducking` | bool | `false` | Brings the source video's own speech into the mix and dips the generated music under it. **Off by default**: with `ducking` and `preserve_speech` both unset, the result carries the generated music and effects alone and no `music_processed` stem exists. Pass `true` for any video with dialogue or narration that should stay audible. |
126| `keep_original_sound` | bool | `false` | `video_to_video_sound` only. Keeps the **whole** source track (dialogue, room tone, existing effects) with the generated mix over it, rather than replacing it. Add `ducking=true` to dip the mix under the voice instead of a flat blend. Supersedes `preserve_speech`. |
127| `output_format` | string | `wav` | `video_to_sound` only — `video_to_video_sound` always returns an `.mp4`. `wav`, `m4a`, or `mp3` (320 kbps). Sets the combined track's container only; stems keep their own native formats. |
128| `variants_num` | int | `1` | 1–10 distinct mixes in one request, one file each. **Cost scales linearly and any value above 1 is never free-trial covered** — confirm the count with the user before calling. |
129| `output_directory` | string | `SONILO_MCP_BASE_PATH` | Absolute, or relative to the base path. |
130
131## Prompting
132
133No prompt is required — the model reads the cut. A short structured brief
134adds your intent on top. Since this endpoint generates music **and** SFX in
135one balanced call, both crafts apply:
136
137- Pre-flight (inspect the video, caps, credits, verification): [references/preflight.md](../references/preflight.md)
138- Music brief craft: [references/music-prompting.md](../references/music-prompting.md) · SFX action-map craft: [references/sfx-prompting.md](../references/sfx-prompting.md)
139
140## Workflow Tips
141
142- **Use this instead of chaining `video_to_music` + `video_to_sfx`.** The two layers are balanced against each other by the backend (so the SFX doesn't fight the score), and it's one charge, not two.
143- Both `music_prompt` and `sfx_prompt` are optional — you can leave both unset and let Sonilo interpret the whole scene, or set just one to steer that layer while leaving the other automatic.
144- **`ducking` is off by default — turn it on for anything with a voice.** Left off, the source speech is not in the mix at all: the output is generated music and effects only. That is the right default for a silent or music-only clip and the wrong one for a talking head, so check the source audio before calling (see the pre-flight reference) rather than after the user tells you the narration is gone.
145- **For `video_to_video_sound`, the source audio is dropped unless you say otherwise.** `keep_original_sound=true` keeps the whole original track under the generated mix; `preserve_speech=true` keeps only the isolated speech. If a user reports "my dialogue disappeared", this is the fix.
146- Only the **combined mixed result** is saved. The individual music/SFX/processed stems exist in the task body on the backend but are deliberately not downloaded — four files per call would bury the one the user actually wants. If stems are needed, call the REST API directly and inspect the task body.
147- Want the video back with the soundtrack baked in? Use `video_to_video_sound` instead of `video_to_sound`.
148- **Don't know what it should sound like?** Run [video-analysis](../video-analysis) first: one call returns a section plan plus ready-to-use generation prompts read off the footage, which beats guessing a prompt and rerolling. It is a paid call that generates nothing, so use it when the brief is genuinely unclear — not when the user already told you what they want.
149
150## Recovering a Timed-Out Call
151
152Both tools are async; on timeout the error carries a `task_id` and the job keeps running (already charged). Call `get_sfx_task(task_id)`, or `get_generation_task(task_id)` on the hosted server, later — see [task-recovery](../task-recovery).
153
154## Output Files
155
156- `video_to_sound`: a single `.wav`, named from `music_prompt` (falling back to `sfx_prompt`, then `sound-<first 8 chars of the task id>`).
157- `video_to_video_sound`: a single `.mp4` with the mix muxed in, named the same way (fallback `v2v-sound-<first 8 chars of the task id>`).
158
159## Error Handling
160
161Common 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](../account) skill.