aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.MediaEncoding/Subtitles/SsaParser.cs
blob: ca7e58371ce534f62c37860c23d6110e4cc46b42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MediaBrowser.MediaEncoding.Subtitles
{
    public class SsaParser : ISubtitleParser
    {
        public SubtitleTrackInfo Parse(Stream stream)
        {
            throw new NotImplementedException();
        }
    }
}