diff options
author | Remita Amine <remitamine@gmail.com> | 2016-07-03 10:43:36 +0100 |
---|---|---|
committer | Remita Amine <remitamine@gmail.com> | 2016-07-03 10:43:36 +0100 |
commit | 64436cb1a453d6f92a72ac4e28cde1fa03b00fc7 (patch) | |
tree | 7b07db1589654c8b9b8b784462bc29afa29ccb61 | |
parent | f1388739002a7fd1e8e9c41b642734786fc6c391 (diff) |
[nationalgeographic] skip download for national geographic channel tests(closes #9991)
-rw-r--r-- | youtube_dl/extractor/nationalgeographic.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/youtube_dl/extractor/nationalgeographic.py b/youtube_dl/extractor/nationalgeographic.py index ed76798aa..6eabd2278 100644 --- 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'], }, ] |