#region License Information (GPL v3) /* ShareX - A program that allows you to take screenshots and share any file type Copyright (C) 2007-2014 ShareX Developers This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. Optionally you can also view the license at . */ #endregion License Information (GPL v3) using HelpersLib; using System; using System.Drawing; using System.Globalization; using System.IO; using System.Text; namespace ScreenCaptureLib { public class ScreencastOptions { public string OutputPath; public int GIFFPS; public int ScreenRecordFPS; public Rectangle CaptureArea; public float Duration; public bool DrawCursor; public IntPtr ParentWindow; public bool ShowAVIOptionsDialog; public AVIOptions AVI = new AVIOptions(); public FFmpegOptions FFmpeg = new FFmpegOptions(); public string GetFFmpegCommands() { string commands; if (!string.IsNullOrEmpty(FFmpeg.VideoSource) && FFmpeg.VideoSource.Equals("screen-capture-recorder", StringComparison.InvariantCultureIgnoreCase)) { // https://github.com/rdp/screen-capture-recorder-to-video-windows-free string registryPath = "Software\\screen-capture-recorder"; RegistryHelpers.CreateRegistry(registryPath, "start_x", CaptureArea.X); RegistryHelpers.CreateRegistry(registryPath, "start_y", CaptureArea.Y); RegistryHelpers.CreateRegistry(registryPath, "capture_width", CaptureArea.Width); RegistryHelpers.CreateRegistry(registryPath, "capture_height", CaptureArea.Height); RegistryHelpers.CreateRegistry(registryPath, "default_max_fps", ScreenRecordFPS); RegistryHelpers.CreateRegistry(registryPath, "capture_mouse_default_1", DrawCursor ? 1 : 0); } if (FFmpeg.UseCustomCommands && !string.IsNullOrEmpty(FFmpeg.CustomCommands)) { commands = FFmpeg.CustomCommands. Replace("$fps$", ScreenRecordFPS.ToString(), StringComparison.InvariantCultureIgnoreCase). Replace("$area_x$", CaptureArea.X.ToString(), StringComparison.InvariantCultureIgnoreCase). Replace("$area_y$", CaptureArea.Y.ToString(), StringComparison.InvariantCultureIgnoreCase). Replace("$area_width$", CaptureArea.Width.ToString(), StringComparison.InvariantCultureIgnoreCase). Replace("$area_height$", CaptureArea.Height.ToString(), StringComparison.InvariantCultureIgnoreCase). Replace("$cursor$", DrawCursor ? "1" : "0", StringComparison.InvariantCultureIgnoreCase). Replace("$duration$", Duration.ToString("0.0", CultureInfo.InvariantCulture), StringComparison.InvariantCultureIgnoreCase). Replace("$output$", Path.ChangeExtension(OutputPath, FFmpeg.Extension), StringComparison.InvariantCultureIgnoreCase); } else { commands = GetFFmpegArgs(); } return commands.Trim(); } public string GetFFmpegArgs(bool isCustom = false) { StringBuilder args = new StringBuilder(); // -y for overwrite file args.Append("-y "); // default real time buffer size was 3041280 (3M) args.Append("-rtbufsize 100M "); string fps = isCustom ? "$fps$" : ScreenRecordFPS.ToString(); if (string.IsNullOrEmpty(FFmpeg.VideoSource) || FFmpeg.VideoSource.Equals(FFmpegHelper.GDIgrab, StringComparison.InvariantCultureIgnoreCase)) { // http://ffmpeg.org/ffmpeg-devices.html#gdigrab args.AppendFormat("-f gdigrab -framerate {0} -offset_x {1} -offset_y {2} -video_size {3}x{4} -draw_mouse {5} -i desktop ", fps, isCustom ? "$area_x$" : CaptureArea.X.ToString(), isCustom ? "$area_y$" : CaptureArea.Y.ToString(), isCustom ? "$area_width$" : CaptureArea.Width.ToString(), isCustom ? "$area_height$" : CaptureArea.Height.ToString(), isCustom ? "$cursor$" : DrawCursor ? "1" : "0"); if (FFmpeg.IsAudioSourceSelected()) { args.AppendFormat("-f dshow -i audio=\"{0}\" ", FFmpeg.AudioSource); } } else { args.AppendFormat("-f dshow -framerate {0} -i video=\"{1}\"", fps, FFmpeg.VideoSource); if (FFmpeg.IsAudioSourceSelected()) { args.AppendFormat(":audio=\"{0}\" ", FFmpeg.AudioSource); } else { args.Append(" "); } } if (!string.IsNullOrEmpty(FFmpeg.UserArgs)) { args.Append(FFmpeg.UserArgs + " "); } args.AppendFormat("-c:v {0} ", FFmpeg.VideoCodec.ToString()); // output FPS args.AppendFormat("-r {0} ", fps); switch (FFmpeg.VideoCodec) { case FFmpegVideoCodec.libx264: // https://trac.ffmpeg.org/wiki/x264EncodingGuide args.AppendFormat("-crf {0} ", FFmpeg.x264_CRF); args.AppendFormat("-preset {0} ", FFmpeg.Preset.ToString()); args.AppendFormat("-tune {0} ", "zerolatency"); // -pix_fmt yuv420p required otherwise can't stream in Chrome args.Append("-pix_fmt yuv420p "); break; case FFmpegVideoCodec.libvpx: // https://trac.ffmpeg.org/wiki/vpxEncodingGuide args.AppendFormat("-crf {0} ", FFmpeg.VPx_CRF); break; case FFmpegVideoCodec.libxvid: // https://trac.ffmpeg.org/wiki/How%20to%20encode%20Xvid%20/%20DivX%20video%20with%20ffmpeg args.AppendFormat("-qscale:v {0} ", FFmpeg.XviD_qscale); break; } if (FFmpeg.IsAudioSourceSelected()) { switch (FFmpeg.AudioCodec) { case FFmpegAudioCodec.libvoaacenc: // http://trac.ffmpeg.org/wiki/AACEncodingGuide args.AppendFormat("-c:a libvo_aacenc -ac 2 -b:a {0}k ", FFmpeg.AAC_bitrate); // -ac 2 required otherwise failing with 7.1 break; case FFmpegAudioCodec.libvorbis: // http://trac.ffmpeg.org/wiki/TheoraVorbisEncodingGuide args.AppendFormat("-c:a {0} -qscale:a {1} ", FFmpegAudioCodec.libvorbis.ToString(), FFmpeg.Vorbis_qscale); break; case FFmpegAudioCodec.libmp3lame: // http://trac.ffmpeg.org/wiki/Encoding%20VBR%20(Variable%20Bit%20Rate)%20mp3%20audio args.AppendFormat("-c:a {0} -qscale:a {1} ", FFmpegAudioCodec.libmp3lame.ToString(), FFmpeg.MP3_qscale); break; } } if (Duration > 0) { // duration limit args.AppendFormat("-t {0} ", isCustom ? "$duration$" : Duration.ToString("0.0", CultureInfo.InvariantCulture)); } args.AppendFormat("\"{0}\"", isCustom ? "$output$" : Path.ChangeExtension(OutputPath, FFmpeg.Extension)); return args.ToString(); } } }