[vrtnu] Use redirect URL for building video JSON URL (closes #15767, closes #15769)
authorSergey M․ <dstftw@gmail.com>
Mon, 5 Mar 2018 15:57:19 +0000 (22:57 +0700)
committerSergey M․ <dstftw@gmail.com>
Mon, 5 Mar 2018 15:57:19 +0000 (22:57 +0700)
youtube_dl/extractor/canvas.py

index 3faa76076318813d8b16f005f9a87ce5df986034..8ac62c1a680ccb0ab8a8c038bf0c7270c510d3e6 100644 (file)
@@ -246,7 +246,7 @@ class VrtNUIE(GigyaBaseIE):
     def _real_extract(self, url):
         display_id = self._match_id(url)
 
-        webpage = self._download_webpage(url, display_id)
+        webpage, urlh = self._download_webpage_handle(url, display_id)
 
         title = self._html_search_regex(
             r'(?ms)<h1 class="content__heading">(.+?)</h1>',
@@ -276,7 +276,7 @@ class VrtNUIE(GigyaBaseIE):
             webpage, 'release_date', default=None))
 
         # If there's a ? or a # in the URL, remove them and everything after
-        clean_url = url.split('?')[0].split('#')[0].strip('/')
+        clean_url = urlh.geturl().split('?')[0].split('#')[0].strip('/')
         securevideo_url = clean_url + '.mssecurevideo.json'
 
         try: