jellyfin/MediaBrowser.MediaEncoding/Subtitles/SrtWriter.cs

15 lines
338 B
C#
Raw Normal View History

2014-06-11 22:57:18 +02:00
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();
}
}
}