Create
Create Video Recorder
Configuration
VideoRecorderRuntimeSettings settings = new VideoRecorderRuntimeSettings(enableMicrophone: true);IScreenRecorder instance for Video
IScreenRecorder recorder;
//...
//...
// Create settings
VideoRecorderRuntimeSettings settings = new VideoRecorderRuntimeSettings(enableMicrophone: true);
// Pass settings to ScreenRecorderBuilder and build
ScreenRecorderBuilder builder = ScreenRecorderBuilder.CreateVideoRecorder(settings);
recorder = builder.Build();Create GIF Recorder
Configuration
IScreenRecorder instance for GIF
Last updated