mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-30 22:25:19 +00:00 
			
		
		
		
	[GlomexEmbed] Avoid large match objects
Closes #2512 Authored by: zmousm
This commit is contained in:
		| @@ -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): | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Zenon Mousmoulas
					Zenon Mousmoulas