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:
@@ -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:"))
|
||||
|
||||
Reference in New Issue
Block a user