openai
Version:
The official TypeScript library for the OpenAI API
415 lines (355 loc) • 10.3 kB
text/typescript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../core/resource';
import { APIPromise } from '../core/api-promise';
import { ConversationCursorPage, type ConversationCursorPageParams, PagePromise } from '../core/pagination';
import { type Uploadable } from '../core/uploads';
import { buildHeaders } from '../internal/headers';
import { RequestOptions } from '../internal/request-options';
import { maybeMultipartFormRequestOptions, multipartFormRequestOptions } from '../internal/uploads';
import { path } from '../internal/utils/path';
export class Videos extends APIResource {
/**
* Create a new video generation job from a prompt and optional reference assets.
*/
create(body: VideoCreateParams, options?: RequestOptions): APIPromise<Video> {
return this._client.post('/videos', multipartFormRequestOptions({ body, ...options }, this._client));
}
/**
* Fetch the latest metadata for a generated video.
*/
retrieve(videoID: string, options?: RequestOptions): APIPromise<Video> {
return this._client.get(path`/videos/${videoID}`, options);
}
/**
* List recently generated videos for the current project.
*/
list(
query: VideoListParams | null | undefined = {},
options?: RequestOptions,
): PagePromise<VideosPage, Video> {
return this._client.getAPIList('/videos', ConversationCursorPage<Video>, { query, ...options });
}
/**
* Permanently delete a completed or failed video and its stored assets.
*/
delete(videoID: string, options?: RequestOptions): APIPromise<VideoDeleteResponse> {
return this._client.delete(path`/videos/${videoID}`, options);
}
/**
* Create a character from an uploaded video.
*/
createCharacter(
body: VideoCreateCharacterParams,
options?: RequestOptions,
): APIPromise<VideoCreateCharacterResponse> {
return this._client.post(
'/videos/characters',
multipartFormRequestOptions({ body, ...options }, this._client),
);
}
/**
* Download the generated video bytes or a derived preview asset.
*
* Streams the rendered video content for the specified video job.
*/
downloadContent(
videoID: string,
query: VideoDownloadContentParams | null | undefined = {},
options?: RequestOptions,
): APIPromise<Response> {
return this._client.get(path`/videos/${videoID}/content`, {
query,
...options,
headers: buildHeaders([{ Accept: 'application/binary' }, options?.headers]),
__binaryResponse: true,
});
}
/**
* Create a new video generation job by editing a source video or existing
* generated video.
*/
edit(body: VideoEditParams, options?: RequestOptions): APIPromise<Video> {
return this._client.post(
'/videos/edits',
multipartFormRequestOptions({ body, ...options }, this._client),
);
}
/**
* Create an extension of a completed video.
*/
extend(body: VideoExtendParams, options?: RequestOptions): APIPromise<Video> {
return this._client.post(
'/videos/extensions',
multipartFormRequestOptions({ body, ...options }, this._client),
);
}
/**
* Fetch a character.
*/
getCharacter(characterID: string, options?: RequestOptions): APIPromise<VideoGetCharacterResponse> {
return this._client.get(path`/videos/characters/${characterID}`, options);
}
/**
* Create a remix of a completed video using a refreshed prompt.
*/
remix(videoID: string, body: VideoRemixParams, options?: RequestOptions): APIPromise<Video> {
return this._client.post(
path`/videos/${videoID}/remix`,
maybeMultipartFormRequestOptions({ body, ...options }, this._client),
);
}
}
export type VideosPage = ConversationCursorPage<Video>;
export interface ImageInputReferenceParam {
file_id?: string;
/**
* A fully qualified URL or base64-encoded data URL.
*/
image_url?: string;
}
/**
* Structured information describing a generated video job.
*/
export interface Video {
/**
* Unique identifier for the video job.
*/
id: string;
/**
* Unix timestamp (seconds) for when the job completed, if finished.
*/
completed_at: number | null;
/**
* Unix timestamp (seconds) for when the job was created.
*/
created_at: number;
/**
* Error payload that explains why generation failed, if applicable.
*/
error: VideoCreateError | null;
/**
* Unix timestamp (seconds) for when the downloadable assets expire, if set.
*/
expires_at: number | null;
/**
* The video generation model that produced the job.
*/
model: VideoModel;
/**
* The object type, which is always `video`.
*/
object: 'video';
/**
* Approximate completion percentage for the generation task.
*/
progress: number;
/**
* The prompt that was used to generate the video.
*/
prompt: string | null;
/**
* Identifier of the source video if this video is a remix.
*/
remixed_from_video_id: string | null;
/**
* Duration of the generated clip in seconds. For extensions, this is the stitched
* total duration.
*/
seconds: (string & {}) | VideoSeconds;
/**
* The resolution of the generated video.
*/
size: VideoSize;
/**
* Current lifecycle status of the video job.
*/
status: 'queued' | 'in_progress' | 'completed' | 'failed';
}
/**
* An error that occurred while generating the response.
*/
export interface VideoCreateError {
/**
* A machine-readable error code that was returned.
*/
code: string;
/**
* A human-readable description of the error that was returned.
*/
message: string;
}
export type VideoModel =
| (string & {})
| 'sora-2'
| 'sora-2-pro'
| 'sora-2-2025-10-06'
| 'sora-2-pro-2025-10-06'
| 'sora-2-2025-12-08';
export type VideoSeconds = '4' | '8' | '12';
export type VideoSize = '720x1280' | '1280x720' | '1024x1792' | '1792x1024';
/**
* Confirmation payload returned after deleting a video.
*/
export interface VideoDeleteResponse {
/**
* Identifier of the deleted video.
*/
id: string;
/**
* Indicates that the video resource was deleted.
*/
deleted: boolean;
/**
* The object type that signals the deletion response.
*/
object: 'video.deleted';
}
export interface VideoCreateCharacterResponse {
/**
* Identifier for the character creation cameo.
*/
id: string | null;
/**
* Unix timestamp (in seconds) when the character was created.
*/
created_at: number;
/**
* Display name for the character.
*/
name: string | null;
}
export interface VideoGetCharacterResponse {
/**
* Identifier for the character creation cameo.
*/
id: string | null;
/**
* Unix timestamp (in seconds) when the character was created.
*/
created_at: number;
/**
* Display name for the character.
*/
name: string | null;
}
export interface VideoCreateParams {
/**
* Text prompt that describes the video to generate.
*/
prompt: string;
/**
* Optional reference asset upload or reference object that guides generation.
*/
input_reference?: Uploadable | ImageInputReferenceParam;
/**
* The video generation model to use (allowed values: sora-2, sora-2-pro). Defaults
* to `sora-2`.
*/
model?: VideoModel;
/**
* Clip duration in seconds (allowed values: 4, 8, 12). Defaults to 4 seconds.
*/
seconds?: VideoSeconds;
/**
* Output resolution formatted as width x height (allowed values: 720x1280,
* 1280x720, 1024x1792, 1792x1024). Defaults to 720x1280.
*/
size?: VideoSize;
}
export interface VideoListParams extends ConversationCursorPageParams {
/**
* Sort order of results by timestamp. Use `asc` for ascending order or `desc` for
* descending order.
*/
order?: 'asc' | 'desc';
}
export interface VideoCreateCharacterParams {
/**
* Display name for this API character.
*/
name: string;
/**
* Video file used to create a character.
*/
video: Uploadable;
}
export interface VideoDownloadContentParams {
/**
* Which downloadable asset to return. Defaults to the MP4 video.
*/
variant?: 'video' | 'thumbnail' | 'spritesheet';
}
export interface VideoEditParams {
/**
* Text prompt that describes how to edit the source video.
*/
prompt: string;
/**
* Reference to the completed video to edit.
*/
video: Uploadable | VideoEditParams.VideoReferenceInputParam;
}
export namespace VideoEditParams {
/**
* Reference to the completed video.
*/
export interface VideoReferenceInputParam {
/**
* The identifier of the completed video.
*/
id: string;
}
}
export interface VideoExtendParams {
/**
* Updated text prompt that directs the extension generation.
*/
prompt: string;
/**
* Length of the newly generated extension segment in seconds (allowed values: 4,
* 8, 12, 16, 20).
*/
seconds: VideoSeconds;
/**
* Reference to the completed video to extend.
*/
video: Uploadable | VideoExtendParams.VideoReferenceInputParam;
}
export namespace VideoExtendParams {
/**
* Reference to the completed video.
*/
export interface VideoReferenceInputParam {
/**
* The identifier of the completed video.
*/
id: string;
}
}
export interface VideoRemixParams {
/**
* Updated text prompt that directs the remix generation.
*/
prompt: string;
}
export declare namespace Videos {
export {
type ImageInputReferenceParam as ImageInputReferenceParam,
type Video as Video,
type VideoCreateError as VideoCreateError,
type VideoModel as VideoModel,
type VideoSeconds as VideoSeconds,
type VideoSize as VideoSize,
type VideoDeleteResponse as VideoDeleteResponse,
type VideoCreateCharacterResponse as VideoCreateCharacterResponse,
type VideoGetCharacterResponse as VideoGetCharacterResponse,
type VideosPage as VideosPage,
type VideoCreateParams as VideoCreateParams,
type VideoListParams as VideoListParams,
type VideoCreateCharacterParams as VideoCreateCharacterParams,
type VideoDownloadContentParams as VideoDownloadContentParams,
type VideoEditParams as VideoEditParams,
type VideoExtendParams as VideoExtendParams,
type VideoRemixParams as VideoRemixParams,
};
}