1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-09-15 23:32:25 +02:00

Fix 8tracks

This commit is contained in:
Philipp Hagemeister 2013-02-18 19:11:32 +01:00
parent b17c974a88
commit 2a9983b78f

View File

@ -3913,7 +3913,7 @@ def _real_extract(self, url):
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:
raise ExtractorError(u'Cannot find trax information')
json_like = m.group(1)