RBMARadioIE: fix the extraction of the JSON data

This commit is contained in:
Jaime Marquínez Ferrándiz 2013-06-20 14:37:43 +02:00
parent 587c68b2cd
commit 038a3a1a61
1 changed files with 2 additions and 2 deletions

View File

@ -3488,8 +3488,8 @@ class RBMARadioIE(InfoExtractor):
webpage = self._download_webpage(url, video_id)
json_data = self._search_regex(r'<script>window.gon = {.*?};gon\.show=(.+?);</script>',
webpage, u'json data')
json_data = self._search_regex(r'window\.gon.*?gon\.show=(.+?);$',
webpage, u'json data', flags=re.MULTILINE)
try:
data = json.loads(json_data)