More modelsWavespeed aiMmaudio v2

Generate video with wavespeed-ai/mmaudio-v2

Generates a video using the wavespeed-ai/mmaudio-v2 model.

POST
/api/v1/model/generateVideo
AuthorizationBearer <token>

API key is required to authorize requests. Obtain a key from your AtlasCloud dashboard.

In: header

modelstring

model name

videoVideo Url

The URL of the video to generate the audio for.

promptPrompt

The prompt to generate the audio for.

duration?Duration

The duration of the audio to generate.

Default8
Range1 <= value <= 30
guidance_scale?Cfg Strength

The strength of Classifier Free Guidance.

Default4.5
Range0 <= value <= 20
mask_away_clip?Mask Away Clip

Whether to mask away the clip.

Defaultfalse
negative_prompt?Negative Prompt

The negative prompt to generate the audio for.

num_inference_steps?Num Steps

The number of steps to generate the audio for.

Default25
Range4 <= value <= 50

Response Body

curl -X POST "https://api.atlascloud.ai/api/v1/model/generateVideo" \  -H "Content-Type: application/json" \  -d '{    "model": "wavespeed-ai/mmaudio-v2",    "video": "https://static.atlascloud.ai/media/videos/1744961424459636159_srROLJGD.mp4",    "prompt": "Indian holy music"  }'
{
  "id": "7hm7nbwarxrm80cnq1yvmxz4m4",
  "logs": "...",
  "urls": {
    "cancel": "http://example.com",
    "result": "http://example.com"
  },
  "input": {
    "model": "wavespeed-ai/mmaudio-v2",
    "video": "https://static.atlascloud.ai/media/videos/1744961424459636159_srROLJGD.mp4",
    "prompt": "Indian holy music",
    "duration": 8,
    "guidance_scale": 4.5,
    "mask_away_clip": false,
    "negative_prompt": "string",
    "num_inference_steps": 25
  },
  "model": "black-forest-labs/flux-dev",
  "output": [
    "https://replicate.delivery/..."
  ],
  "status": "processing",
  "created_at": "2025-03-21T11:36:30.151Z",
  "has_nsfw_contents": [
    false
  ]
}