├── .gitignore ├── BatchMerge.plugin ├── BatchMerge.plugin.csproj ├── BatchMergeFileItem.cs ├── BatchMergeItemForm.Designer.cs ├── BatchMergeItemForm.cs ├── BatchMergeItemForm.it-IT.resx ├── BatchMergeItemForm.ja-JP.resx ├── BatchMergeItemForm.pl-PL.resx ├── BatchMergeItemForm.resx ├── BatchMergeItemForm.zh-Hans.resx ├── BatchMergeJobItem.cs ├── PluginForm.Designer.cs ├── PluginForm.cs ├── PluginForm.it-IT.resx ├── PluginForm.ja-JP.resx ├── PluginForm.pl-PL.resx ├── PluginForm.resx ├── PluginForm.zh-Hans.resx ├── Properties │ └── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.it-IT.Designer.cs ├── Resources.it-IT.resx ├── Resources.ja-JP.Designer.cs ├── Resources.ja-JP.resx ├── Resources.pl-PL.Designer.cs ├── Resources.pl-PL.resx ├── Resources.resx ├── Resources.zh-Hans.Designer.cs ├── Resources.zh-Hans.resx ├── Resources │ ├── cancel.png │ ├── check.png │ ├── queue.png │ └── route.png ├── SharpCutPlugin.cs └── app.config ├── ISTranslations └── ChineseSimplified.isl ├── LICENSE ├── MediaHelper.plugin ├── MediaHelper.plugin.csproj ├── PreviewBrowserForm.Designer.cs ├── PreviewBrowserForm.cs ├── PreviewBrowserForm.it-IT.resx ├── PreviewBrowserForm.ja-JP.resx ├── PreviewBrowserForm.pl-PL.resx ├── PreviewBrowserForm.resx ├── PreviewBrowserForm.zh-Hans.resx ├── PreviewBrowserListForm.Designer.cs ├── PreviewBrowserListForm.cs ├── PreviewBrowserListForm.it-IT.resx ├── PreviewBrowserListForm.ja-JP.resx ├── PreviewBrowserListForm.pl-PL.resx ├── PreviewBrowserListForm.resx ├── PreviewBrowserListForm.zh-Hans.resx ├── PreviewBrowserListItem.Designer.cs ├── PreviewBrowserListItem.cs ├── PreviewBrowserListItem.resx ├── PreviewRenderer.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.it-IT.Designer.cs │ ├── Resources.it-IT.resx │ ├── Resources.ja-JP.Designer.cs │ ├── Resources.ja-JP.resx │ ├── Resources.pl-PL.Designer.cs │ ├── Resources.pl-PL.resx │ ├── Resources.resx │ ├── Resources.zh-Hans.Designer.cs │ └── Resources.zh-Hans.resx ├── Resources │ ├── edit-delete.png │ ├── edit-delete1.png │ ├── go-next.png │ ├── go-next1.png │ ├── go-previous.png │ ├── go-previous1.png │ ├── go-previous11.png │ ├── go-previous2.png │ └── media-floppy.png ├── SharpCut.ico ├── SharpCutPlugin.cs ├── app.config ├── native │ ├── SDL2.dll │ ├── SDL2_ttf.dll │ ├── libfreetype-6.dll │ └── zlib1.dll └── packages.config ├── README.md ├── SharpCut.iss ├── SharpCut.sln ├── SharpCut ├── AboutForm.Designer.cs ├── AboutForm.cs ├── AboutForm.it-IT.resx ├── AboutForm.ja-JP.resx ├── AboutForm.pl-PL.resx ├── AboutForm.resx ├── AboutForm.zh-Hans.resx ├── App.config ├── ChangelogForm.Designer.cs ├── ChangelogForm.cs ├── ChangelogForm.it-IT.resx ├── ChangelogForm.ja-JP.resx ├── ChangelogForm.pl-PL.resx ├── ChangelogForm.resx ├── ChangelogForm.zh-Hans.resx ├── Controls │ ├── CreditsControl.Designer.cs │ ├── CreditsControl.cs │ ├── CreditsControl.resx │ ├── FramePreview.Designer.cs │ ├── FramePreview.cs │ ├── FramePreview.it-IT.resx │ ├── FramePreview.resx │ ├── FramePreview.zh-Hans.resx │ ├── Timeline.Designer.cs │ ├── Timeline.cs │ ├── Timeline.it-IT.resx │ ├── Timeline.resx │ └── Timeline.zh-Hans.resx ├── ExportForm.Designer.cs ├── ExportForm.cs ├── ExportForm.it-IT.resx ├── ExportForm.ja-JP.resx ├── ExportForm.pl-PL.resx ├── ExportForm.resx ├── ExportForm.zh-Hans.resx ├── ExportSettings.cs ├── LicensesForm.Designer.cs ├── LicensesForm.cs ├── LicensesForm.it-IT.resx ├── LicensesForm.ja-JP.resx ├── LicensesForm.pl-PL.resx ├── LicensesForm.resx ├── LicensesForm.zh-Hans.resx ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.it-IT.resx ├── MainForm.ja-JP.resx ├── MainForm.pl-PL.resx ├── MainForm.resx ├── MainForm.zh-Hans.resx ├── PluginManagerForm.Designer.cs ├── PluginManagerForm.cs ├── PluginManagerForm.resx ├── PreviewFramesProgressForm.it-IT.resx ├── PreviewFramesProgressForm.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ ├── BetaTestingChannel.png │ ├── BuildDate.txt │ ├── DefaultSplash.png │ ├── Fonts │ │ ├── NotoSans-Black.ttf │ │ ├── NotoSans-BlackItalic.ttf │ │ ├── NotoSans-Bold.ttf │ │ ├── NotoSans-BoldItalic.ttf │ │ ├── NotoSans-ExtraBold.ttf │ │ ├── NotoSans-ExtraBoldItalic.ttf │ │ ├── NotoSans-ExtraLight.ttf │ │ ├── NotoSans-ExtraLightItalic.ttf │ │ ├── NotoSans-Italic.ttf │ │ ├── NotoSans-Light.ttf │ │ ├── NotoSans-LightItalic.ttf │ │ ├── NotoSans-Medium.ttf │ │ ├── NotoSans-MediumItalic.ttf │ │ ├── NotoSans-Regular.ttf │ │ ├── NotoSans-SemiBold.ttf │ │ ├── NotoSans-SemiBoldItalic.ttf │ │ ├── NotoSans-Thin.ttf │ │ └── NotoSans-ThinItalic.ttf │ ├── Licenses │ │ ├── FFmpeg.txt │ │ ├── SDL2-CS.txt │ │ ├── SDL2.txt │ │ ├── Xabe.FFmpeg.txt │ │ └── libvlc.txt │ ├── SharpCutSmall.png │ ├── applications-graphics.png │ ├── document-save.png │ ├── edit-delete.png │ ├── go-first.png │ ├── go-last.png │ ├── list-add.png │ ├── list-remove.png │ ├── process-stop.png │ ├── process-stop1.png │ └── video-x-generic.png ├── SettingsForm.Designer.cs ├── SettingsForm.cs ├── SettingsForm.it-IT.resx ├── SettingsForm.ja-JP.resx ├── SettingsForm.pl-PL.resx ├── SettingsForm.resx ├── SettingsForm.zh-Hans.resx ├── SharpCut.csproj ├── SharpCut.html ├── SharpCut.ico ├── SharpCut.xml └── packages.config ├── SharpCutCommon ├── Dialogs │ ├── OpenNetworkDialog.Designer.cs │ ├── OpenNetworkDialog.cs │ ├── OpenNetworkDialog.it-IT.resx │ ├── OpenNetworkDialog.ja-JP.resx │ ├── OpenNetworkDialog.pl-PL.resx │ ├── OpenNetworkDialog.resx │ ├── OpenNetworkDialog.zh-Hans.resx │ ├── ProgressDialog.Designer.cs │ ├── ProgressDialog.cs │ ├── ProgressDialog.it-IT.resx │ ├── ProgressDialog.ja-JP.resx │ ├── ProgressDialog.pl-PL.resx │ ├── ProgressDialog.resx │ ├── ProgressDialog.zh-Hans.resx │ ├── TextInputDialog.Designer.cs │ ├── TextInputDialog.cs │ ├── TextInputDialog.it-IT.resx │ ├── TextInputDialog.ja-JP.resx │ ├── TextInputDialog.pl-PL.resx │ ├── TextInputDialog.resx │ ├── TextInputDialog.zh-Hans.resx │ ├── TimeInputDialog.Designer.cs │ ├── TimeInputDialog.cs │ ├── TimeInputDialog.it-IT.resx │ ├── TimeInputDialog.ja-JP.resx │ ├── TimeInputDialog.pl-PL.resx │ ├── TimeInputDialog.resx │ ├── TimeInputDialog.zh-Hans.resx │ ├── UpdateDialog.Designer.cs │ ├── UpdateDialog.cs │ ├── UpdateDialog.it-IT.resx │ ├── UpdateDialog.ja-JP.resx │ ├── UpdateDialog.pl-PL.resx │ ├── UpdateDialog.resx │ └── UpdateDialog.zh-Hans.resx ├── Drawing │ ├── ColorFilter.cs │ └── TextDrawingUtil.cs ├── Plugins │ ├── ISharpCutPlugin.cs │ ├── PluginManager.cs │ ├── PluginPackage.cs │ └── SharpCutPluginInfo.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.it-IT.Designer.cs │ ├── Resources.it-IT.resx │ ├── Resources.ja-JP.Designer.cs │ ├── Resources.ja-JP.resx │ ├── Resources.pl-PL.Designer.cs │ ├── Resources.pl-PL.resx │ ├── Resources.resx │ ├── Resources.zh-Hans.Designer.cs │ ├── Resources.zh-Hans.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── BuildDate.txt │ ├── SharpCutSmall.png │ ├── document-save.png │ ├── go-first.png │ ├── go-last.png │ ├── list-add.png │ ├── list-remove.png │ └── video-x-generic.png ├── SharpCut.ico ├── SharpCutCommon.csproj ├── Util │ ├── DirUtil.cs │ ├── Mathf.cs │ ├── StringUtil.cs │ └── Updater.cs ├── Video │ ├── FFMPEG.cs │ ├── Project.cs │ └── Section.cs ├── app.config └── packages.config ├── SharpCutUpdate ├── App.config ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── SharpCut.ico ├── SharpCutUpdate.csproj └── packages.config └── docs └── CNAME /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/.gitignore -------------------------------------------------------------------------------- /BatchMerge.plugin/BatchMerge.plugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/BatchMerge.plugin/BatchMerge.plugin.csproj -------------------------------------------------------------------------------- /BatchMerge.plugin/BatchMergeFileItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/BatchMerge.plugin/BatchMergeFileItem.cs -------------------------------------------------------------------------------- /BatchMerge.plugin/BatchMergeItemForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/BatchMerge.plugin/BatchMergeItemForm.Designer.cs -------------------------------------------------------------------------------- /BatchMerge.plugin/BatchMergeItemForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/BatchMerge.plugin/BatchMergeItemForm.cs -------------------------------------------------------------------------------- /BatchMerge.plugin/BatchMergeItemForm.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/BatchMerge.plugin/BatchMergeItemForm.it-IT.resx -------------------------------------------------------------------------------- /BatchMerge.plugin/BatchMergeItemForm.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/BatchMerge.plugin/BatchMergeItemForm.ja-JP.resx -------------------------------------------------------------------------------- /BatchMerge.plugin/BatchMergeItemForm.pl-PL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/BatchMerge.plugin/BatchMergeItemForm.pl-PL.resx -------------------------------------------------------------------------------- /BatchMerge.plugin/BatchMergeItemForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/BatchMerge.plugin/BatchMergeItemForm.resx -------------------------------------------------------------------------------- /BatchMerge.plugin/BatchMergeItemForm.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/BatchMerge.plugin/BatchMergeItemForm.zh-Hans.resx -------------------------------------------------------------------------------- /BatchMerge.plugin/BatchMergeJobItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/BatchMerge.plugin/BatchMergeJobItem.cs -------------------------------------------------------------------------------- /BatchMerge.plugin/PluginForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/BatchMerge.plugin/PluginForm.Designer.cs -------------------------------------------------------------------------------- /BatchMerge.plugin/PluginForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/BatchMerge.plugin/PluginForm.cs -------------------------------------------------------------------------------- /BatchMerge.plugin/PluginForm.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/BatchMerge.plugin/PluginForm.it-IT.resx -------------------------------------------------------------------------------- /BatchMerge.plugin/PluginForm.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/BatchMerge.plugin/PluginForm.ja-JP.resx -------------------------------------------------------------------------------- /BatchMerge.plugin/PluginForm.pl-PL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/BatchMerge.plugin/PluginForm.pl-PL.resx -------------------------------------------------------------------------------- /BatchMerge.plugin/PluginForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/BatchMerge.plugin/PluginForm.resx -------------------------------------------------------------------------------- /BatchMerge.plugin/PluginForm.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/BatchMerge.plugin/PluginForm.zh-Hans.resx -------------------------------------------------------------------------------- /BatchMerge.plugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/BatchMerge.plugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BatchMerge.plugin/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/BatchMerge.plugin/Resources.Designer.cs -------------------------------------------------------------------------------- /BatchMerge.plugin/Resources.it-IT.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BatchMerge.plugin/Resources.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/BatchMerge.plugin/Resources.it-IT.resx -------------------------------------------------------------------------------- /BatchMerge.plugin/Resources.ja-JP.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BatchMerge.plugin/Resources.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/BatchMerge.plugin/Resources.ja-JP.resx -------------------------------------------------------------------------------- /BatchMerge.plugin/Resources.pl-PL.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BatchMerge.plugin/Resources.pl-PL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/BatchMerge.plugin/Resources.pl-PL.resx -------------------------------------------------------------------------------- /BatchMerge.plugin/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/BatchMerge.plugin/Resources.resx -------------------------------------------------------------------------------- /BatchMerge.plugin/Resources.zh-Hans.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BatchMerge.plugin/Resources.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/BatchMerge.plugin/Resources.zh-Hans.resx -------------------------------------------------------------------------------- /BatchMerge.plugin/Resources/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/BatchMerge.plugin/Resources/cancel.png -------------------------------------------------------------------------------- /BatchMerge.plugin/Resources/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/BatchMerge.plugin/Resources/check.png -------------------------------------------------------------------------------- /BatchMerge.plugin/Resources/queue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/BatchMerge.plugin/Resources/queue.png -------------------------------------------------------------------------------- /BatchMerge.plugin/Resources/route.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/BatchMerge.plugin/Resources/route.png -------------------------------------------------------------------------------- /BatchMerge.plugin/SharpCutPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/BatchMerge.plugin/SharpCutPlugin.cs -------------------------------------------------------------------------------- /BatchMerge.plugin/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/BatchMerge.plugin/app.config -------------------------------------------------------------------------------- /ISTranslations/ChineseSimplified.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/ISTranslations/ChineseSimplified.isl -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/LICENSE -------------------------------------------------------------------------------- /MediaHelper.plugin/MediaHelper.plugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/MediaHelper.plugin.csproj -------------------------------------------------------------------------------- /MediaHelper.plugin/PreviewBrowserForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/PreviewBrowserForm.Designer.cs -------------------------------------------------------------------------------- /MediaHelper.plugin/PreviewBrowserForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/PreviewBrowserForm.cs -------------------------------------------------------------------------------- /MediaHelper.plugin/PreviewBrowserForm.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/PreviewBrowserForm.it-IT.resx -------------------------------------------------------------------------------- /MediaHelper.plugin/PreviewBrowserForm.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/PreviewBrowserForm.ja-JP.resx -------------------------------------------------------------------------------- /MediaHelper.plugin/PreviewBrowserForm.pl-PL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/PreviewBrowserForm.pl-PL.resx -------------------------------------------------------------------------------- /MediaHelper.plugin/PreviewBrowserForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/PreviewBrowserForm.resx -------------------------------------------------------------------------------- /MediaHelper.plugin/PreviewBrowserForm.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/PreviewBrowserForm.zh-Hans.resx -------------------------------------------------------------------------------- /MediaHelper.plugin/PreviewBrowserListForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/PreviewBrowserListForm.Designer.cs -------------------------------------------------------------------------------- /MediaHelper.plugin/PreviewBrowserListForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/PreviewBrowserListForm.cs -------------------------------------------------------------------------------- /MediaHelper.plugin/PreviewBrowserListForm.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/PreviewBrowserListForm.it-IT.resx -------------------------------------------------------------------------------- /MediaHelper.plugin/PreviewBrowserListForm.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/PreviewBrowserListForm.ja-JP.resx -------------------------------------------------------------------------------- /MediaHelper.plugin/PreviewBrowserListForm.pl-PL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/PreviewBrowserListForm.pl-PL.resx -------------------------------------------------------------------------------- /MediaHelper.plugin/PreviewBrowserListForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/PreviewBrowserListForm.resx -------------------------------------------------------------------------------- /MediaHelper.plugin/PreviewBrowserListForm.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/PreviewBrowserListForm.zh-Hans.resx -------------------------------------------------------------------------------- /MediaHelper.plugin/PreviewBrowserListItem.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/PreviewBrowserListItem.Designer.cs -------------------------------------------------------------------------------- /MediaHelper.plugin/PreviewBrowserListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/PreviewBrowserListItem.cs -------------------------------------------------------------------------------- /MediaHelper.plugin/PreviewBrowserListItem.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/PreviewBrowserListItem.resx -------------------------------------------------------------------------------- /MediaHelper.plugin/PreviewRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/PreviewRenderer.cs -------------------------------------------------------------------------------- /MediaHelper.plugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MediaHelper.plugin/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /MediaHelper.plugin/Properties/Resources.it-IT.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MediaHelper.plugin/Properties/Resources.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/Properties/Resources.it-IT.resx -------------------------------------------------------------------------------- /MediaHelper.plugin/Properties/Resources.ja-JP.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MediaHelper.plugin/Properties/Resources.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/Properties/Resources.ja-JP.resx -------------------------------------------------------------------------------- /MediaHelper.plugin/Properties/Resources.pl-PL.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MediaHelper.plugin/Properties/Resources.pl-PL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/Properties/Resources.pl-PL.resx -------------------------------------------------------------------------------- /MediaHelper.plugin/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/Properties/Resources.resx -------------------------------------------------------------------------------- /MediaHelper.plugin/Properties/Resources.zh-Hans.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MediaHelper.plugin/Properties/Resources.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/Properties/Resources.zh-Hans.resx -------------------------------------------------------------------------------- /MediaHelper.plugin/Resources/edit-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/Resources/edit-delete.png -------------------------------------------------------------------------------- /MediaHelper.plugin/Resources/edit-delete1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/Resources/edit-delete1.png -------------------------------------------------------------------------------- /MediaHelper.plugin/Resources/go-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/Resources/go-next.png -------------------------------------------------------------------------------- /MediaHelper.plugin/Resources/go-next1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/Resources/go-next1.png -------------------------------------------------------------------------------- /MediaHelper.plugin/Resources/go-previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/Resources/go-previous.png -------------------------------------------------------------------------------- /MediaHelper.plugin/Resources/go-previous1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/Resources/go-previous1.png -------------------------------------------------------------------------------- /MediaHelper.plugin/Resources/go-previous11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/Resources/go-previous11.png -------------------------------------------------------------------------------- /MediaHelper.plugin/Resources/go-previous2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/Resources/go-previous2.png -------------------------------------------------------------------------------- /MediaHelper.plugin/Resources/media-floppy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/Resources/media-floppy.png -------------------------------------------------------------------------------- /MediaHelper.plugin/SharpCut.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/SharpCut.ico -------------------------------------------------------------------------------- /MediaHelper.plugin/SharpCutPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/SharpCutPlugin.cs -------------------------------------------------------------------------------- /MediaHelper.plugin/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/app.config -------------------------------------------------------------------------------- /MediaHelper.plugin/native/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/native/SDL2.dll -------------------------------------------------------------------------------- /MediaHelper.plugin/native/SDL2_ttf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/native/SDL2_ttf.dll -------------------------------------------------------------------------------- /MediaHelper.plugin/native/libfreetype-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/native/libfreetype-6.dll -------------------------------------------------------------------------------- /MediaHelper.plugin/native/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/native/zlib1.dll -------------------------------------------------------------------------------- /MediaHelper.plugin/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/MediaHelper.plugin/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/README.md -------------------------------------------------------------------------------- /SharpCut.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut.iss -------------------------------------------------------------------------------- /SharpCut.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut.sln -------------------------------------------------------------------------------- /SharpCut/AboutForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/AboutForm.Designer.cs -------------------------------------------------------------------------------- /SharpCut/AboutForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/AboutForm.cs -------------------------------------------------------------------------------- /SharpCut/AboutForm.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/AboutForm.it-IT.resx -------------------------------------------------------------------------------- /SharpCut/AboutForm.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/AboutForm.ja-JP.resx -------------------------------------------------------------------------------- /SharpCut/AboutForm.pl-PL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/AboutForm.pl-PL.resx -------------------------------------------------------------------------------- /SharpCut/AboutForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/AboutForm.resx -------------------------------------------------------------------------------- /SharpCut/AboutForm.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/AboutForm.zh-Hans.resx -------------------------------------------------------------------------------- /SharpCut/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/App.config -------------------------------------------------------------------------------- /SharpCut/ChangelogForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/ChangelogForm.Designer.cs -------------------------------------------------------------------------------- /SharpCut/ChangelogForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/ChangelogForm.cs -------------------------------------------------------------------------------- /SharpCut/ChangelogForm.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/ChangelogForm.it-IT.resx -------------------------------------------------------------------------------- /SharpCut/ChangelogForm.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/ChangelogForm.ja-JP.resx -------------------------------------------------------------------------------- /SharpCut/ChangelogForm.pl-PL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/ChangelogForm.pl-PL.resx -------------------------------------------------------------------------------- /SharpCut/ChangelogForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/ChangelogForm.resx -------------------------------------------------------------------------------- /SharpCut/ChangelogForm.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/ChangelogForm.zh-Hans.resx -------------------------------------------------------------------------------- /SharpCut/Controls/CreditsControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Controls/CreditsControl.Designer.cs -------------------------------------------------------------------------------- /SharpCut/Controls/CreditsControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Controls/CreditsControl.cs -------------------------------------------------------------------------------- /SharpCut/Controls/CreditsControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Controls/CreditsControl.resx -------------------------------------------------------------------------------- /SharpCut/Controls/FramePreview.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Controls/FramePreview.Designer.cs -------------------------------------------------------------------------------- /SharpCut/Controls/FramePreview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Controls/FramePreview.cs -------------------------------------------------------------------------------- /SharpCut/Controls/FramePreview.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Controls/FramePreview.it-IT.resx -------------------------------------------------------------------------------- /SharpCut/Controls/FramePreview.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Controls/FramePreview.resx -------------------------------------------------------------------------------- /SharpCut/Controls/FramePreview.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Controls/FramePreview.zh-Hans.resx -------------------------------------------------------------------------------- /SharpCut/Controls/Timeline.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Controls/Timeline.Designer.cs -------------------------------------------------------------------------------- /SharpCut/Controls/Timeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Controls/Timeline.cs -------------------------------------------------------------------------------- /SharpCut/Controls/Timeline.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Controls/Timeline.it-IT.resx -------------------------------------------------------------------------------- /SharpCut/Controls/Timeline.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Controls/Timeline.resx -------------------------------------------------------------------------------- /SharpCut/Controls/Timeline.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Controls/Timeline.zh-Hans.resx -------------------------------------------------------------------------------- /SharpCut/ExportForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/ExportForm.Designer.cs -------------------------------------------------------------------------------- /SharpCut/ExportForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/ExportForm.cs -------------------------------------------------------------------------------- /SharpCut/ExportForm.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/ExportForm.it-IT.resx -------------------------------------------------------------------------------- /SharpCut/ExportForm.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/ExportForm.ja-JP.resx -------------------------------------------------------------------------------- /SharpCut/ExportForm.pl-PL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/ExportForm.pl-PL.resx -------------------------------------------------------------------------------- /SharpCut/ExportForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/ExportForm.resx -------------------------------------------------------------------------------- /SharpCut/ExportForm.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/ExportForm.zh-Hans.resx -------------------------------------------------------------------------------- /SharpCut/ExportSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/ExportSettings.cs -------------------------------------------------------------------------------- /SharpCut/LicensesForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/LicensesForm.Designer.cs -------------------------------------------------------------------------------- /SharpCut/LicensesForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/LicensesForm.cs -------------------------------------------------------------------------------- /SharpCut/LicensesForm.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/LicensesForm.it-IT.resx -------------------------------------------------------------------------------- /SharpCut/LicensesForm.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/LicensesForm.ja-JP.resx -------------------------------------------------------------------------------- /SharpCut/LicensesForm.pl-PL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/LicensesForm.pl-PL.resx -------------------------------------------------------------------------------- /SharpCut/LicensesForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/LicensesForm.resx -------------------------------------------------------------------------------- /SharpCut/LicensesForm.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/LicensesForm.zh-Hans.resx -------------------------------------------------------------------------------- /SharpCut/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/MainForm.Designer.cs -------------------------------------------------------------------------------- /SharpCut/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/MainForm.cs -------------------------------------------------------------------------------- /SharpCut/MainForm.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/MainForm.it-IT.resx -------------------------------------------------------------------------------- /SharpCut/MainForm.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/MainForm.ja-JP.resx -------------------------------------------------------------------------------- /SharpCut/MainForm.pl-PL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/MainForm.pl-PL.resx -------------------------------------------------------------------------------- /SharpCut/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/MainForm.resx -------------------------------------------------------------------------------- /SharpCut/MainForm.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/MainForm.zh-Hans.resx -------------------------------------------------------------------------------- /SharpCut/PluginManagerForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/PluginManagerForm.Designer.cs -------------------------------------------------------------------------------- /SharpCut/PluginManagerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/PluginManagerForm.cs -------------------------------------------------------------------------------- /SharpCut/PluginManagerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/PluginManagerForm.resx -------------------------------------------------------------------------------- /SharpCut/PreviewFramesProgressForm.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/PreviewFramesProgressForm.it-IT.resx -------------------------------------------------------------------------------- /SharpCut/PreviewFramesProgressForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/PreviewFramesProgressForm.resx -------------------------------------------------------------------------------- /SharpCut/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Program.cs -------------------------------------------------------------------------------- /SharpCut/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SharpCut/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SharpCut/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Properties/Resources.resx -------------------------------------------------------------------------------- /SharpCut/Resources/BetaTestingChannel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/BetaTestingChannel.png -------------------------------------------------------------------------------- /SharpCut/Resources/BuildDate.txt: -------------------------------------------------------------------------------- 1 | Sun 01/05/2025 12:13:50.79 2 | -------------------------------------------------------------------------------- /SharpCut/Resources/DefaultSplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/DefaultSplash.png -------------------------------------------------------------------------------- /SharpCut/Resources/Fonts/NotoSans-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/Fonts/NotoSans-Black.ttf -------------------------------------------------------------------------------- /SharpCut/Resources/Fonts/NotoSans-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/Fonts/NotoSans-BlackItalic.ttf -------------------------------------------------------------------------------- /SharpCut/Resources/Fonts/NotoSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/Fonts/NotoSans-Bold.ttf -------------------------------------------------------------------------------- /SharpCut/Resources/Fonts/NotoSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/Fonts/NotoSans-BoldItalic.ttf -------------------------------------------------------------------------------- /SharpCut/Resources/Fonts/NotoSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/Fonts/NotoSans-ExtraBold.ttf -------------------------------------------------------------------------------- /SharpCut/Resources/Fonts/NotoSans-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/Fonts/NotoSans-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /SharpCut/Resources/Fonts/NotoSans-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/Fonts/NotoSans-ExtraLight.ttf -------------------------------------------------------------------------------- /SharpCut/Resources/Fonts/NotoSans-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/Fonts/NotoSans-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /SharpCut/Resources/Fonts/NotoSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/Fonts/NotoSans-Italic.ttf -------------------------------------------------------------------------------- /SharpCut/Resources/Fonts/NotoSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/Fonts/NotoSans-Light.ttf -------------------------------------------------------------------------------- /SharpCut/Resources/Fonts/NotoSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/Fonts/NotoSans-LightItalic.ttf -------------------------------------------------------------------------------- /SharpCut/Resources/Fonts/NotoSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/Fonts/NotoSans-Medium.ttf -------------------------------------------------------------------------------- /SharpCut/Resources/Fonts/NotoSans-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/Fonts/NotoSans-MediumItalic.ttf -------------------------------------------------------------------------------- /SharpCut/Resources/Fonts/NotoSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/Fonts/NotoSans-Regular.ttf -------------------------------------------------------------------------------- /SharpCut/Resources/Fonts/NotoSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/Fonts/NotoSans-SemiBold.ttf -------------------------------------------------------------------------------- /SharpCut/Resources/Fonts/NotoSans-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/Fonts/NotoSans-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /SharpCut/Resources/Fonts/NotoSans-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/Fonts/NotoSans-Thin.ttf -------------------------------------------------------------------------------- /SharpCut/Resources/Fonts/NotoSans-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/Fonts/NotoSans-ThinItalic.ttf -------------------------------------------------------------------------------- /SharpCut/Resources/Licenses/FFmpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/Licenses/FFmpeg.txt -------------------------------------------------------------------------------- /SharpCut/Resources/Licenses/SDL2-CS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/Licenses/SDL2-CS.txt -------------------------------------------------------------------------------- /SharpCut/Resources/Licenses/SDL2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/Licenses/SDL2.txt -------------------------------------------------------------------------------- /SharpCut/Resources/Licenses/Xabe.FFmpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/Licenses/Xabe.FFmpeg.txt -------------------------------------------------------------------------------- /SharpCut/Resources/Licenses/libvlc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/Licenses/libvlc.txt -------------------------------------------------------------------------------- /SharpCut/Resources/SharpCutSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/SharpCutSmall.png -------------------------------------------------------------------------------- /SharpCut/Resources/applications-graphics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/applications-graphics.png -------------------------------------------------------------------------------- /SharpCut/Resources/document-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/document-save.png -------------------------------------------------------------------------------- /SharpCut/Resources/edit-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/edit-delete.png -------------------------------------------------------------------------------- /SharpCut/Resources/go-first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/go-first.png -------------------------------------------------------------------------------- /SharpCut/Resources/go-last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/go-last.png -------------------------------------------------------------------------------- /SharpCut/Resources/list-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/list-add.png -------------------------------------------------------------------------------- /SharpCut/Resources/list-remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/list-remove.png -------------------------------------------------------------------------------- /SharpCut/Resources/process-stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/process-stop.png -------------------------------------------------------------------------------- /SharpCut/Resources/process-stop1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/process-stop1.png -------------------------------------------------------------------------------- /SharpCut/Resources/video-x-generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/Resources/video-x-generic.png -------------------------------------------------------------------------------- /SharpCut/SettingsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/SettingsForm.Designer.cs -------------------------------------------------------------------------------- /SharpCut/SettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/SettingsForm.cs -------------------------------------------------------------------------------- /SharpCut/SettingsForm.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/SettingsForm.it-IT.resx -------------------------------------------------------------------------------- /SharpCut/SettingsForm.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/SettingsForm.ja-JP.resx -------------------------------------------------------------------------------- /SharpCut/SettingsForm.pl-PL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/SettingsForm.pl-PL.resx -------------------------------------------------------------------------------- /SharpCut/SettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/SettingsForm.resx -------------------------------------------------------------------------------- /SharpCut/SettingsForm.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/SettingsForm.zh-Hans.resx -------------------------------------------------------------------------------- /SharpCut/SharpCut.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/SharpCut.csproj -------------------------------------------------------------------------------- /SharpCut/SharpCut.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/SharpCut.html -------------------------------------------------------------------------------- /SharpCut/SharpCut.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/SharpCut.ico -------------------------------------------------------------------------------- /SharpCut/SharpCut.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/SharpCut.xml -------------------------------------------------------------------------------- /SharpCut/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCut/packages.config -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/OpenNetworkDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/OpenNetworkDialog.Designer.cs -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/OpenNetworkDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/OpenNetworkDialog.cs -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/OpenNetworkDialog.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/OpenNetworkDialog.it-IT.resx -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/OpenNetworkDialog.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/OpenNetworkDialog.ja-JP.resx -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/OpenNetworkDialog.pl-PL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/OpenNetworkDialog.pl-PL.resx -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/OpenNetworkDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/OpenNetworkDialog.resx -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/OpenNetworkDialog.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/OpenNetworkDialog.zh-Hans.resx -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/ProgressDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/ProgressDialog.Designer.cs -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/ProgressDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/ProgressDialog.cs -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/ProgressDialog.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/ProgressDialog.it-IT.resx -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/ProgressDialog.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/ProgressDialog.ja-JP.resx -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/ProgressDialog.pl-PL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/ProgressDialog.pl-PL.resx -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/ProgressDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/ProgressDialog.resx -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/ProgressDialog.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/ProgressDialog.zh-Hans.resx -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/TextInputDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/TextInputDialog.Designer.cs -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/TextInputDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/TextInputDialog.cs -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/TextInputDialog.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/TextInputDialog.it-IT.resx -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/TextInputDialog.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/TextInputDialog.ja-JP.resx -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/TextInputDialog.pl-PL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/TextInputDialog.pl-PL.resx -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/TextInputDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/TextInputDialog.resx -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/TextInputDialog.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/TextInputDialog.zh-Hans.resx -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/TimeInputDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/TimeInputDialog.Designer.cs -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/TimeInputDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/TimeInputDialog.cs -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/TimeInputDialog.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/TimeInputDialog.it-IT.resx -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/TimeInputDialog.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/TimeInputDialog.ja-JP.resx -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/TimeInputDialog.pl-PL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/TimeInputDialog.pl-PL.resx -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/TimeInputDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/TimeInputDialog.resx -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/TimeInputDialog.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/TimeInputDialog.zh-Hans.resx -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/UpdateDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/UpdateDialog.Designer.cs -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/UpdateDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/UpdateDialog.cs -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/UpdateDialog.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/UpdateDialog.it-IT.resx -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/UpdateDialog.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/UpdateDialog.ja-JP.resx -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/UpdateDialog.pl-PL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/UpdateDialog.pl-PL.resx -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/UpdateDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/UpdateDialog.resx -------------------------------------------------------------------------------- /SharpCutCommon/Dialogs/UpdateDialog.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Dialogs/UpdateDialog.zh-Hans.resx -------------------------------------------------------------------------------- /SharpCutCommon/Drawing/ColorFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Drawing/ColorFilter.cs -------------------------------------------------------------------------------- /SharpCutCommon/Drawing/TextDrawingUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Drawing/TextDrawingUtil.cs -------------------------------------------------------------------------------- /SharpCutCommon/Plugins/ISharpCutPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Plugins/ISharpCutPlugin.cs -------------------------------------------------------------------------------- /SharpCutCommon/Plugins/PluginManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Plugins/PluginManager.cs -------------------------------------------------------------------------------- /SharpCutCommon/Plugins/PluginPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Plugins/PluginPackage.cs -------------------------------------------------------------------------------- /SharpCutCommon/Plugins/SharpCutPluginInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Plugins/SharpCutPluginInfo.cs -------------------------------------------------------------------------------- /SharpCutCommon/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SharpCutCommon/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SharpCutCommon/Properties/Resources.it-IT.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SharpCutCommon/Properties/Resources.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Properties/Resources.it-IT.resx -------------------------------------------------------------------------------- /SharpCutCommon/Properties/Resources.ja-JP.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SharpCutCommon/Properties/Resources.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Properties/Resources.ja-JP.resx -------------------------------------------------------------------------------- /SharpCutCommon/Properties/Resources.pl-PL.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SharpCutCommon/Properties/Resources.pl-PL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Properties/Resources.pl-PL.resx -------------------------------------------------------------------------------- /SharpCutCommon/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Properties/Resources.resx -------------------------------------------------------------------------------- /SharpCutCommon/Properties/Resources.zh-Hans.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SharpCutCommon/Properties/Resources.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Properties/Resources.zh-Hans.resx -------------------------------------------------------------------------------- /SharpCutCommon/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SharpCutCommon/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Properties/Settings.settings -------------------------------------------------------------------------------- /SharpCutCommon/Resources/BuildDate.txt: -------------------------------------------------------------------------------- 1 | Wed 01/26/2022 4:07:25.29 2 | -------------------------------------------------------------------------------- /SharpCutCommon/Resources/SharpCutSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Resources/SharpCutSmall.png -------------------------------------------------------------------------------- /SharpCutCommon/Resources/document-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Resources/document-save.png -------------------------------------------------------------------------------- /SharpCutCommon/Resources/go-first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Resources/go-first.png -------------------------------------------------------------------------------- /SharpCutCommon/Resources/go-last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Resources/go-last.png -------------------------------------------------------------------------------- /SharpCutCommon/Resources/list-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Resources/list-add.png -------------------------------------------------------------------------------- /SharpCutCommon/Resources/list-remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Resources/list-remove.png -------------------------------------------------------------------------------- /SharpCutCommon/Resources/video-x-generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Resources/video-x-generic.png -------------------------------------------------------------------------------- /SharpCutCommon/SharpCut.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/SharpCut.ico -------------------------------------------------------------------------------- /SharpCutCommon/SharpCutCommon.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/SharpCutCommon.csproj -------------------------------------------------------------------------------- /SharpCutCommon/Util/DirUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Util/DirUtil.cs -------------------------------------------------------------------------------- /SharpCutCommon/Util/Mathf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Util/Mathf.cs -------------------------------------------------------------------------------- /SharpCutCommon/Util/StringUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Util/StringUtil.cs -------------------------------------------------------------------------------- /SharpCutCommon/Util/Updater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Util/Updater.cs -------------------------------------------------------------------------------- /SharpCutCommon/Video/FFMPEG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Video/FFMPEG.cs -------------------------------------------------------------------------------- /SharpCutCommon/Video/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Video/Project.cs -------------------------------------------------------------------------------- /SharpCutCommon/Video/Section.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/Video/Section.cs -------------------------------------------------------------------------------- /SharpCutCommon/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/app.config -------------------------------------------------------------------------------- /SharpCutCommon/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutCommon/packages.config -------------------------------------------------------------------------------- /SharpCutUpdate/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutUpdate/App.config -------------------------------------------------------------------------------- /SharpCutUpdate/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutUpdate/MainForm.Designer.cs -------------------------------------------------------------------------------- /SharpCutUpdate/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutUpdate/MainForm.cs -------------------------------------------------------------------------------- /SharpCutUpdate/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutUpdate/MainForm.resx -------------------------------------------------------------------------------- /SharpCutUpdate/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutUpdate/Program.cs -------------------------------------------------------------------------------- /SharpCutUpdate/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutUpdate/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SharpCutUpdate/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutUpdate/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SharpCutUpdate/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutUpdate/Properties/Resources.resx -------------------------------------------------------------------------------- /SharpCutUpdate/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutUpdate/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SharpCutUpdate/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutUpdate/Properties/Settings.settings -------------------------------------------------------------------------------- /SharpCutUpdate/SharpCut.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutUpdate/SharpCut.ico -------------------------------------------------------------------------------- /SharpCutUpdate/SharpCutUpdate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutUpdate/SharpCutUpdate.csproj -------------------------------------------------------------------------------- /SharpCutUpdate/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipbutkiewicz/SharpCut/HEAD/SharpCutUpdate/packages.config -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | sharpcut.conflagrate.co --------------------------------------------------------------------------------