Browse Source

[extractor/common] Allow passing more parameters to _search_json_ld

totalwebcasting
Yen Chi Hsuan 9 years ago
parent
commit
0b26ba3fc8
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      youtube_dl/extractor/common.py

+ 3
- 3
youtube_dl/extractor/common.py View File

@ -763,13 +763,13 @@ class InfoExtractor(object):
return self._html_search_meta('twitter:player', html,
'twitter card player')
def _search_json_ld(self, html, video_id, fatal=True):
def _search_json_ld(self, html, video_id, **kwargs):
json_ld = self._search_regex(
r'(?s)<script[^>]+type=(["\'])application/ld\+json\1[^>]*>(?P<json_ld>.+?)</script>',
html, 'JSON-LD', fatal=fatal, group='json_ld')
html, 'JSON-LD', group='json_ld', **kwargs)
if not json_ld:
return {}
return self._json_ld(json_ld, video_id, fatal=fatal)
return self._json_ld(json_ld, video_id, fatal=kwargs.get('fatal', True))
def _json_ld(self, json_ld, video_id, fatal=True):
if isinstance(json_ld, compat_str):


Loading…
Cancel
Save