youtube-dl

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

commit a5f67895d32f2e152a0e59d0b25326536c6ad6c3
parent 15e4b6b758daadab14ad520c55713a8b35a3db7e
Author: Remita Amine <remitamine@gmail.com>
Date:   Sun,  3 Jul 2016 14:06:24 +0100

[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

Diffstat:
Myoutube_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 @@ -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':