├── LICENSE ├── README.md ├── gMKVExtractGUI.sln ├── gMKVExtractGUI.v11.suo ├── gMKVExtractGUI ├── Controls │ ├── ControlExtensions.cs │ ├── ExceptionExtensions.cs │ ├── gCheckedListBox.cs │ ├── gComboBox.cs │ ├── gDataGridView.cs │ ├── gForm.cs │ ├── gForm.resx │ ├── gGroupBox.cs │ ├── gListBox.cs │ ├── gRichTextBox.cs │ ├── gTableLayoutPanel.cs │ ├── gTaskbarProgress.cs │ ├── gTextBox.cs │ └── gTreeView.cs ├── Forms │ ├── IFormMain.cs │ ├── frmJobManager.Designer.cs │ ├── frmJobManager.cs │ ├── frmJobManager.resx │ ├── frmLog.Designer.cs │ ├── frmLog.cs │ ├── frmLog.resx │ ├── frmMain.Designer.cs │ ├── frmMain.cs │ ├── frmMain.resx │ ├── frmMain2.Designer.cs │ ├── frmMain2.cs │ ├── frmMain2.resx │ ├── frmOptions.Designer.cs │ ├── frmOptions.cs │ └── frmOptions.resx ├── Images │ └── gMkvExtractGuiIcon.ico ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── app.config ├── app.manifest ├── gMKVExtractGUI.csproj ├── gMKVExtractGUI.csproj.user └── gSettings.cs └── gMKVToolNix ├── Chapters ├── matroskachapters.cs ├── matroskachapters.dtd └── matroskachapters.xsd ├── CueSheet ├── Cue.cs └── CueTrack.cs ├── Libs ├── LICENSE.md ├── Newtonsoft.Json.dll ├── Newtonsoft.Json.pdb └── Newtonsoft.Json.xml ├── Properties └── AssemblyInfo.cs ├── gMKVAttachment.cs ├── gMKVChapter.cs ├── gMKVExtract.cs ├── gMKVHelper.cs ├── gMKVInfo.cs ├── gMKVJob.cs ├── gMKVJobInfo.cs ├── gMKVLogger.cs ├── gMKVMerge.cs ├── gMKVSegment.cs ├── gMKVSegmentInfo.cs ├── gMKVToolNix.csproj ├── gMKVToolNix.csproj.user ├── gMKVTrack.cs └── gMKVVersion.cs /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/README.md -------------------------------------------------------------------------------- /gMKVExtractGUI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI.sln -------------------------------------------------------------------------------- /gMKVExtractGUI.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI.v11.suo -------------------------------------------------------------------------------- /gMKVExtractGUI/Controls/ControlExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Controls/ControlExtensions.cs -------------------------------------------------------------------------------- /gMKVExtractGUI/Controls/ExceptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Controls/ExceptionExtensions.cs -------------------------------------------------------------------------------- /gMKVExtractGUI/Controls/gCheckedListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Controls/gCheckedListBox.cs -------------------------------------------------------------------------------- /gMKVExtractGUI/Controls/gComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Controls/gComboBox.cs -------------------------------------------------------------------------------- /gMKVExtractGUI/Controls/gDataGridView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Controls/gDataGridView.cs -------------------------------------------------------------------------------- /gMKVExtractGUI/Controls/gForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Controls/gForm.cs -------------------------------------------------------------------------------- /gMKVExtractGUI/Controls/gForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Controls/gForm.resx -------------------------------------------------------------------------------- /gMKVExtractGUI/Controls/gGroupBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Controls/gGroupBox.cs -------------------------------------------------------------------------------- /gMKVExtractGUI/Controls/gListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Controls/gListBox.cs -------------------------------------------------------------------------------- /gMKVExtractGUI/Controls/gRichTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Controls/gRichTextBox.cs -------------------------------------------------------------------------------- /gMKVExtractGUI/Controls/gTableLayoutPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Controls/gTableLayoutPanel.cs -------------------------------------------------------------------------------- /gMKVExtractGUI/Controls/gTaskbarProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Controls/gTaskbarProgress.cs -------------------------------------------------------------------------------- /gMKVExtractGUI/Controls/gTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Controls/gTextBox.cs -------------------------------------------------------------------------------- /gMKVExtractGUI/Controls/gTreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Controls/gTreeView.cs -------------------------------------------------------------------------------- /gMKVExtractGUI/Forms/IFormMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Forms/IFormMain.cs -------------------------------------------------------------------------------- /gMKVExtractGUI/Forms/frmJobManager.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Forms/frmJobManager.Designer.cs -------------------------------------------------------------------------------- /gMKVExtractGUI/Forms/frmJobManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Forms/frmJobManager.cs -------------------------------------------------------------------------------- /gMKVExtractGUI/Forms/frmJobManager.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Forms/frmJobManager.resx -------------------------------------------------------------------------------- /gMKVExtractGUI/Forms/frmLog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Forms/frmLog.Designer.cs -------------------------------------------------------------------------------- /gMKVExtractGUI/Forms/frmLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Forms/frmLog.cs -------------------------------------------------------------------------------- /gMKVExtractGUI/Forms/frmLog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Forms/frmLog.resx -------------------------------------------------------------------------------- /gMKVExtractGUI/Forms/frmMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Forms/frmMain.Designer.cs -------------------------------------------------------------------------------- /gMKVExtractGUI/Forms/frmMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Forms/frmMain.cs -------------------------------------------------------------------------------- /gMKVExtractGUI/Forms/frmMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Forms/frmMain.resx -------------------------------------------------------------------------------- /gMKVExtractGUI/Forms/frmMain2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Forms/frmMain2.Designer.cs -------------------------------------------------------------------------------- /gMKVExtractGUI/Forms/frmMain2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Forms/frmMain2.cs -------------------------------------------------------------------------------- /gMKVExtractGUI/Forms/frmMain2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Forms/frmMain2.resx -------------------------------------------------------------------------------- /gMKVExtractGUI/Forms/frmOptions.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Forms/frmOptions.Designer.cs -------------------------------------------------------------------------------- /gMKVExtractGUI/Forms/frmOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Forms/frmOptions.cs -------------------------------------------------------------------------------- /gMKVExtractGUI/Forms/frmOptions.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Forms/frmOptions.resx -------------------------------------------------------------------------------- /gMKVExtractGUI/Images/gMkvExtractGuiIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Images/gMkvExtractGuiIcon.ico -------------------------------------------------------------------------------- /gMKVExtractGUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Program.cs -------------------------------------------------------------------------------- /gMKVExtractGUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /gMKVExtractGUI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /gMKVExtractGUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Properties/Resources.resx -------------------------------------------------------------------------------- /gMKVExtractGUI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /gMKVExtractGUI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/Properties/Settings.settings -------------------------------------------------------------------------------- /gMKVExtractGUI/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/app.config -------------------------------------------------------------------------------- /gMKVExtractGUI/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/app.manifest -------------------------------------------------------------------------------- /gMKVExtractGUI/gMKVExtractGUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/gMKVExtractGUI.csproj -------------------------------------------------------------------------------- /gMKVExtractGUI/gMKVExtractGUI.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/gMKVExtractGUI.csproj.user -------------------------------------------------------------------------------- /gMKVExtractGUI/gSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVExtractGUI/gSettings.cs -------------------------------------------------------------------------------- /gMKVToolNix/Chapters/matroskachapters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVToolNix/Chapters/matroskachapters.cs -------------------------------------------------------------------------------- /gMKVToolNix/Chapters/matroskachapters.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVToolNix/Chapters/matroskachapters.dtd -------------------------------------------------------------------------------- /gMKVToolNix/Chapters/matroskachapters.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVToolNix/Chapters/matroskachapters.xsd -------------------------------------------------------------------------------- /gMKVToolNix/CueSheet/Cue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVToolNix/CueSheet/Cue.cs -------------------------------------------------------------------------------- /gMKVToolNix/CueSheet/CueTrack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVToolNix/CueSheet/CueTrack.cs -------------------------------------------------------------------------------- /gMKVToolNix/Libs/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVToolNix/Libs/LICENSE.md -------------------------------------------------------------------------------- /gMKVToolNix/Libs/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVToolNix/Libs/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /gMKVToolNix/Libs/Newtonsoft.Json.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVToolNix/Libs/Newtonsoft.Json.pdb -------------------------------------------------------------------------------- /gMKVToolNix/Libs/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVToolNix/Libs/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /gMKVToolNix/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVToolNix/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /gMKVToolNix/gMKVAttachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVToolNix/gMKVAttachment.cs -------------------------------------------------------------------------------- /gMKVToolNix/gMKVChapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVToolNix/gMKVChapter.cs -------------------------------------------------------------------------------- /gMKVToolNix/gMKVExtract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVToolNix/gMKVExtract.cs -------------------------------------------------------------------------------- /gMKVToolNix/gMKVHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVToolNix/gMKVHelper.cs -------------------------------------------------------------------------------- /gMKVToolNix/gMKVInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVToolNix/gMKVInfo.cs -------------------------------------------------------------------------------- /gMKVToolNix/gMKVJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVToolNix/gMKVJob.cs -------------------------------------------------------------------------------- /gMKVToolNix/gMKVJobInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVToolNix/gMKVJobInfo.cs -------------------------------------------------------------------------------- /gMKVToolNix/gMKVLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVToolNix/gMKVLogger.cs -------------------------------------------------------------------------------- /gMKVToolNix/gMKVMerge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVToolNix/gMKVMerge.cs -------------------------------------------------------------------------------- /gMKVToolNix/gMKVSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVToolNix/gMKVSegment.cs -------------------------------------------------------------------------------- /gMKVToolNix/gMKVSegmentInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVToolNix/gMKVSegmentInfo.cs -------------------------------------------------------------------------------- /gMKVToolNix/gMKVToolNix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVToolNix/gMKVToolNix.csproj -------------------------------------------------------------------------------- /gMKVToolNix/gMKVToolNix.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVToolNix/gMKVToolNix.csproj.user -------------------------------------------------------------------------------- /gMKVToolNix/gMKVTrack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVToolNix/gMKVTrack.cs -------------------------------------------------------------------------------- /gMKVToolNix/gMKVVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooke007/gMKVExtractGUI_chs/HEAD/gMKVToolNix/gMKVVersion.cs --------------------------------------------------------------------------------