jellyfin/MediaBrowser.MediaEncoding/Subtitles/SrtParser.cs

18 lines
368 B
C#
Raw Normal View History

2014-05-05 14:45:45 +00:00
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MediaBrowser.MediaEncoding.Subtitles
{
2014-05-07 02:28:19 +00:00
public class SrtParser : ISubtitleParser
2014-05-05 14:45:45 +00:00
{
2014-05-07 02:28:19 +00:00
public SubtitleTrackInfo Parse(Stream stream)
2014-05-05 14:45:45 +00:00
{
throw new NotImplementedException();
}
}
}