mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-01-23 10:47:33 +01:00
[extractor/zdf] Fix bug in 62b2b736e741095d9136c423f37c588fca267d61
Closes #4061
This commit is contained in:
parent
f3c0c77304
commit
e3aae45a6f
@ -69,7 +69,7 @@ class ZDFBaseIE(InfoExtractor):
|
||||
f.update({
|
||||
'url': format_url,
|
||||
'format_id': join_nonempty('http', meta.get('type'), meta.get('quality')),
|
||||
'tbr': int_or_none(self._search_regex(r'_(\d+)k_', format_url, default=None))
|
||||
'tbr': int_or_none(self._search_regex(r'_(\d+)k_', format_url, 'tbr', default=None))
|
||||
})
|
||||
new_formats = [f]
|
||||
formats.extend(merge_dicts(f, {
|
||||
|
Loading…
x
Reference in New Issue
Block a user