diff options
author | stepshal <nessento@openmailbox.org> | 2016-09-08 13:52:22 +0700 |
---|---|---|
committer | stepshal <nessento@openmailbox.org> | 2016-09-08 13:52:22 +0700 |
commit | 89f257d6e57131a266efae629334fe5f4bcf96e9 (patch) | |
tree | 1c919e664681228a80eb111b6cf95138e2bce469 /youtube_dl/extractor/dailymotion.py | |
parent | 846d8b76a07f617b595e0f1a2ae7ba22acafd98d (diff) |
Add support for https for rest of the exctractors.
Diffstat (limited to 'youtube_dl/extractor/dailymotion.py')
-rw-r--r-- | youtube_dl/extractor/dailymotion.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/dailymotion.py b/youtube_dl/extractor/dailymotion.py index 496883d15..62b0747a5 100644 --- a/youtube_dl/extractor/dailymotion.py +++ b/youtube_dl/extractor/dailymotion.py @@ -394,7 +394,7 @@ class DailymotionUserIE(DailymotionPlaylistIE): class DailymotionCloudIE(DailymotionBaseInfoExtractor): - _VALID_URL_PREFIX = r'http://api\.dmcloud\.net/(?:player/)?embed/' + _VALID_URL_PREFIX = r'https?://api\.dmcloud\.net/(?:player/)?embed/' _VALID_URL = r'%s[^/]+/(?P<id>[^/?]+)' % _VALID_URL_PREFIX _VALID_EMBED_URL = r'%s[^/]+/[^\'"]+' % _VALID_URL_PREFIX |