X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;ds=sidebyside;f=youtube_dl%2Fextractor%2Fstreamcloud.py;h=712359885fde90fa3032aeff1b2cb74afb761f35;hb=d6712378e73951bede475569c887a1ac73f660a9;hp=c1178f26de0b961ad68eb6d1ddb89550746f4dd7;hpb=b703ab4d7f39ea7e9a88c971d55fdcc1b468ba26;p=youtube-dl diff --git a/youtube_dl/extractor/streamcloud.py b/youtube_dl/extractor/streamcloud.py index c1178f26d..712359885 100644 --- a/youtube_dl/extractor/streamcloud.py +++ b/youtube_dl/extractor/streamcloud.py @@ -2,12 +2,11 @@ from __future__ import unicode_literals import re -import time from .common import InfoExtractor from ..utils import ( - compat_urllib_parse, - compat_urllib_request, + sanitized_Request, + urlencode_postdata, ) @@ -38,14 +37,13 @@ class StreamcloudIE(InfoExtractor): (?:id="[^"]+"\s+)? value="([^"]*)" ''', orig_webpage) - post = compat_urllib_parse.urlencode(fields) + post = urlencode_postdata(fields) - self.to_screen('%s: Waiting for timeout' % video_id) - time.sleep(12) + self._sleep(12, video_id) headers = { b'Content-Type': b'application/x-www-form-urlencoded', } - req = compat_urllib_request.Request(url, post, headers) + req = sanitized_Request(url, post, headers) webpage = self._download_webpage( req, video_id, note='Downloading video page ...')