logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: 64436cb1a453d6f92a72ac4e28cde1fa03b00fc7
parent f1388739002a7fd1e8e9c41b642734786fc6c391
Author: Remita Amine <remitamine@gmail.com>
Date:   Sun,  3 Jul 2016 10:43:36 +0100

[nationalgeographic] skip download for national geographic channel tests(closes #9991)

Diffstat:

Myoutube_dl/extractor/nationalgeographic.py8++++++++
1 file changed, 8 insertions(+), 0 deletions(-)

diff --git a/youtube_dl/extractor/nationalgeographic.py b/youtube_dl/extractor/nationalgeographic.py @@ -79,6 +79,10 @@ class NationalGeographicChannelIE(ThePlatformIE): 'upload_date': '20160322', 'uploader': 'NEWA-FNG-NGTV', }, + 'params': { + # m3u8 download + 'skip_download': True, + }, 'add_ie': ['ThePlatform'], }, { @@ -93,6 +97,10 @@ class NationalGeographicChannelIE(ThePlatformIE): 'upload_date': '20160330', 'uploader': 'NEWA-FNG-NGTV', }, + 'params': { + # m3u8 download + 'skip_download': True, + }, 'add_ie': ['ThePlatform'], }, ]