1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-03 14:41:04 +02:00

[primesharetv] Use _form_hidden_inputs

This commit is contained in:
Sergey M․ 2015-07-10 21:56:41 +06:00
parent b8070dbbd7
commit 46f0f50016

View File

@ -31,12 +31,7 @@ def _real_extract(self, url):
if '>File not exist<' in webpage:
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)
headers = {
'Referer': url,