From 00bcff6387742a69f4ebf97acc5d7da56fab8a87 Mon Sep 17 00:00:00 2001 From: ealgase Date: Fri, 30 Nov 2018 21:43:17 -0500 Subject: [PATCH] [narando] use already given URL for downloading webpage --- youtube_dl/extractor/narando.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/extractor/narando.py b/youtube_dl/extractor/narando.py index a6bb5f473..0a81fa851 100644 --- a/youtube_dl/extractor/narando.py +++ b/youtube_dl/extractor/narando.py @@ -19,7 +19,7 @@ class NarandoPlayerIE(InfoExtractor): def _real_extract(self, url): video_id = self._match_id(url) - webpage = self._download_webpage('https://narando.com/widget?r=' + video_id, video_id) + webpage = self._download_webpage(url, video_id) title = self._html_search_regex(r'(.+?)', webpage, 'title') download_url = self._html_search_regex(r'.
\s*([^?]*)', webpage, 'download_url') return {