Update MkvInfoReader, Add MkvNode extensions

This commit is contained in:
2022-03-17 13:32:20 +01:00
parent 09d1a52aed
commit df86aee35f
9 changed files with 142 additions and 28 deletions

View File

@@ -0,0 +1,10 @@
namespace MkvPropEditWrapper.Shared;
public record TrackInfo(int Number, TrackType TrackType, string Language, bool IsDefault, bool IsForced);
public enum TrackType
{
Unknown,
Audio,
Subtitles
}