mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-27 03:34:23 +00:00
add DisplayTitle to media streams
This commit is contained in:
parent
4d66f6dc6c
commit
ff980dc42c
6 changed files with 147 additions and 5 deletions
|
|
@ -1008,7 +1008,7 @@ namespace MediaBrowser.MediaEncoding.Encoder
|
|||
// Boost volume to 200% when downsampling from 6ch to 2ch
|
||||
if (channels.HasValue && channels.Value <= 2)
|
||||
{
|
||||
if (state.AudioStream != null && state.AudioStream.Channels.HasValue && state.AudioStream.Channels.Value > 5)
|
||||
if (state.AudioStream != null && state.AudioStream.Channels.HasValue && state.AudioStream.Channels.Value > 5 && !GetEncodingOptions().DownMixAudioBoost.Equals(1))
|
||||
{
|
||||
volParam = ",volume=" + GetEncodingOptions().DownMixAudioBoost.ToString(UsCulture);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue