#region License Information (GPL v3) /* ShareX - A program that allows you to take screenshots and share any file type Copyright (C) 2008-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 ScreenCaptureLib; using SevenZip; using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Diagnostics; using System.Drawing; using System.IO; using System.Linq; using System.Text; using System.Text.RegularExpressions; using System.Windows.Forms; namespace ScreenCaptureLib { public partial class FFmpegOptionsForm : Form { public ScreencastOptions Options = new ScreencastOptions(); public string DefaultToolsPath; public FFmpegOptionsForm(FFmpegOptions ffMpegOptions) { Options.FFmpeg = ffMpegOptions; InitializeComponent(); this.Icon = ShareXResources.Icon; this.Text = string.Format("{0} - FFmpeg Options", Application.ProductName); } public FFmpegOptionsForm(ScreencastOptions options) : this(options.FFmpeg) { Options = options; if (options != null) { SettingsLoad(); UpdateUI(); UpdateExtensions(); } } private void SettingsLoad() { // General cbCodec.Items.AddRange(Helpers.GetEnumDescriptions()); cbCodec.SelectedIndex = (int)Options.FFmpeg.VideoCodec; cbCodec.SelectedIndexChanged += (sender, e) => { UpdateUI(); UpdateExtensions(); }; cbExtension.Text = Options.FFmpeg.Extension; cbExtension.SelectedIndexChanged += (sender, e) => UpdateUI(); tbUserArgs.Text = Options.FFmpeg.UserArgs; tbUserArgs.TextChanged += (sender, e) => UpdateUI(); string cli = "ffmpeg.exe"; if (string.IsNullOrEmpty(Options.FFmpeg.CLIPath) && File.Exists(cli)) { Options.FFmpeg.CLIPath = cli; } tbFFmpegPath.Text = Options.FFmpeg.CLIPath; tbFFmpegPath.TextChanged += (sender, e) => UpdateUI(); // x264 nudx264CRF.Value = Options.FFmpeg.x264CRF.Between((int)nudx264CRF.Minimum, (int)nudx264CRF.Maximum); nudx264CRF.ValueChanged += (sender, e) => UpdateUI(); cbPreset.Items.AddRange(Helpers.GetEnumDescriptions()); cbPreset.SelectedIndex = (int)Options.FFmpeg.Preset; cbPreset.SelectedIndexChanged += (sender, e) => UpdateUI(); // VPx nudVPxCRF.Value = Options.FFmpeg.VPxCRF.Between((int)nudVPxCRF.Minimum, (int)nudVPxCRF.Maximum); nudVPxCRF.ValueChanged += (sender, e) => UpdateUI(); // XviD nudQscale.Value = Options.FFmpeg.qscale.Between((int)nudQscale.Minimum, (int)nudQscale.Maximum); nudQscale.ValueChanged += (sender, e) => UpdateUI(); } public void SettingsSave() { // General Options.FFmpeg.VideoCodec = (FFmpegVideoCodec)cbCodec.SelectedIndex; Options.FFmpeg.Extension = cbExtension.Text; Options.FFmpeg.UserArgs = tbUserArgs.Text; Options.FFmpeg.CLIPath = tbFFmpegPath.Text; // x264 Options.FFmpeg.x264CRF = (int)nudx264CRF.Value; Options.FFmpeg.Preset = (FFmpegPreset)cbPreset.SelectedIndex; // VPx Options.FFmpeg.VPxCRF = (int)nudVPxCRF.Value; // XviD Options.FFmpeg.qscale = (int)nudQscale.Value; } public void UpdateUI() { SettingsSave(); tbCommandLinePreview.Text = Options.GetFFmpegArgs(); } public void UpdateExtensions() { cbExtension.Items.Clear(); if (Options.FFmpeg.VideoCodec == FFmpegVideoCodec.libx264 || Options.FFmpeg.VideoCodec == FFmpegVideoCodec.libxvid) { cbExtension.Items.Add("mp4"); } else if (Options.FFmpeg.VideoCodec == FFmpegVideoCodec.libvpx) { cbExtension.Items.Add("webm"); } cbExtension.Items.Add("avi"); cbExtension.SelectedIndex = 0; tcFFmpeg.SelectedIndex = (int)Options.FFmpeg.VideoCodec; } private void buttonFFmpegBrowse_Click(object sender, EventArgs e) { Helpers.BrowseFile("Browse for ffmpeg.exe", tbFFmpegPath, Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles)); UpdateUI(); } private void buttonFFmpegHelp_Click(object sender, EventArgs e) { Helpers.OpenURL("https://www.ffmpeg.org/ffmpeg.html"); } private void btnDownload_Click(object sender, EventArgs e) { FFmpegHelper.DownloadFFmpeg(true, DownloaderForm_InstallRequested); } private void DownloaderForm_InstallRequested(string filePath) { string extractPath = DefaultToolsPath ?? "ffmpeg.exe"; bool result = FFmpegHelper.ExtractFFmpeg(filePath, extractPath); if (result) { this.InvokeSafe(() => tbFFmpegPath.Text = extractPath); MessageBox.Show("FFmpeg successfully downloaded.", Application.ProductName, MessageBoxButtons.OK, MessageBoxIcon.Information); } else { MessageBox.Show("Download of FFmpeg failed.", Application.ProductName, MessageBoxButtons.OK, MessageBoxIcon.Error); } } private void btnTest_Click(object sender, EventArgs e) { if (File.Exists(Options.FFmpeg.CLIPath)) { try { using (Process process = new Process()) { ProcessStartInfo psi = new ProcessStartInfo(Options.FFmpeg.CLIPath); psi.Arguments = Options.GetFFmpegArgs(); psi.WorkingDirectory = Path.GetDirectoryName(Options.FFmpeg.CLIPath); process.StartInfo = psi; process.Start(); } } catch (Exception ex) { DebugHelper.WriteException(ex); } } } private void btnCopyPreview_Click(object sender, EventArgs e) { ClipboardHelpers.CopyText("ffmpeg " + Options.GetFFmpegArgs()); } } }