Skip to main content

RecordingInformation

Electron APIs / recorder / RecordingInformation

Information about the complete recording configuration for the current system.

This includes audio device and encoder information, video encoder and GPU adapter details, and connected monitor metadata. Useful for setting up and validating a full recording session.

Example

const config: RecordingInformation = {
audio: { ... },
video: { ... },
monitors: [ ... ]
};

Properties

PropertyTypeDescription
audioAudioInformationAudio-related configuration, including input/output devices and encoders. See AudioInformation
monitorsMonitorInfo[]A list of monitors currently connected to the system. See MonitorInfo
videoVideoInformationVideo-related configuration, including available encoders and GPU adapters. See VideoInformation