[GlomexEmbed] Avoid large match objects

Closes #2512
Authored by: zmousm
pull/2558/head
Zenon Mousmoulas 2 years ago committed by GitHub
parent b72270d27e
commit 19afd9ea51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -198,8 +198,13 @@ class GlomexEmbedIE(GlomexBaseIE):
)+</script>
)''' % {'quot_re': r'["\']', 'url_re': VALID_SRC}
for mobj in re.finditer(EMBED_RE, webpage):
mdict = mobj.groupdict()
for mtup in re.findall(EMBED_RE, webpage):
# re.finditer causes a memory spike. See https://github.com/yt-dlp/yt-dlp/issues/2512
mdict = dict(zip((
'url', '_',
'html_tag', '_', 'integration_html', '_', 'id_html', '_', 'glomex_player',
'script_tag', '_', '_', 'integration_js', '_', 'id_js',
), mtup))
if mdict.get('url'):
url = unescapeHTML(mdict['url'])
if not cls.suitable(url):

Loading…
Cancel
Save