1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-21 12:39:33 +00:00

Try for timestamp, description from window.__INITIAL_DATA__ pages

This commit is contained in:
df 2021-04-18 01:46:40 +01:00 committed by dirkf
parent 92d73ef393
commit 6d4932f023

View file

@ -1205,7 +1205,10 @@ class BBCIE(BBCCoUkIE):
if name == 'media-experience':
parse_media(try_get(resp, lambda x: x['data']['initialItem']['mediaItem'], dict))
elif name == 'article':
for block in (try_get(resp, lambda x: x['data']['blocks'], list) or []):
for block in (try_get(resp,
(lambda x: x['data']['blocks'],
lambda x: x['data']['content']['model']['blocks'],),
list) or []):
if block.get('type') != 'media':
continue
parse_media(block.get('model'))