onvif
    Preparing search index...

    Interface RecordingInformation

    interface RecordingInformation {
        content: string;
        earliestRecording?: Date;
        latestRecording?: Date;
        recordingStatus: RecordingStatus;
        recordingToken: string;
        source: RecordingSourceInformation;
        track?: TrackInformation[];
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index
    content: string
    earliestRecording?: Date
    latestRecording?: Date
    recordingStatus: RecordingStatus
    recordingToken: string

    Information about the source of the recording. This gives a description of where the data in the recording comes from. Since a single recording is intended to record related material, there is just one source. It is indicates the physical location or the major data source for the recording. Currently the recordingconfiguration cannot describe each individual data source.

    Basic information about the track. Note that a track may represent a single contiguous time span or consist of multiple slices.