diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-07-26 23:12:43 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-07-26 23:12:43 +0700 |
commit | f9c48d895b5600c82e9b55f703e68b060f25de07 (patch) | |
tree | 5d3ccbb5c791785a7fa608743a1178d11968c893 /youtube_dl/extractor/cloudy.py | |
parent | c99d6890cb46626870474e5c1092d9772096c4b6 (diff) |
[cloudy] Fix extraction (closes #13737)
Diffstat (limited to 'youtube_dl/extractor/cloudy.py')
-rw-r--r-- | youtube_dl/extractor/cloudy.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/youtube_dl/extractor/cloudy.py b/youtube_dl/extractor/cloudy.py index 9bc8dbea4..85ca20ecc 100644 --- a/youtube_dl/extractor/cloudy.py +++ b/youtube_dl/extractor/cloudy.py @@ -30,7 +30,11 @@ class CloudyIE(InfoExtractor): video_id = self._match_id(url) webpage = self._download_webpage( - 'http://www.cloudy.ec/embed.php?id=%s' % video_id, video_id) + 'https://www.cloudy.ec/embed.php', video_id, query={ + 'id': video_id, + 'playerPage': 1, + 'autoplay': 1, + }) info = self._parse_html5_media_entries(url, webpage, video_id)[0] |