diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-06-11 16:57:18 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-06-11 16:57:18 -0400 |
| commit | a18f4e37ac4cfa0aac77bc64fb56b1d43bcde63a (patch) | |
| tree | 622dd3972c03c50f1f9cdff1f22c626aa93bd24c /MediaBrowser.MediaEncoding/Subtitles/SrtWriter.cs | |
| parent | dd7825f6c8cdd1eb30d4034d03fdaf6ff3f545be (diff) | |
added IsTextSubtitleStream
Diffstat (limited to 'MediaBrowser.MediaEncoding/Subtitles/SrtWriter.cs')
| -rw-r--r-- | MediaBrowser.MediaEncoding/Subtitles/SrtWriter.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/MediaBrowser.MediaEncoding/Subtitles/SrtWriter.cs b/MediaBrowser.MediaEncoding/Subtitles/SrtWriter.cs new file mode 100644 index 000000000..5da838911 --- /dev/null +++ b/MediaBrowser.MediaEncoding/Subtitles/SrtWriter.cs @@ -0,0 +1,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(); + } + } +} |
