aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordkanada <dkanada@users.noreply.github.com>2020-02-23 16:23:12 +0900
committerGitHub <noreply@github.com>2020-02-23 16:23:12 +0900
commit72c98e41ca2c0042edf645298371245c1abee354 (patch)
tree5663d76723a584cc2ca1f3c1fe9766e84de4e157
parent6e239c52c593559080576bc41f9b364280e2b9d9 (diff)
parentffc9eb67f0422129af05dd2ea6ab2088e80f2550 (diff)
Merge pull request #2442 from Bond-009/remux
Switch remux and direct stream
-rw-r--r--MediaBrowser.Api/Playback/BaseStreamingService.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Api/Playback/BaseStreamingService.cs b/MediaBrowser.Api/Playback/BaseStreamingService.cs
index 7837aa65b0..5029ce0bb7 100644
--- a/MediaBrowser.Api/Playback/BaseStreamingService.cs
+++ b/MediaBrowser.Api/Playback/BaseStreamingService.cs
@@ -250,11 +250,11 @@ namespace MediaBrowser.Api.Playback
{
if (string.Equals(state.OutputAudioCodec, "copy", StringComparison.OrdinalIgnoreCase))
{
- logFilePrefix = "ffmpeg-directstream";
+ logFilePrefix = "ffmpeg-remux";
}
else
{
- logFilePrefix = "ffmpeg-remux";
+ logFilePrefix = "ffmpeg-directstream";
}
}