X-Git-Url: https://git.rapsys.eu/youtubedl/blobdiff_plain/46113edab215c2211a604c06245c16d5d4e57dcf..935cfce0211ba23786d89634ccc4674834401f5b:/youtube_dl/extractor/promptfile.py diff --git a/youtube_dl/extractor/promptfile.py b/youtube_dl/extractor/promptfile.py index 7fcde08..f93bd19 100644 --- a/youtube_dl/extractor/promptfile.py +++ b/youtube_dl/extractor/promptfile.py @@ -5,10 +5,10 @@ import re from .common import InfoExtractor from ..utils import ( - ExtractorError, determine_ext, - compat_urllib_parse, - compat_urllib_request, + ExtractorError, + sanitized_Request, + urlencode_postdata, ) @@ -33,12 +33,9 @@ class PromptFileIE(InfoExtractor): raise ExtractorError('Video %s does not exist' % video_id, expected=True) - fields = dict(re.findall(r'''(?x)type="hidden"\s+ - name="(.+?)"\s+ - value="(.*?)" - ''', webpage)) - post = compat_urllib_parse.urlencode(fields) - req = compat_urllib_request.Request(url, post) + fields = self._hidden_inputs(webpage) + post = urlencode_postdata(fields) + req = sanitized_Request(url, post) req.add_header('Content-type', 'application/x-www-form-urlencoded') webpage = self._download_webpage( req, video_id, 'Downloading video page')