aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2016-01-16 20:45:36 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2016-01-16 20:45:36 +0800
commit0b26ba3fc8eee0bb047c5e78e6f1a8ba59fa9457 (patch)
treeed5a553d5d28ee3f8b56b8c5712d077a0d4f7f20
parent6be16ed24bba86c0bb22a3eca6640e727153f1fd (diff)
downloadyoutube-dl-0b26ba3fc8eee0bb047c5e78e6f1a8ba59fa9457.tar.xz
[extractor/common] Allow passing more parameters to _search_json_ld
-rw-r--r--youtube_dl/extractor/common.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py
index 92e2e4f43..8da70ae14 100644
--- a/youtube_dl/extractor/common.py
+++ b/youtube_dl/extractor/common.py
@@ -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):