add_audio
Enhance video generations by integrating audio using a provided prompt and generation ID. Ideal for creating multimedia content with synchronized soundtracks on the MCP server.
Instructions
Adds audio to a video generation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
callback_url | No | ||
generation_id | Yes | ||
negative_prompt | No | ||
prompt | Yes |
Input Schema (JSON Schema)
{
"properties": {
"callback_url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Callback Url"
},
"generation_id": {
"title": "Generation Id",
"type": "string"
},
"negative_prompt": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Negative Prompt"
},
"prompt": {
"title": "Prompt",
"type": "string"
}
},
"required": [
"generation_id",
"prompt"
],
"title": "AddAudioInput",
"type": "object"
}