fix: always use 640k bitrate
This commit is contained in:
@@ -80,7 +80,7 @@ def convert(file: Path):
|
||||
# Only re-encode AAC 5.1 or 7.1
|
||||
if s["codec_name"] == "aac" and s.get("channels") in (6, 8):
|
||||
codec_map[s["index"]] = "eac3"
|
||||
target_bitrates[s["index"]] = "640k" if s["channels"] == 6 else "1024k"
|
||||
target_bitrates[s["index"]] = "640k"
|
||||
has_aac_multichannel = True
|
||||
else:
|
||||
codec_map[s["index"]] = "copy"
|
||||
|
||||
Reference in New Issue
Block a user