OBJECT

ClipRawMedia

ClipRawMedia describes metadata about the clip's raw media used in clip editing.

link GraphQL Schema definition

1type ClipRawMedia {
2
3# Default Offset is the seconds into the raw clip media the default clip begins
4# at.
5defaultClipInitialOffset: Float!
6
7# Total duration of the raw media.
8duration: Float!
9
10# Total number of frames displayed in the spritesheet film strip.
11filmStripFrames: Int!
12
13# Seconds covered by each frame in the spritesheet film strip.
14filmStripSecondsPerFrame: Int!
15
16# Height of the frames displayed.
17frameHeight: Int!
18
19# Width of the frames displayed.
20frameWidth: Int!
21
22# Spritesheet displayed to user for clip editing.
23spritesheetURL: String!
24
25# Status of the clip's raw media.
26status: ClipCreationState!
27
28# URL link to the video mp4 containing to upwards of 90 seconds of the raw video
29# from which the clip can be created from.
30videoURL: String!
31
32}