Screen recorder default setting changes

This commit is contained in:
Jaex 2016-04-23 21:38:52 +03:00
parent 96a854289d
commit 0d763089d5
2 changed files with 4 additions and 4 deletions

View file

@ -154,7 +154,7 @@ public FFmpegOptions()
ShowError = true; ShowError = true;
// Video // Video
x264_CRF = 30; x264_CRF = 28;
x264_Preset = FFmpegPreset.ultrafast; x264_Preset = FFmpegPreset.ultrafast;
VPx_bitrate = 3000; VPx_bitrate = 3000;
XviD_qscale = 10; XviD_qscale = 10;

View file

@ -325,13 +325,13 @@ public class TaskSettingsCapture
#region Capture / Screen recorder #region Capture / Screen recorder
public FFmpegOptions FFmpegOptions = new FFmpegOptions(Program.DefaultFFmpegFilePath); public FFmpegOptions FFmpegOptions = new FFmpegOptions(Program.DefaultFFmpegFilePath);
public int ScreenRecordFPS = 20; public int ScreenRecordFPS = 30;
public int GIFFPS = 5; public int GIFFPS = 10;
public ScreenRecordGIFEncoding GIFEncoding = ScreenRecordGIFEncoding.FFmpeg; public ScreenRecordGIFEncoding GIFEncoding = ScreenRecordGIFEncoding.FFmpeg;
public bool ScreenRecordFixedDuration = false; public bool ScreenRecordFixedDuration = false;
public float ScreenRecordDuration = 3f; public float ScreenRecordDuration = 3f;
public bool ScreenRecordAutoStart = true; public bool ScreenRecordAutoStart = true;
public float ScreenRecordStartDelay = 1f; public float ScreenRecordStartDelay = 0f;
public bool ScreenRecordShowCursor = true; public bool ScreenRecordShowCursor = true;
public bool RunScreencastCLI = false; public bool RunScreencastCLI = false;
public int VideoEncoderSelected = 0; public int VideoEncoderSelected = 0;