Skip to main content

RecordingAppOptions

Electron APIs / recorder / RecordingAppOptions

Configuration options for launching or customizing the recording application behavior.

See

Example

const options: RecordingAppOptions = {
showDebugWindow: true,
enableDebugLogs: true,
maxLogFiles: 20,
};

Properties

PropertyTypeDescription
crashDumps?CrashDumpOptionsTune OBS-host crash dumps. Mini-dump capture is on by default; these options change the detail level and retention count, or turn capture off entirely via type: 'off'. See CrashDumpOptions
enableDebugLogs?booleanEnables verbose debug logs for the recorder. Can be used to troubleshoot issues during recording.
maxLogFiles?numberMaximum number of OBS log files to retain under the recorder's ow-obs/logs folder. Once the number of logs exceeds this value, the oldest logs are gradually pruned. Must be a positive integer. Defaults to 10.
showDebugWindow?booleanWhether to show the recorder capture (OBS) window during runtime. Useful for debugging or development purposes.