Vai al contenuto principale
POST
/
mj
/
submit
/
video
Submit Video
curl --request POST \
  --url https://api.cometapi.com/mj/submit/video \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "motion": "low",
  "image": "https://storage.fonedis.cc/attachments/1372468820912115716/1388566717961338880/hyper_realistic_3d_rendering_pink_tulip_style_686021570d5ec4451c1c120a.jpg?ex=68617307&is=68602187&hm=f939f10d79de24e3ed0f2c4dc1453c902ee6b383d13d9a1787eacfccfadb9488&"
}
'
{
  "code": 123,
  "description": "<string>",
  "result": "<string>",
  "properties": {
    "prompt": "<string>"
  }
}
Usa questo endpoint per trasformare il risultato di un’immagine Midjourney in un breve rendering video.

Prima di chiamarlo

  • Parti da un risultato immagine Midjourney completato o da un URL immagine supportato
  • Considera il task id restituito come l’inizio di un flusso di lavoro asincrono
  • Aspettati che l’asset finale arrivi tramite lo stesso endpoint di polling usato dagli altri task Midjourney

Flusso del task

1

Invia il task video

Avvia il rendering e salva il task id restituito.
2

Esegui il polling finché il task non termina

Usa Fetch Single Task finché il task non raggiunge uno stato terminale ed espone l’URL video finale.
3

Salva l'output

Sposta il video completato nel tuo storage se ti serve una conservazione stabile oltre l’URL di consegna del provider.

Autorizzazioni

Authorization
string
header
obbligatorio

Bearer token authentication. Use your CometAPI key.

Corpo

application/json
motion
enum<string>
predefinito:example
obbligatorio

Motion intensity of the generated video.

Opzioni disponibili:
low,
high
image
string
predefinito:example
obbligatorio

First-frame image as a public URL or base64-encoded data URI.

prompt
string

Text prompt to guide the video generation.

action
string

Action to perform on an existing video task. When set, index and taskId are required.

index
integer

Zero-based index selecting which video variant to act on from the parent task.

taskId
string

Parent task id to continue from. Required when action is set.

state
string

Custom state string. Returned as-is in the task result and webhook callback for your own tracking.

noStorage
boolean

When true, return the original provider video URL instead of a CometAPI-proxied link.

videoType
string

Video model variant, e.g. vid_1.1_i2v_480 (480p) or vid_1.1_i2v_720 (720p).

Risposta

200 - application/json

Success

code
integer
obbligatorio
description
string
obbligatorio
result
string
obbligatorio
properties
object
obbligatorio