[cnet] Correct JSON capturing
This commit is contained in:
parent
88ce273da4
commit
e51880fd32
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ class CNETIE(InfoExtractor):
|
||||||
|
|
||||||
webpage = self._download_webpage(url, display_id)
|
webpage = self._download_webpage(url, display_id)
|
||||||
data_json = self._html_search_regex(
|
data_json = self._html_search_regex(
|
||||||
r"<div class=\"cnetVideoPlayer\" data-cnet-video-options='([^']+)'",
|
r"<div class=\"cnetVideoPlayer\"\s+.*?data-cnet-video-options='([^']+)'",
|
||||||
webpage, 'data json')
|
webpage, 'data json')
|
||||||
data = json.loads(data_json)
|
data = json.loads(data_json)
|
||||||
vdata = data['video']
|
vdata = data['video']
|
||||||
|
|
Loading…
Reference in a new issue