diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-07-10 21:58:49 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-07-10 21:58:49 +0600 |
commit | 1c0163a5cc1d6b8fa5c7b4ee39b28e6e47c8981c (patch) | |
tree | 50e37fd02eb259c32cf7216c63abbdaba5cc5897 /youtube_dl | |
parent | 8fa7e5817a37756e4135fcb9daba47fc543be36a (diff) |
[gorillavid] Use `_form_hidden_inputs`
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/gorillavid.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/youtube_dl/extractor/gorillavid.py b/youtube_dl/extractor/gorillavid.py index 6147596e4..aabf07a20 100644 --- a/youtube_dl/extractor/gorillavid.py +++ b/youtube_dl/extractor/gorillavid.py @@ -78,12 +78,7 @@ class GorillaVidIE(InfoExtractor): if re.search(self._FILE_NOT_FOUND_REGEX, webpage) is not None: raise ExtractorError('Video %s does not exist' % video_id, expected=True) - fields = dict(re.findall(r'''(?x)<input\s+ - type="hidden"\s+ - name="([^"]+)"\s+ - (?:id="[^"]+"\s+)? - value="([^"]*)" - ''', webpage)) + fields = self._form_hidden_inputs(webpage) if fields['op'] == 'download1': countdown = int_or_none(self._search_regex( |