ISubtitleParser.cs 169 B

123456789
  1. using System.IO;
  2. namespace MediaBrowser.MediaEncoding.Subtitles
  3. {
  4. public interface ISubtitleParser
  5. {
  6. SubtitleTrackInfo Parse(Stream stream);
  7. }
  8. }