mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[bbc] Improve data-playable regex
This commit is contained in:
parent
c936d8cc7b
commit
b1ec70e4a9
@ -739,7 +739,8 @@ def _real_extract(self, url):
|
||||
# http://www.bbc.com/news/world-us-canada-34473351)
|
||||
data_playable = self._parse_json(
|
||||
unescapeHTML(self._search_regex(
|
||||
r'data-playable="({.+?})"', webpage, 'data playable', default='{}')),
|
||||
r'data-playable=(["\'])(?P<json>{.+?})\1', webpage,
|
||||
'data playable', default='{}', group='json')),
|
||||
programme_id, fatal=False)
|
||||
if data_playable:
|
||||
# data-playable has video vpid in settings.playlistObject.items (e.g.
|
||||
|
Loading…
Reference in New Issue
Block a user