cli/resources/videos/methods/download_content/index.md +0 −31 deleted
File Deleted View Diff
1## Retrieve video content
2
3`$ openai videos download-content`
4
5**get** `/videos/{video_id}/content`
6
7Download the generated video bytes or a derived preview asset.
8
9Streams the rendered video content for the specified video job.
10
11### Parameters
12
13- `--video-id: string`
14
15 The identifier of the video whose media to download.
16
17- `--variant: optional "video" or "thumbnail" or "spritesheet"`
18
19 Which downloadable asset to return. Defaults to the MP4 video.
20
21### Returns
22
23- `unnamed_schema_6: file path`
24
25### Example
26
27```cli
28openai videos download-content \
29 --api-key 'My API Key' \
30 --video-id video_123
31```