(no title)
Our_Benefactors | 14 days ago
Normal CQ = 28 Aggressive CQ = 34
# Thresholds to detect ultra-low-bitrate inputs (use more aggressive encoding)
# (width, height) → min sensible bitrate (bps). If stream <= threshold, use aggressive profile.
LOW_BITRATE_THRESHOLDS = [
((3840, 2160), 13_000_000), # 4K ≤13 Mbps → use aggressive encoding
((2560, 1440), 8_000_000), # 1440p
((1920, 1080), 5_000_000), # 1080p
((1280, 720), 2_500_000), # 720p
((854, 480), 1_200_000), # 480p
]
jackvalentine|13 days ago