youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit f9c48d895b5600c82e9b55f703e68b060f25de07
parent c99d6890cb46626870474e5c1092d9772096c4b6
Author: Sergey M․ <dstftw@gmail.com>
Date:   Wed, 26 Jul 2017 23:12:43 +0700

[cloudy] Fix extraction (closes #13737)

Diffstat:
Myoutube_dl/extractor/cloudy.py | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git 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]