jellyfin/MediaBrowser.MediaEncoding/Subtitles/SsaParser.cs

18 lines
368 B
C#
Raw Normal View History

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