INPUT_OBJECT

ClipSegmentInput

ClipSegmentInput represents a single segment of a clip.

link GraphQL Schema definition

1input ClipSegmentInput {
4
2# The number of seconds this clip segment encompasses.
3durationSeconds: Float!
7
5# The offset into the clip's 90 second raw media.
6offsetSeconds: Float!
11
8# Valid input speeds are 0.25, 0.5, 1.0, 1.5, and 2.0.
9# The segment speed will be set to 1 by default if unspecified.
10speed: Float
12}