Skip to main content

Train Text to Video Endpoint

Overview

This endpoint is used to create video from a text prompt based on trained or on public models.

You can make an API call to your trained models as well as to any public model.

This endpoint generates and returns a video from a text passed in the request body.

Text to video endpoint result

Request

--request POST 'https://stablediffusionapi.com/api/v4/dreambooth/text2video' \

Make a POST request to https://stablediffusionapi.com/api/v4/dreambooth/text2video endpoint and pass the required parameters as a request body.

Body Attributes

ParameterDescription
keyYour API Key used for request authorization.
model_idThe ID of the model to be used. It can be public or your trained model.
promptText prompt with description of the things you want in the video to be generated.
negative_promptItems you don't want in the video.
widthMax Height: Width: 1024x1024.
heightMax Height: Width: 1024x1024.
schedulerUse it to set a scheduler.
num_inference_stepsNumber of denoising steps (minimum: 1; maximum: 50).
enhance_promptEnhance prompts for better results; default: yes, options: yes/no.
guidance_scaleScale for classifier-free guidance (minimum: 1; maximum: 20).
strengthPrompt strength when using init image. 1.0 corresponds to full destruction of information in the init image.
seedSeed is used to reproduce results, same seed will give you same result in return again. Pass null for a random number.
webhookSet an URL to get a POST API call once the video generation is complete.
track_idThis ID is returned in the response to the webhook API call. This will be used to identify the webhook request.

Schedulers

This endpoint also supports schedulers. Use the "scheduler" parameter in the request body to pass a specific scheduler from the list below:

  • DDPMScheduler
  • DDIMScheduler
  • PNDMScheduler
  • LMSDiscreteScheduler
  • EulerDiscreteScheduler
  • EulerAncestralDiscreteScheduler
  • DPMSolverMultistepScheduler
  • HeunDiscreteScheduler
  • KDPM2DiscreteScheduler
  • DPMSolverSinglestepScheduler
  • KDPM2AncestralDiscreteScheduler
  • UniPCMultistepScheduler
  • DDIMInverseScheduler
  • DEISMultistepScheduler
  • IPNDMScheduler
  • KarrasVeScheduler
  • ScoreSdeVeScheduler
  • LCMScheduler

Example

Body

Body
{
"key": "",
"model_id": "your_model_id",
"prompt": "a cat sitting on a bench",
"negative_prompt": null,
"width": "512",
"height": "512",
"scheduler": null,
"num_inference_steps": "30",
"enhance_prompt": "yes",
"guidance_scale": 7.5,
"strength": 0.7,
"seed": null,
"webhook": null,
"track_id": null
}

Request

var myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");

var raw = JSON.stringify({
"key": "",
"model_id": "your_model_id",
"prompt": "a cat sitting on a bench",
"negative_prompt": null,
"width": "512",
"height": "512",
"scheduler": null,
"num_inference_steps": "30",
"enhance_prompt": "yes",
"guidance_scale": 7.5,
"strength": 0.7,
"seed": null,
"webhook": null,
"track_id": null
});

var requestOptions = {
method: 'POST',
headers: myHeaders,
body: raw,
redirect: 'follow'
};

fetch("https://stablediffusionapi.com/api/v4/dreambooth/text2video", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));

Response

{
"status": "processing",
"tip": "for faster speed, keep resolution upto 512x512",
"eta": 21.880000000000003,
"messege": "Try to fetch request after given estimated time",
"fetch_result": "https://stablediffusionapi.com/api/v3/dreambooth/fetch/13801718",
"id": 13801718,
"output": [],
"meta": {
"prompt": "mdjrny-v4 style a cat sitting on a bench DSLR photography, sharp focus, Unreal Engine 5, Octane Render, Redshift, ((cinematic lighting)), f/1.4, ISO 200, 1/160s, 8K, RAW, unedited, symmetrical balance, in-frame",
"model_id": "midjourney",
"scheduler": "UniPCMultistepScheduler",
"safetychecker": "no",
"negative_prompt": " ((out of frame)), ((extra fingers)), mutated hands, ((poorly drawn hands)), ((poorly drawn face)), (((mutation))), (((deformed))), (((tiling))), ((naked)), ((tile)), ((fleshpile)), ((ugly)), (((abstract))), blurry, ((bad anatomy)), ((bad proportions)), ((extra limbs)), cloned face, glitchy, ((extra breasts)), ((double torso)), ((extra arms)), ((extra hands)), ((mangled fingers)), ((missing breasts)), (missing lips), ((ugly face)), ((fat)), ((extra legs))",
"W": 512,
"H": 512,
"guidance_scale": 7.5,
"steps": 20,
"strength": 0.55,
"full_url": "no",
"seconds": 5,
"multi_lingual": "no",
"seed": 3532512439,
"outdir": "out",
"file_prefix": "d06b5499-eb10-4292-8256-9c269c36199f",
"num_frames": 40
}
}