Sonilo V1 Video To Video Sound
Playground
Try it on WaveSpeedAI!Sonilo Video to Video Sound adds generated music and sound effects to input videos, creating one or more videos with new audio tracks for video sound design, soundtrack generation, ads, social content, and creative production workflows. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Features
Sonilo Video-to-Video Sound creates a complete video soundtrack from generated music and sound effects, then returns an MP4 video with the new audio track. Upload a video, describe the desired music and sound effects, optionally define time-aligned SFX segments, and generate a finished video with synchronized audio.
Why Choose This?
-
Video-to-video soundtrack generation
Generate music and sound effects for an input video, then package them into a final MP4 output. -
Music and SFX control
Usemusic_promptfor the generated music direction andsfx_promptfor the overall sound-effect style. -
Time-aligned sound segments
Usesegmentsto define sound effects for specific moments in the video. -
Speech preservation option
Enablepreserve_speechwhen the original speech from the input video should remain. -
Audio ducking support
Useduckingto lower generated music and sound effects while speech is present. -
Standard video output
The final MP4 video is returned as a URL in the standard WaveSpeed prediction response.
Parameters
| Parameter | Required | Description |
|---|---|---|
| video | Yes | Input video. Maximum duration: 180 seconds. Maximum file size: 300 MB. |
| music_prompt | No | Optional prompt describing the generated music. Maximum length: 2,000 characters. |
| sfx_prompt | No | Optional overall prompt describing the generated sound effects. Maximum length: 2,000 characters. |
| segments | Yes | Time-aligned sound-effect prompts. Each item includes start, end, and prompt. Provide 1 to 30 segments. |
| preserve_speech | No | Preserve speech from the input video. When enabled, ducking is ignored. |
| ducking | No | Lower generated music and sound effects while speech is present. |
Segments
Use segments when specific parts of the video need different sound effects.
Each segment contains:
| Field | Description |
|---|---|
| start | Segment start time in seconds. |
| end | Segment end time in seconds. |
| prompt | Sound-effect prompt for this segment. |
The first segment must start at 0. Adjacent segments must be continuous without gaps or overlap, and the final segment cannot exceed the source video duration.
How to Use
- Upload your video — Provide the input video that needs a generated soundtrack.
- Add music prompt optional — Describe the desired music style, mood, genre, tempo, or instrumentation.
- Add SFX prompt optional — Describe the overall sound-effect style, ambience, realism, or intensity.
- Add segments — Define time-aligned sound-effect prompts for specific moments in the video.
- Configure speech handling optional — Enable
preserve_speechif the original speech should remain. - Configure ducking optional — Use
duckingto reduce generated audio while speech is present. - Submit — Generate the final MP4 video with the new audio track.
Pricing
Pricing is $0.018 per second of input video duration. Billing duration is rounded up to the next whole second and capped at 180 seconds.
| Video Duration | Price |
|---|---|
| 1s | $0.018 |
| 10s | $0.18 |
| 60s | $1.08 |
| 180s | $3.24 |
Best Use Cases
- Full video soundtracks — Generate music and sound effects together for a complete video output.
- Social video production — Add synchronized audio to reels, shorts, ads, and campaign videos.
- Cinematic sound design — Create music, ambience, and action-based sound effects for visual scenes.
- Speech-aware soundtrack generation — Preserve original speech while adding generated background music and effects.
- Segment-based SFX control — Assign different sound effects to different moments in the video.
- Creative prototyping — Test music and sound design directions before final audio production.
Pro Tips
- Use
music_promptto describe genre, mood, tempo, instruments, and production style. - Use
sfx_promptto describe the overall ambience, realism, intensity, or sound palette. - Use
segmentswhen different moments need different sound effects. - Keep segment prompts short, concrete, and tied to visible action.
- Enable
preserve_speechwhen the input video contains important dialogue or narration. - Use
duckingwhen generated music and sound effects should sit behind speech. - Keep the input video within 180 seconds and 300 MB.
## Authentication
For authentication details, please refer to the [Authentication Guide](/api-authentication).
## API Endpoints
### Submit Task & Query Result
<ApiTabs submitUrl={model.submitUrl} resultUrl={model.resultUrl} payload={model.defaultValues} />
## Parameters
### Task Submission Parameters
#### Request Parameters
<RequestParams params={model.params} />
#### Response Parameters
<SubmitResponse />
#### Result Request Parameters
| Parameter | Type | Required | Default | Description |
|-----------|------|----------|---------|-------------|
| id | string | Yes | - | Task ID |
#### Result Response Parameters
| Parameter | Type | Description |
|-----------|------|-------------|
| code | integer | HTTP status code (e.g., 200 for success) |
| message | string | Status message (e.g., "success") |
| data | object | The prediction data object containing all details |
| data.id | string | Unique identifier for the prediction |
| data.model | string | Model ID used for the prediction |
| data.outputs | array<string \| object> | Array of generated outputs (empty when status is not completed). Items are usually URL strings, but may be text strings or structured result objects, depending on the model. |
| data.urls | object | Object containing related API endpoints |
| data.urls.get | string | URL to poll for the prediction result |
| data.status | string | Status: `created`, `processing`, `completed`, or `failed` |
| data.created_at | string | ISO timestamp of when the request was created |
| data.error | string | Error message (empty if no error occurred) |
| data.timings | object | Object containing timing details |
| data.timings.inference | integer | Inference time in milliseconds |