OBJECT

ClipVideoQuality

ClipVideoQuality describes metadata about an available playback source for a clip.

link GraphQL Schema definition

1type ClipVideoQuality {
2
3# Frame rate is the number of frames per second of this video.
4# This value is a 64-bit float, with a default value of 30.0,
5# and is used for supporting different playback speeds.
6# Frame rate will be empty for raw media video qualities.
7frameRate: Float
8
9# Clips can have multiple playback qualities via transcoding.
10# Some examples of qualities include "1080", "720", "480", "360", and "source".
11quality: String!
12
13# The source video URL for the clip in this specific playback quality.
14sourceURL: String!
15
16}