1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-03-13 03:27:15 +08:00

[ThisOldHouse] Fetch VideoId from updated JSON data

This commit is contained in:
Parmjit Virk 2017-07-01 21:09:57 -05:00
parent 02d61a65e2
commit 0894b2937d

View File

@ -31,5 +31,5 @@ class ThisOldHouseIE(InfoExtractor):
drupal_settings = self._parse_json(self._search_regex(
r'jQuery\.extend\(Drupal\.settings\s*,\s*({.+?})\);',
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)