mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 18:08:53 -07:00
update mp3 transcoding
This commit is contained in:
parent
f60a77b6b6
commit
1135ad0fe2
@ -721,15 +721,15 @@ namespace MediaBrowser.Api.Playback
|
|||||||
|
|
||||||
if (request.MaxAudioChannels.HasValue)
|
if (request.MaxAudioChannels.HasValue)
|
||||||
{
|
{
|
||||||
|
var channelLimit = codec.IndexOf("mp3", StringComparison.OrdinalIgnoreCase) != -1
|
||||||
|
? 2
|
||||||
|
: 6;
|
||||||
|
|
||||||
if (inputChannels.HasValue)
|
if (inputChannels.HasValue)
|
||||||
{
|
{
|
||||||
return Math.Min(request.MaxAudioChannels.Value, inputChannels.Value);
|
channelLimit = Math.Min(channelLimit, inputChannels.Value);
|
||||||
}
|
}
|
||||||
|
|
||||||
var channelLimit = codec.IndexOf("mp3", StringComparison.OrdinalIgnoreCase) != -1
|
|
||||||
? 2
|
|
||||||
: 6;
|
|
||||||
|
|
||||||
// If we don't have any media info then limit it to 5 to prevent encoding errors due to asking for too many channels
|
// If we don't have any media info then limit it to 5 to prevent encoding errors due to asking for too many channels
|
||||||
return Math.Min(request.MaxAudioChannels.Value, channelLimit);
|
return Math.Min(request.MaxAudioChannels.Value, channelLimit);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user