mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-11 23:39:29 +01:00
[thisoldhouse] Fix video id extraction (closes #13540)
This commit is contained in:
parent
02d61a65e2
commit
a3a6d01a96
@ -31,5 +31,5 @@ def _real_extract(self, url):
|
|||||||
drupal_settings = self._parse_json(self._search_regex(
|
drupal_settings = self._parse_json(self._search_regex(
|
||||||
r'jQuery\.extend\(Drupal\.settings\s*,\s*({.+?})\);',
|
r'jQuery\.extend\(Drupal\.settings\s*,\s*({.+?})\);',
|
||||||
webpage, 'drupal settings'), display_id)
|
webpage, 'drupal settings'), display_id)
|
||||||
video_id = drupal_settings['jwplatform']['video_id']
|
video_id = list(drupal_settings['comScore'])[0]
|
||||||
return self.url_result('jwplatform:' + video_id, 'JWPlatform', video_id)
|
return self.url_result('jwplatform:' + video_id, 'JWPlatform', video_id)
|
||||||
|
Loading…
Reference in New Issue
Block a user