fix samsung dlna subtitles

This commit is contained in:
Luke Pulverenti 2016-03-22 00:15:12 -04:00
parent 7a014affb2
commit 49c678037a
2 changed files with 11 additions and 11 deletions

View File

@ -213,13 +213,13 @@ namespace MediaBrowser.Dlna.Didl
// <sec:CaptionInfoEx sec:type="srt">http://192.168.1.3:9999/video.srt</sec:CaptionInfoEx> // <sec:CaptionInfoEx sec:type="srt">http://192.168.1.3:9999/video.srt</sec:CaptionInfoEx>
// <sec:CaptionInfo sec:type="srt">http://192.168.1.3:9999/video.srt</sec:CaptionInfo> // <sec:CaptionInfo sec:type="srt">http://192.168.1.3:9999/video.srt</sec:CaptionInfo>
//var res = container.OwnerDocument.CreateElement("SEC", "CaptionInfoEx"); var res = container.OwnerDocument.CreateElement("CaptionInfoEx", "sec");
//res.InnerText = info.Url; res.InnerText = info.Url;
//// TODO: attribute needs SEC: //// TODO: attribute needs SEC:
//res.SetAttribute("type", info.Format.ToLower()); res.SetAttribute("type", "sec", info.Format.ToLower());
//container.AppendChild(res); container.AppendChild(res);
} }
else if (string.Equals(subtitleMode, "smi", StringComparison.OrdinalIgnoreCase)) else if (string.Equals(subtitleMode, "smi", StringComparison.OrdinalIgnoreCase))
{ {

View File

@ -604,7 +604,7 @@ namespace MediaBrowser.MediaEncoding.Subtitles
process.StandardError.BaseStream.CopyToAsync(logFileStream); process.StandardError.BaseStream.CopyToAsync(logFileStream);
var ranToCompletion = process.WaitForExit(120000); var ranToCompletion = process.WaitForExit(300000);
if (!ranToCompletion) if (!ranToCompletion)
{ {