Livepeer · Example Payload

Livepeer Image To Video Example

VideoLive StreamingVideo On DemandAI VideoDecentralized ComputeGPU NetworkEthereumArbitrumWeb3

Livepeer Image To Video Example is an example object payload from Livepeer, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://dream-gateway.livepeer.cloud/image-to-video",
    "headers": {
      "Authorization": "Bearer <LIVEPEER_API_KEY>",
      "Content-Type": "multipart/form-data"
    },
    "form": {
      "model_id": "stabilityai/stable-video-diffusion-img2vid-xt-1-1",
      "image": "@./still.png",
      "width": 1024,
      "height": 576,
      "fps": 6,
      "motion_bucket_id": 127,
      "noise_aug_strength": 0.02,
      "num_inference_steps": 25,
      "safety_check": true
    }
  },
  "response": {
    "status": 200,
    "body": {
      "frames": [
        [
          {
            "url": "https://obj-store.livepeer.cloud/img2vid/abc/frame-0.png",
            "seed": 987654,
            "nsfw": false
          },
          {
            "url": "https://obj-store.livepeer.cloud/img2vid/abc/frame-1.png",
            "seed": 987654,
            "nsfw": false
          }
        ]
      ]
    }
  }
}