Browse Source

added 64k hls stream

Luke Pulverenti 11 years ago
parent
commit
87c4d447f8
1 changed files with 3 additions and 3 deletions
  1. 3 3
      MediaBrowser.Api/Playback/Hls/BaseHlsService.cs

+ 3 - 3
MediaBrowser.Api/Playback/Hls/BaseHlsService.cs

@@ -143,9 +143,9 @@ namespace MediaBrowser.Api.Playback.Hls
             builder.AppendLine(playlistUrl);
 
             // Low bitrate stream
-            //builder.AppendLine("#EXT-X-STREAM-INF:PROGRAM-ID=1, BANDWIDTH=64000");
-            //playlistUrl = "hls/" + Path.GetFileName(firstPlaylist).Replace(".m3u8", "-low/stream.m3u8");
-            //builder.AppendLine(playlistUrl);
+            builder.AppendLine("#EXT-X-STREAM-INF:PROGRAM-ID=1, BANDWIDTH=64000");
+            playlistUrl = "hls/" + Path.GetFileName(firstPlaylist).Replace(".m3u8", "-low/stream.m3u8");
+            builder.AppendLine(playlistUrl);
 
             return builder.ToString();
         }