Closed kasirajansfm closed 6 months ago
Your code is only recording the main monitor. If you want to record all monitors:
var sources = new List<RecordingSourceBase>();
//You can all system monitors with the static Recorder.GetDisplays() function.
sources.AddRange(Recorder.GetDisplays());
Thanks for the response. Its working fine.
SourceOptions = new SourceOptions { RecordingSources = { new DisplayRecordingSource { DeviceName = DisplayRecordingSource.MainMonitor.DeviceName,RecorderApi = RecorderApi.WindowsGraphicsCapture } } },
After changed RecorderApi.WindowsGraphicsCapture, still records first screen only. any one faced this issue,?