aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/cloudy.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2017-07-26 23:12:43 +0700
committerSergey M․ <dstftw@gmail.com>2017-07-26 23:12:43 +0700
commitf9c48d895b5600c82e9b55f703e68b060f25de07 (patch)
tree5d3ccbb5c791785a7fa608743a1178d11968c893 /youtube_dl/extractor/cloudy.py
parentc99d6890cb46626870474e5c1092d9772096c4b6 (diff)
downloadyoutube-dl-f9c48d895b5600c82e9b55f703e68b060f25de07.zip
youtube-dl-f9c48d895b5600c82e9b55f703e68b060f25de07.tar.gz
youtube-dl-f9c48d895b5600c82e9b55f703e68b060f25de07.tar.bz2
[cloudy] Fix extraction (closes #13737)
Diffstat (limited to 'youtube_dl/extractor/cloudy.py')
-rw-r--r--youtube_dl/extractor/cloudy.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/youtube_dl/extractor/cloudy.py b/youtube_dl/extractor/cloudy.py
index 9bc8dbe..85ca20e 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]