added subtitle parsing stubs

This commit is contained in:
Luke Pulverenti
2014-05-05 10:45:45 -04:00
parent 28f7aa5b5e
commit e1dd361c7b
8 changed files with 96 additions and 8 deletions

View File

@@ -0,0 +1,9 @@
using System.IO;
namespace MediaBrowser.MediaEncoding.Subtitles
{
public interface ISubtitleParser
{
SubtitleInfo Parse(Stream stream);
}
}