2014-05-11 04:47:48 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
2014-06-18 16:08:54 +00:00
|
|
|
|
using System.Text;
|
2014-06-13 14:24:14 +00:00
|
|
|
|
using System.Text.RegularExpressions;
|
2014-06-11 14:42:03 +00:00
|
|
|
|
using System.Threading;
|
2015-07-20 03:43:13 +00:00
|
|
|
|
using MediaBrowser.Model.MediaInfo;
|
2014-05-11 04:47:48 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.MediaEncoding.Subtitles
|
|
|
|
|
{
|
|
|
|
|
public class VttWriter : ISubtitleWriter
|
|
|
|
|
{
|
2014-06-11 14:42:03 +00:00
|
|
|
|
public void Write(SubtitleTrackInfo info, Stream stream, CancellationToken cancellationToken)
|
|
|
|
|
{
|
2014-06-18 16:08:54 +00:00
|
|
|
|
using (var writer = new StreamWriter(stream, Encoding.UTF8, 1024, true))
|
2014-05-11 06:29:44 +00:00
|
|
|
|
{
|
|
|
|
|
writer.WriteLine("WEBVTT");
|
|
|
|
|
writer.WriteLine(string.Empty);
|
|
|
|
|
foreach (var trackEvent in info.TrackEvents)
|
|
|
|
|
{
|
2014-06-11 14:42:03 +00:00
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
|
|
2014-08-29 06:42:56 +00:00
|
|
|
|
TimeSpan startTime = TimeSpan.FromTicks(trackEvent.StartPositionTicks);
|
|
|
|
|
TimeSpan endTime = TimeSpan.FromTicks(trackEvent.EndPositionTicks);
|
|
|
|
|
|
|
|
|
|
// make sure the start and end times are different and seqential
|
|
|
|
|
if (endTime.TotalMilliseconds <= startTime.TotalMilliseconds)
|
|
|
|
|
{
|
|
|
|
|
endTime = startTime.Add(TimeSpan.FromMilliseconds(1));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
writer.WriteLine(@"{0:hh\:mm\:ss\.fff} --> {1:hh\:mm\:ss\.fff}", startTime, endTime);
|
2014-06-13 14:24:14 +00:00
|
|
|
|
|
2014-06-14 18:24:20 +00:00
|
|
|
|
var text = trackEvent.Text;
|
2014-06-15 02:37:12 +00:00
|
|
|
|
|
|
|
|
|
// TODO: Not sure how to handle these
|
2014-08-24 22:02:47 +00:00
|
|
|
|
text = Regex.Replace(text, @"\\n", " ", RegexOptions.IgnoreCase);
|
2014-06-13 14:24:14 +00:00
|
|
|
|
|
|
|
|
|
writer.WriteLine(text);
|
2014-05-11 06:29:44 +00:00
|
|
|
|
writer.WriteLine(string.Empty);
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-05-11 04:47:48 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|