youtube-dl

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

commit 289a16b4f3c67faa230d1b05b48f0c224b3472d8
parent 7935926baadaad1bcf5c45b1da0f3d2d8a173ce9
Author: Sergey M․ <dstftw@gmail.com>
Date:   Wed, 27 Jul 2016 23:28:01 +0700

[shared] Respect redirect URL (Closes #10170)

Diffstat:
Myoutube_dl/extractor/shared.py | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/youtube_dl/extractor/shared.py b/youtube_dl/extractor/shared.py @@ -37,15 +37,17 @@ class SharedIE(InfoExtractor): def _real_extract(self, url): video_id = self._match_id(url) - webpage = self._download_webpage(url, video_id) + + webpage, urlh = self._download_webpage_handle(url, video_id) if '>File does not exist<' in webpage: raise ExtractorError( 'Video %s does not exist' % video_id, expected=True) download_form = self._hidden_inputs(webpage) + request = sanitized_Request( - url, urlencode_postdata(download_form)) + urlh.geturl(), urlencode_postdata(download_form)) request.add_header('Content-Type', 'application/x-www-form-urlencoded') video_page = self._download_webpage(