Interface RecordingParams

interface RecordingParams {
    recordingAudioPausesLimit: number;
    recordingAudioSupport: boolean;
    recordingAudioPeopleLimit: number;
    recordingAudioParticipantsTimeLimit: number;
    recordingVideoPausesLimit: number;
    recordingVideoSupport: boolean;
    recordingVideoPeopleLimit: number;
    recordingVideoParticipantsTimeLimit: number;
    recordingAllParticipantsSupport: boolean;
    recordingVideoParticipantsSupport: boolean;
    recordingAllParticipantsFullRoomSupport: boolean;
    recordingVideoParticipantsFullRoomSupport: boolean;
    recordingPreferredOrientation: "portrait" | "landscape";
    recordingSupportForOtherOrientation: boolean;
    recordingMultiFormatsSupport: boolean;
    recordingHLSSupport: boolean;
    recordingAudioPausesCount?: number;
    recordingVideoPausesCount?: number;
}

Properties

recordingAudioPausesLimit: number
recordingAudioSupport: boolean
recordingAudioPeopleLimit: number
recordingAudioParticipantsTimeLimit: number
recordingVideoPausesLimit: number
recordingVideoSupport: boolean
recordingVideoPeopleLimit: number
recordingVideoParticipantsTimeLimit: number
recordingAllParticipantsSupport: boolean
recordingVideoParticipantsSupport: boolean
recordingAllParticipantsFullRoomSupport: boolean
recordingVideoParticipantsFullRoomSupport: boolean
recordingPreferredOrientation: "portrait" | "landscape"
recordingSupportForOtherOrientation: boolean
recordingMultiFormatsSupport: boolean
recordingHLSSupport: boolean
recordingAudioPausesCount?: number
recordingVideoPausesCount?: number