mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
Relaxed validation for numeric format filters
Continued from f96bff99cb
Closes #6782
This commit is contained in:
parent
52ecc33e22
commit
c3f624ef0a
1 changed files with 1 additions and 1 deletions
|
@ -1932,7 +1932,7 @@ def _build_format_filter(self, filter_spec):
|
|||
'!=': operator.ne,
|
||||
}
|
||||
operator_rex = re.compile(r'''(?x)\s*
|
||||
(?P<key>width|height|tbr|abr|vbr|asr|filesize|filesize_approx|fps)\s*
|
||||
(?P<key>[\w.-]+)\s*
|
||||
(?P<op>%s)(?P<none_inclusive>\s*\?)?\s*
|
||||
(?P<value>[0-9.]+(?:[kKmMgGtTpPeEzZyY]i?[Bb]?)?)\s*
|
||||
''' % '|'.join(map(re.escape, OPERATORS.keys())))
|
||||
|
|
Loading…
Reference in a new issue