1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-15 16:29:36 +00:00

[extractor/generic] Improve dailymotion embed detection (Closes #8521, closes #8325)

This commit is contained in:
Sergey M․ 2016-02-12 22:03:10 +06:00
parent b826035dd5
commit 5a4905924d

View file

@ -1413,7 +1413,7 @@ class GenericIE(InfoExtractor):
# Look for embedded Dailymotion player
matches = re.findall(
r'<(?:embed|iframe)[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:www\.)?dailymotion\.com/(?:embed|swf)/video/.+?)\1', webpage)
r'<(?:(?:embed|iframe)[^>]+?src=|input[^>]+id=[\'"]dmcloudUrlEmissionSelect[\'"][^>]+value=)(["\'])(?P<url>(?:https?:)?//(?:www\.)?dailymotion\.com/(?:embed|swf)/video/.+?)\1', webpage)
if matches:
return _playlist_from_matches(
matches, lambda m: unescapeHTML(m[1]))