1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-01 21:51:02 +02:00

[brightcove] Improve the 'experienceJSON' regex (#3081)

One of the strings may contain ';', we would get an invalid json string.
This commit is contained in:
Jaime Marquínez Ferrándiz 2014-06-15 11:08:24 +02:00
parent 36755d40b4
commit a013eba65f

View File

@ -187,7 +187,7 @@ def _get_video_info(self, video_id, query_str, query, referer=None):
webpage = self._download_webpage(req, video_id)
self.report_extraction(video_id)
info = self._search_regex(r'var experienceJSON = ({.*?});', webpage, 'json')
info = self._search_regex(r'var experienceJSON = ({.*});', webpage, 'json')
info = json.loads(info)['data']
video_info = info['programmedContent']['videoPlayer']['mediaDTO']
video_info['_youtubedl_adServerURL'] = info.get('adServerURL')