а вы чистым кодом все это не могли скинуть? может легче было понять
перешел по ссылке и что дальше делать?
ни экзешника них.. не вижу
Там и есть чистый код написан на C#
spoiler
#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
Copyright (c) 2007-2019 ShareX Team
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 <http://www.gnu.org/licenses/>.
*/
#endregion License Information (GPL v3)
using ShareX.HelpersLib;
using ShareX.Properties;
using ShareX.ScreenCaptureLib;
using System;
using System.Drawing;
using System.IO;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace ShareX
{
public static class ScreenRecordManager
{
public static bool IsRecording { get; private set; }
private static ScreenRecorder screenRecorder;
private static ScreenRecordForm recordForm;
public static void StartStopRecording(ScreenRecordOutput outputType, ScreenRecordStartMethod startMethod, TaskSettings taskSettings)
{
if (IsRecording)
{
if (recordForm != null && !recordForm.IsDisposed)
{
recordForm.StartStopRecording();
}
}
else
{
StartRecording(outputType, taskSettings, startMethod);
}
}
public static void AbortRecording()
{
if (IsRecording && recordForm != null && !recordForm.IsDisposed)
{
recordForm.AbortRecording();
}
}
private static void StopRecording()
{
if (IsRecording && screenRecorder != null)
{
screenRecorder.StopRecording();
}
}
Если нужен исполняемый файл, то он в разделе релизов.