youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 2349255abdf822e0bb9508d510db926cae777f8c
parent e452345fc5cee5e79d2cad6be575da563987a4ff
Author: Remita Amine <remitamine@gmail.com>
Date:   Mon,  4 Nov 2019 15:51:44 +0100

[jamendo] restore track url modification

Diffstat:
Myoutube_dl/extractor/jamendo.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/jamendo.py b/youtube_dl/extractor/jamendo.py @@ -44,7 +44,8 @@ class JamendoIE(InfoExtractor): def _real_extract(self, url): track_id, display_id = self._VALID_URL_RE.match(url).groups() - webpage = self._download_webpage(url, track_id) + webpage = self._download_webpage( + 'https://www.jamendo.com/track/' + track_id, track_id) models = self._parse_json(self._html_search_regex( r"data-bundled-models='([^']+)", webpage, 'bundled models'), track_id)