View Source ExOpenAI.Components.CreateVideoExtendJsonBody (ex_openai.ex v2.0.0-beta2)
JSON parameters for extending an existing generated video.
Fields
:prompt- required -String.t()
Updated text prompt that directs the extension generation.
Constraints: minLength: 1, maxLength: 32000:seconds- required -ExOpenAI.Components.VideoSeconds.t()
Length of the newly generated extension segment in seconds (allowed values: 4, 8, 12, 16, 20).:video- required -ExOpenAI.Components.VideoReferenceInputParam.t()
Reference to the completed video to extend.
Summary
Types
@type t() :: %ExOpenAI.Components.CreateVideoExtendJsonBody{ prompt: String.t(), seconds: ExOpenAI.Components.VideoSeconds.t(), video: ExOpenAI.Components.VideoReferenceInputParam.t() }