aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.MediaEncoding/Subtitles/SrtWriter.cs
blob: 5da83891124a5796c239064fcea078159c2e16ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;
using System.IO;
using System.Threading;

namespace MediaBrowser.MediaEncoding.Subtitles
{
    public class SrtWriter : ISubtitleWriter
    {
        public void Write(SubtitleTrackInfo info, Stream stream, CancellationToken cancellationToken)
        {
            throw new NotImplementedException();
        }
    }
}