[cbsinteractive] fix data extraction(closes #15451)
This commit is contained in:
parent
b9d52fb2ca
commit
d2a422f548
1 changed files with 2 additions and 2 deletions
|
@ -75,10 +75,10 @@ class CBSInteractiveIE(CBSIE):
|
|||
webpage = self._download_webpage(url, display_id)
|
||||
|
||||
data_json = self._html_search_regex(
|
||||
r"data-(?:cnet|zdnet)-video(?:-uvp(?:js)?)?-options='([^']+)'",
|
||||
r"data(?:-(?:cnet|zdnet))?-video(?:-(?:uvp(?:js)?|player))?-options='([^']+)'",
|
||||
webpage, 'data json')
|
||||
data = self._parse_json(data_json, display_id)
|
||||
vdata = data.get('video') or data['videos'][0]
|
||||
vdata = data.get('video') or (data.get('videos') or data.get('playlist'))[0]
|
||||
|
||||
video_id = vdata['mpxRefId']
|
||||
|
||||
|
|
Loading…
Reference in a new issue