OBJECT

CcvVideoRendition

link GraphQL Schema definition

1type 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.
5encodingRate: Int
6
7# The rendition's frame height, in pixels
8frameHeight: Int!
9
10# The rendition's frame width, in pixels
11frameWidth: Int!
12
13# A temporary URL for direct access to this rendition
14url: String!
15
16# The codec needed to decode this video. Supported values: `H264`
17videoCodec: 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`
21videoContainer: String!
22
23}

link Required by