1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-16 10:09:32 +00:00

[extractor/common] Fix media type extraction for HTML5 media tags in start/end form

This commit is contained in:
Sergey M․ 2020-12-07 00:45:16 +07:00
parent f2c704e112
commit 6ad0d8781e
No known key found for this signature in database
GPG key ID: 2C393E0F18A9236D

View file

@ -2521,8 +2521,8 @@ class InfoExtractor(object):
# Allowing more characters may end up in significant slow down (see
# https://github.com/ytdl-org/youtube-dl/issues/11979, example URL:
# http://www.porntrex.com/maps/videositemap.xml).
r'(?s)(<(?P<tag>(?:amp-)?(?:video|audio))(?:\s+[^>]*)?>)(.*?)</(?P=tag)>', webpage))
for media_tag, media_type, media_content in media_tags:
r'(?s)(<(?P<tag>(?:amp-)?(video|audio))(?:\s+[^>]*)?>)(.*?)</(?P=tag)>', webpage))
for media_tag, _, media_type, media_content in media_tags:
media_info = {
'formats': [],
'subtitles': {},