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
Property | Type | Description |
---|---|---|
audio | AudioInformation | Audio-related configuration, including input/output devices and encoders. See AudioInformation |
monitors | MonitorInfo [] | A list of monitors currently connected to the system. See MonitorInfo |
video | VideoInformation | Video-related configuration, including available encoders and GPU adapters. See VideoInformation |