Sergey M․
5 years ago
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with
14 additions and
1 deletions
-
youtube_dl/extractor/dailymotion.py
|
@ -48,7 +48,14 @@ class DailymotionBaseInfoExtractor(InfoExtractor): |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class DailymotionIE(DailymotionBaseInfoExtractor): |
|
|
class DailymotionIE(DailymotionBaseInfoExtractor): |
|
|
_VALID_URL = r'(?i)https?://(?:(www|touch)\.)?dailymotion\.[a-z]{2,3}/(?:(?:(?:embed|swf|#)/)?video|swf)/(?P<id>[^/?_]+)' |
|
|
|
|
|
|
|
|
_VALID_URL = r'''(?ix) |
|
|
|
|
|
https?:// |
|
|
|
|
|
(?: |
|
|
|
|
|
(?:(?:www|touch)\.)?dailymotion\.[a-z]{2,3}/(?:(?:(?:embed|swf|\#)/)?video|swf)| |
|
|
|
|
|
(?:www\.)?lequipe\.fr/video |
|
|
|
|
|
) |
|
|
|
|
|
/(?P<id>[^/?_]+) |
|
|
|
|
|
''' |
|
|
IE_NAME = 'dailymotion' |
|
|
IE_NAME = 'dailymotion' |
|
|
|
|
|
|
|
|
_FORMATS = [ |
|
|
_FORMATS = [ |
|
@ -133,6 +140,12 @@ class DailymotionIE(DailymotionBaseInfoExtractor): |
|
|
}, { |
|
|
}, { |
|
|
'url': 'http://www.dailymotion.com/swf/x3ss1m_funny-magic-trick-barry-and-stuart_fun', |
|
|
'url': 'http://www.dailymotion.com/swf/x3ss1m_funny-magic-trick-barry-and-stuart_fun', |
|
|
'only_matching': True, |
|
|
'only_matching': True, |
|
|
|
|
|
}, { |
|
|
|
|
|
'url': 'https://www.lequipe.fr/video/x791mem', |
|
|
|
|
|
'only_matching': True, |
|
|
|
|
|
}, { |
|
|
|
|
|
'url': 'https://www.lequipe.fr/video/k7MtHciueyTcrFtFKA2', |
|
|
|
|
|
'only_matching': True, |
|
|
}] |
|
|
}] |
|
|
|
|
|
|
|
|
@staticmethod |
|
|
@staticmethod |
|
|