Enums

Details

class GstController.InterpolationMode(value)

Bases: GObject.GEnum

The various interpolation modes available.

NONE = 0

steps-like interpolation, default

LINEAR = 1

linear interpolation

CUBIC = 2

GstController.cubic interpolation (natural), may overshoot the min or max values set by the control point, but is more ‘curvy’

CUBIC_MONOTONIC = 3

monotonic GstController.cubic interpolation, will not produce any values outside of the min-max range set by the control points

New in version 1.8.

class GstController.LFOWaveform(value)

Bases: GObject.GEnum

The various waveform modes available.

SINE = 0

sine waveform

SQUARE = 1

square waveform

SAW = 2

saw waveform

REVERSE_SAW = 3

reverse saw waveform

TRIANGLE = 4

triangle waveform