Create a character from an uploaded video.
$ openai videos create-character
post /videos/characters
Create a character from an uploaded video.
Parameters
-
--name: stringDisplay name for this API character.
-
--video: stringVideo file used to create a character.
Returns
-
VideoNewCharacterResponse: object { id, created_at, name }-
id: stringIdentifier for the character creation cameo.
-
created_at: numberUnix timestamp (in seconds) when the character was created.
-
name: stringDisplay name for the character.
-
Example
openai videos create-character \
--api-key 'My API Key' \
--name x \
--video 'Example data'
Response
{
"id": "id",
"created_at": 0,
"name": "name"
}