mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-12 02:01:05 +01:00
parent
c733555106
commit
5424dbaf91
@ -6307,6 +6307,12 @@ def calculate_preference(self, format):
|
||||
# if format.get('preference') is None and format.get('ext') in ('f4f', 'f4m'): # Not supported?
|
||||
# format['preference'] = -1000
|
||||
|
||||
if format.get('preference') is None and format.get('ext') == 'flv' and re.match('[hx]265|he?vc?', format.get('vcodec') or ''):
|
||||
# HEVC-over-FLV is out-of-spec by FLV's original spec
|
||||
# ref. https://trac.ffmpeg.org/ticket/6389
|
||||
# ref. https://github.com/yt-dlp/yt-dlp/pull/5821
|
||||
format['preference'] = -100
|
||||
|
||||
# Determine missing bitrates
|
||||
if format.get('tbr') is None:
|
||||
if format.get('vbr') is not None and format.get('abr') is not None:
|
||||
|
Loading…
Reference in New Issue
Block a user