|
|
@ -78,12 +78,7 @@ class GorillaVidIE(InfoExtractor):
|
|
|
|
if re.search(self._FILE_NOT_FOUND_REGEX, webpage) is not None:
|
|
|
|
if re.search(self._FILE_NOT_FOUND_REGEX, webpage) is not None:
|
|
|
|
raise ExtractorError('Video %s does not exist' % video_id, expected=True)
|
|
|
|
raise ExtractorError('Video %s does not exist' % video_id, expected=True)
|
|
|
|
|
|
|
|
|
|
|
|
fields = dict(re.findall(r'''(?x)<input\s+
|
|
|
|
fields = self._form_hidden_inputs(webpage)
|
|
|
|
type="hidden"\s+
|
|
|
|
|
|
|
|
name="([^"]+)"\s+
|
|
|
|
|
|
|
|
(?:id="[^"]+"\s+)?
|
|
|
|
|
|
|
|
value="([^"]*)"
|
|
|
|
|
|
|
|
''', webpage))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if fields['op'] == 'download1':
|
|
|
|
if fields['op'] == 'download1':
|
|
|
|
countdown = int_or_none(self._search_regex(
|
|
|
|
countdown = int_or_none(self._search_regex(
|
|
|
|