You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: openapi.yaml
+59-2Lines changed: 59 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -12614,8 +12614,15 @@ components:
12614
12614
negative_prompt:
12615
12615
type: string
12616
12616
description: Similar to prompt, but specifies what to avoid instead of what to include
12617
+
generate_audio:
12618
+
type: boolean
12619
+
description: Whether to generate audio for the video.
12620
+
media:
12621
+
$ref: '#/components/schemas/VideoMedia'
12622
+
description: Media inputs for video generation. The accepted fields depend on the model type (e.g. i2v, r2v, t2v, videoedit).
12617
12623
frame_images:
12618
-
description: Array of images to guide video generation, similar to keyframes.
12624
+
deprecated: true
12625
+
description: "Deprecated: use media.frame_images instead. Array of images to guide video generation, similar to keyframes."
12619
12626
example:
12620
12627
- [
12621
12628
{
@@ -12635,7 +12642,8 @@ components:
12635
12642
items:
12636
12643
$ref: '#/components/schemas/VideoFrameImageInput'
12637
12644
reference_images:
12638
-
description: Unlike frame_images which constrain specific timeline positions, reference images guide the general appearance that should appear consistently across the video.
12645
+
deprecated: true
12646
+
description: "Deprecated: use media.reference_images instead. Unlike frame_images which constrain specific timeline positions, reference images guide the general appearance that should appear consistently across the video."
12639
12647
type: array
12640
12648
items:
12641
12649
type: string
@@ -12667,6 +12675,55 @@ components:
12667
12675
- first
12668
12676
- last
12669
12677
12678
+
VideoMedia:
12679
+
type: object
12680
+
description: Contains all media inputs for video generation. Accepted fields depend on the model type.
12681
+
properties:
12682
+
frame_images:
12683
+
description: Array of images to guide video generation at specific timeline positions.
12684
+
type: array
12685
+
items:
12686
+
$ref: '#/components/schemas/VideoFrameImageInput'
12687
+
frame_videos:
12688
+
description: Array of video clips to use as starting clips.
12689
+
type: array
12690
+
items:
12691
+
$ref: '#/components/schemas/VideoRef'
12692
+
reference_images:
12693
+
description: Array of image URLs that guide the general appearance across the video.
0 commit comments