[cloudy] Fix extraction (closes #13737)
This commit is contained in:
parent
c99d6890cb
commit
f9c48d895b
1 changed files with 5 additions and 1 deletions
|
@ -30,7 +30,11 @@ class CloudyIE(InfoExtractor):
|
||||||
video_id = self._match_id(url)
|
video_id = self._match_id(url)
|
||||||
|
|
||||||
webpage = self._download_webpage(
|
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]
|
info = self._parse_html5_media_entries(url, webpage, video_id)[0]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue