mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-04 07:02:58 +00:00
Force channel to be >= 1
Co-authored-by: Cody Robibero <cody@robibe.ro>
This commit is contained in:
parent
d5eb8fc121
commit
24910348a1
1 changed files with 1 additions and 1 deletions
|
|
@ -2588,7 +2588,7 @@ namespace MediaBrowser.Controller.MediaEncoding
|
|||
|
||||
public string GetAudioVbrModeParam(string encoder, int bitrate, int channels)
|
||||
{
|
||||
var bitratePerChannel = bitrate / channels;
|
||||
var bitratePerChannel = bitrate / Math.Max(channels, 1);
|
||||
if (string.Equals(encoder, "libfdk_aac", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
return " -vbr:a " + bitratePerChannel switch
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue