OBJECT
ClipRawMedia
ClipRawMedia describes metadata about the clip's raw media used in clip editing.
link GraphQL Schema definition
1 type ClipRawMedia { 2 3 # Default Offset is the seconds into the raw clip media the default clip begins 4 # at. 5 : Float! 6 7 # Total duration of the raw media. 8 : Float! 9 10 # Total number of frames displayed in the spritesheet film strip. 11 : Int! 12 13 # Seconds covered by each frame in the spritesheet film strip. 14 : Int! 15 16 # Height of the frames displayed. 17 : Int! 18 19 # Width of the frames displayed. 20 : Int! 21 22 # Spritesheet displayed to user for clip editing. 23 : String! 24 25 # Status of the clip's raw media. 26 : 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. 30 : String! 31 32 }