Browse Source

[extractor/common] Add method for extracting form hidden input fields as dict

totalwebcasting
Sergey M․ 10 years ago
parent
commit
27713812a0
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      youtube_dl/extractor/common.py

+ 6
- 0
youtube_dl/extractor/common.py View File

@ -705,6 +705,12 @@ class InfoExtractor(object):
return self._html_search_meta('twitter:player', html, return self._html_search_meta('twitter:player', html,
'twitter card player') 'twitter card player')
@staticmethod
def _form_hidden_inputs(html):
return dict(re.findall(
r'<input\s+type="hidden"\s+name="([^"]+)"\s+(?:id="[^"]+"\s+)?value="([^"]*)"',
html))
def _sort_formats(self, formats, field_preference=None): def _sort_formats(self, formats, field_preference=None):
if not formats: if not formats:
raise ExtractorError('No video formats found') raise ExtractorError('No video formats found')


Loading…
Cancel
Save