예제 #1
0
 public SubtitleTrack(OKEFile file, Info info) : base(file, info)
 {
     if (info.InfoType != InfoType.Default)
     {
         throw new ArgumentException("Invalid media info for subtitle track");
     }
     TrackType = TrackType.Subtitle;
 }
예제 #2
0
 public AudioTrack(OKEFile file, AudioInfo info) : base(file, info)
 {
     TrackType = TrackType.Audio;
 }
예제 #3
0
 public ChapterTrack(OKEFile file) : base(file, new Info())
 {
     TrackType = TrackType.Chapter;
 }
예제 #4
0
파일: Track.cs 프로젝트: vcb-s/OKEGui
 public Track(OKEFile file, Info info)
 {
     File = file;
     Info = info;
 }
예제 #5
0
 public VideoTrack(OKEFile file, VideoInfo info) : base(file, info)
 {
     TrackType = TrackType.Video;
 }