Updated the Main form to include subtitles in the details pane. Minor tweaks to the serializer engine. Focus my shift from this to FNRenamer from here.

This commit is contained in:
2017-09-04 21:20:31 -05:00
parent 03308e68b2
commit 646ea08f3e
7 changed files with 133 additions and 66 deletions
+5
View File
@@ -30,6 +30,10 @@ namespace MKVTest
Arguments = command
};
process.StartInfo = startInfo;
if (!Form1.CheckFiles())
{
MessageBox.Show(@"The two required files, mkvpropedit.exe and mkvinfo.exe are missing from this program's startup folder. These files are required to edit MKV files.", @"Missing Required Files");
}
process.Start();
while (!process.HasExited)
{
@@ -76,6 +80,7 @@ namespace MKVTest
{
var index = info[i].IndexOf(":", StringComparison.Ordinal) + 1;
track.Name = info[i].Substring(index, (info[i].Length - index)).Trim();
if(track.Type == MkvTrack.TrackType.Subtitle) tracks.Add(track);
}
if (info[i].Contains("Language:"))