casparcg-state
    Preparing search index...

    Interface MediaLayerBase

    interface MediaLayerBase {
        afilter?: string;
        channelLayout?: string;
        clearOn404?: boolean;
        inPoint?: number;
        length?: number;
        looping?: boolean;
        media: string | TransitionObject | null;
        pauseTime?: number | null;
        scaleMode?: ProducerScaleMode;
        seek?: number;
        vfilter?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    afilter?: string
    channelLayout?: string
    clearOn404?: boolean
    inPoint?: number

    [time in ms] The time in the video the video starts playing at (and loops to, when looping)

    length?: number

    [time in ms] The duration the video will be playing until freezing (or looping)

    looping?: boolean

    If the media should be looping, otherwise it'll freeze on last frame

    media: string | TransitionObject | null

    Media clip name. Could be a filename, a path, or even a color

    pauseTime?: number | null

    [timestamp] If set, at what point in time the object was paused

    scaleMode?: ProducerScaleMode

    FFmpeg and image producer scale mode. Since 2.5.0

    seek?: number

    [time in ms] If set, the time in the video the video starts playing at

    vfilter?: string