mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
RBMARadioIE: fix the extraction of the JSON data
This commit is contained in:
parent
587c68b2cd
commit
038a3a1a61
@ -3488,8 +3488,8 @@ def _real_extract(self, url):
|
||||
|
||||
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)
|
||||
|
Loading…
Reference in New Issue
Block a user