Browse Source

Update Jellyfin.Api/Controllers/VideoHlsController.cs

Cody Robibero 3 years ago
parent
commit
17f43c8e01
1 changed files with 1 additions and 2 deletions
  1. 1 2
      Jellyfin.Api/Controllers/VideoHlsController.cs

+ 1 - 2
Jellyfin.Api/Controllers/VideoHlsController.cs

@@ -366,8 +366,7 @@ namespace Jellyfin.Api.Controllers
             else if (string.Equals(segmentFormat, "mp4", StringComparison.OrdinalIgnoreCase))
             {
                 string outputFmp4HeaderArg;
-                var isWindows = RuntimeInformation.IsOSPlatform(OSPlatform.Windows);
-                if (isWindows)
+                if (OperatingSystem.IsWindows())
                 {
                     // on Windows, the path of fmp4 header file needs to be configured
                     outputFmp4HeaderArg = " -hls_fmp4_init_filename \"" + outputPrefix + "-1" + outputExtension + "\"";