mirror of
https://gitlab.com/ytdl-org/youtube-dl.git
synced 2025-11-07 21:57:06 -05:00
Fix 8tracks
This commit is contained in:
@@ -3913,7 +3913,7 @@ class EightTracksIE(InfoExtractor):
|
|||||||
|
|
||||||
webpage = self._download_webpage(url, playlist_id)
|
webpage = self._download_webpage(url, playlist_id)
|
||||||
|
|
||||||
m = re.search(r"new TRAX.Mix\((.*?)\);\n*\s*TRAX.initSearchAutocomplete\('#search'\);", webpage, flags=re.DOTALL)
|
m = re.search(r"PAGE.mix = (.*?);\n", webpage, flags=re.DOTALL)
|
||||||
if not m:
|
if not m:
|
||||||
raise ExtractorError(u'Cannot find trax information')
|
raise ExtractorError(u'Cannot find trax information')
|
||||||
json_like = m.group(1)
|
json_like = m.group(1)
|
||||||
|
|||||||
Reference in New Issue
Block a user