Luke Pulverenti 9 years ago
parent
commit
2652c8918c
1 changed files with 5 additions and 4 deletions
  1. 5 4
      MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs

+ 5 - 4
MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs

@@ -13,7 +13,6 @@ using MediaBrowser.Model.IO;
 using MediaBrowser.Model.Serialization;
 using ServiceStack;
 using System;
-using System.Collections.Concurrent;
 using System.Collections.Generic;
 using System.Globalization;
 using System.IO;
@@ -713,11 +712,13 @@ namespace MediaBrowser.Api.Playback.Hls
 
             var index = 0;
 
+            double segmentLength = state.SegmentLength;
+
             while (seconds > 0)
             {
-                var length = seconds >= state.SegmentLength ? state.SegmentLength : seconds;
+                var length = seconds >= state.SegmentLength ? segmentLength : seconds;
 
-                builder.AppendLine("#EXTINF:" + length.ToString(UsCulture) + ",");
+                builder.AppendLine("#EXTINF:" + length.ToString("0.000000", UsCulture) + ",");
 
                 builder.AppendLine(string.Format("hlsdynamic/{0}/{1}{2}{3}",
 
@@ -726,7 +727,7 @@ namespace MediaBrowser.Api.Playback.Hls
                     GetSegmentFileExtension(isOutputVideo),
                     queryString));
 
-                seconds -= state.SegmentLength;
+                seconds -= length;
                 index++;
             }