OBJECT
CcvVideoRendition
link GraphQL Schema definition
1 type CcvVideoRendition { 2 3 # The rendition's encoding rate, in bits per second, or null for rendition types 4 # that do not have a strict bit rate. 5 Int : 6 7 # The rendition's frame height, in pixels 8 Int! : 9 10 # The rendition's frame width, in pixels 11 Int! : 12 13 # A temporary URL for direct access to this rendition 14 String! : 15 16 # The codec needed to decode this video. Supported values: `H264` 17 String! : 18 19 # The format of the wrapper that provides metadata and describes how the video and 20 # audio are stored in the file. Supported values: `MP4`, `M2TS` 21 String! : 22 23 }