From a5f67895d32f2e152a0e59d0b25326536c6ad6c3 Mon Sep 17 00:00:00 2001 From: Remita Amine Date: Sun, 3 Jul 2016 14:06:24 +0100 Subject: [PATCH] [nationalgeographic] restore http formats there was a misunderstanding about the reason of 403 response the problem happen only when the user use aria2c as a downloader https://github.com/rg3/youtube-dl/commit/a1f6f5c768a506674928530990b7f95c605eac2c#commitcomment-18107559 --- youtube_dl/extractor/nationalgeographic.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/youtube_dl/extractor/nationalgeographic.py b/youtube_dl/extractor/nationalgeographic.py index 6eabd2278..e717abb9f 100644 --- a/youtube_dl/extractor/nationalgeographic.py +++ b/youtube_dl/extractor/nationalgeographic.py @@ -79,10 +79,6 @@ class NationalGeographicChannelIE(ThePlatformIE): 'upload_date': '20160322', 'uploader': 'NEWA-FNG-NGTV', }, - 'params': { - # m3u8 download - 'skip_download': True, - }, 'add_ie': ['ThePlatform'], }, { @@ -97,10 +93,6 @@ class NationalGeographicChannelIE(ThePlatformIE): 'upload_date': '20160330', 'uploader': 'NEWA-FNG-NGTV', }, - 'params': { - # m3u8 download - 'skip_download': True, - }, 'add_ie': ['ThePlatform'], }, ] @@ -113,7 +105,7 @@ class NationalGeographicChannelIE(ThePlatformIE): webpage, 'release url') query = { 'mbr': 'true', - 'manifest': 'm3u', + 'switch': 'http', } is_auth = self._search_regex(r'video_is_auth\s*=\s*"([^"]+)"', webpage, 'is auth', fatal=False) if is_auth == 'auth': -- 2.30.2