Merge pull request #2442 from Bond-009/remux

Switch remux and direct stream
This commit is contained in:
dkanada 2020-02-23 16:23:12 +09:00 committed by GitHub
commit 72c98e41ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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";
}
}