aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.MediaEncoding/Subtitles/SrtWriter.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-06-11 16:57:18 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-06-11 16:57:18 -0400
commita18f4e37ac4cfa0aac77bc64fb56b1d43bcde63a (patch)
tree622dd3972c03c50f1f9cdff1f22c626aa93bd24c /MediaBrowser.MediaEncoding/Subtitles/SrtWriter.cs
parentdd7825f6c8cdd1eb30d4034d03fdaf6ff3f545be (diff)
added IsTextSubtitleStream
Diffstat (limited to 'MediaBrowser.MediaEncoding/Subtitles/SrtWriter.cs')
-rw-r--r--MediaBrowser.MediaEncoding/Subtitles/SrtWriter.cs14
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();
+ }
+ }
+}