Browse Source

Merge pull request #2442 from Bond-009/remux

Switch remux and direct stream
dkanada 5 years ago
parent
commit
72c98e41ca
1 changed files with 2 additions and 2 deletions
  1. 2 2
      MediaBrowser.Api/Playback/BaseStreamingService.cs

+ 2 - 2
MediaBrowser.Api/Playback/BaseStreamingService.cs

@@ -250,11 +250,11 @@ namespace MediaBrowser.Api.Playback
             {
             {
                 if (string.Equals(state.OutputAudioCodec, "copy", StringComparison.OrdinalIgnoreCase))
                 if (string.Equals(state.OutputAudioCodec, "copy", StringComparison.OrdinalIgnoreCase))
                 {
                 {
-                    logFilePrefix = "ffmpeg-directstream";
+                    logFilePrefix = "ffmpeg-remux";
                 }
                 }
                 else
                 else
                 {
                 {
-                    logFilePrefix = "ffmpeg-remux";
+                    logFilePrefix = "ffmpeg-directstream";
                 }
                 }
             }
             }