Audio-to-Video
Technical documentation for dryAPI APIs, integration guides, and operational references.
Endpoint for requesting audio2video inference
Audio-to-Video generates video clips conditioned on an audio file and a text prompt. You can optionally provide first and last frame images to control the visual start and end points. The endpoint returns a task ID to track processing status.
NOTE
Prerequisite: To ensure a successful request, you must first consult the Model Selection endpoint to identify a valid model
slug, check specific limits and features.
OpenAPI
Request Aud2 Video
Authorization
bearerAuth In: header
Header Parameters
"application/json""application/json"Request Body
multipart/form-data
Audio to video generation parameters
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
application/json
application/json
curl -X POST "https://api.dryapi.dev/api/v1/client/aud2video" \ -H "Accept: application/json" \ -F prompt="A beautiful sunset over mountains with dramatic music" \ -F audio="string" \ -F width="512" \ -F height="512" \ -F frames="97" \ -F seed="42" \ -F model="Ltx2_19B_Dist_FP8"{
"data": {
"request_id": "c08a339c-73e5-4d67-a4d5-231302fbff9a"
}
}{
"data": {},
"message": "string",
"errors": [
null
],
"statusCode": 0
}{
"data": {},
"message": "string",
"errors": [
null
],
"statusCode": 0
}{
"message": "The selected model does not support Text To Image.",
"errors": {
"model": [
"The selected model does not support Text To Image."
]
}
}{
"message": "Too Many Attempts."
}