SsaParser.cs 368 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace MediaBrowser.MediaEncoding.Subtitles
  8. {
  9. public class SsaParser : ISubtitleParser
  10. {
  11. public SubtitleTrackInfo Parse(Stream stream)
  12. {
  13. throw new NotImplementedException();
  14. }
  15. }
  16. }