youtube-dl

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

commit 54b960f340ed5398136ef0206d17cafba2575678
parent a3ccd6bd11454b9760ef2c5f09f02f3afdb11af5
Author: Sergey M․ <dstftw@gmail.com>
Date:   Fri, 24 Mar 2017 00:45:24 +0700

[generic] Do not follow redirects to the same URL

Diffstat:
Myoutube_dl/extractor/generic.py | 13++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/youtube_dl/extractor/generic.py b/youtube_dl/extractor/generic.py @@ -2635,11 +2635,14 @@ class GenericIE(InfoExtractor): found = re.search(REDIRECT_REGEX, refresh_header) if found: new_url = compat_urlparse.urljoin(url, unescapeHTML(found.group(1))) - self.report_following_redirect(new_url) - return { - '_type': 'url', - 'url': new_url, - } + if new_url != url: + self.report_following_redirect(new_url) + return { + '_type': 'url', + 'url': new_url, + } + else: + found = None if not found: # twitter:player is a https URL to iframe player that may or may not