Generate video with atlascloud/video-upscaler

Generates a video using the atlascloud/video-upscaler model.

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

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

In: header

modelstring

Model name.

videostring

Input video URL to upscale. The server probes video metadata before billing and processing. Maximum duration: 53s for 1080p and 23s for 2k. Input fps must be 30 or lower.

target_resolution?string

Output resolution for video upscaling. 2k uses the 2560x1440 pixel tier. 4K is not currently exposed.

Value in"1080p" | "2k"

Response Body

curl -X POST "https://api.atlascloud.ai/api/v1/model/generateVideo" \  -H "Content-Type: application/json" \  -d '{    "model": "atlascloud/video-upscaler",    "video": "string"  }'
{
  "created_at": "2019-08-24T14:15:22Z",
  "has_nsfw_contents": [
    true
  ],
  "id": "string",
  "model": "string",
  "outputs": [
    "string"
  ],
  "status": "string",
  "urls": {}
}