Files
jellyfin-jellyfin-1/MediaBrowser.MediaEncoding/Subtitles/SsaParser.cs

18 lines
368 B
C#
Raw Normal View History

2014-05-05 10:45:45 -04: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-06 22:28:19 -04:00
public class SsaParser : ISubtitleParser
2014-05-05 10:45:45 -04:00
{
2014-05-06 22:28:19 -04:00
public SubtitleTrackInfo Parse(Stream stream)
2014-05-05 10:45:45 -04:00
{
throw new NotImplementedException();
}
}
}