onvif
    Preparing search index...

    Interface MediaAttributes

    A set of media attributes valid for a recording at a point in time or for a time interval.

    interface MediaAttributes {
        from: Date;
        recordingToken: string;
        trackAttributes?: TrackAttributes[];
        until: Date;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index
    from: Date

    The attributes are valid from this point in time in the recording.

    recordingToken: string

    A reference to the recording that has these attributes.

    trackAttributes?: TrackAttributes[]

    A set of attributes for each track.

    until: Date

    The attributes are valid until this point in time in the recording. Can be equal to 'From' to indicate that the attributes are only known to be valid for this particular point in time.