NAME

OpenAPI::Client::OpenAI::Path::videos-video_id-content - Documentation for the /videos/{video_id}/content path.

OPERATIONS

GET /videos/{video_id}/content

RetrieveVideoContent

$client->retrieve_video_content({
    body => { ... },
});

Download the generated video bytes or a derived preview asset.

Streams the rendered video content for the specified video job.

Path/query parameters

  • video_id (in path, required, string) - The identifier of the video whose media to download.

  • variant (in query, optional, string) - Which downloadable asset to return. Defaults to the MP4 video.

Responses

200 - The video bytes or preview asset that matches the requested variant.

Content-Type: application/json

Example:

"string"

Content-Type: image/webp

Example:

"string"

Content-Type: video/mp4

Example:

"string"

SEE ALSO

OpenAPI::Client::OpenAI::Path

COPYRIGHT AND LICENSE

Copyright (C) 2023-2026 by Nelson Ferraz

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.14.0 or, at your option, any later version of Perl 5 you may have available.