diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-01-31 03:21:33 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2016-01-31 04:58:10 +0800 |
commit | 60ad3eb9706861d4182ab44ee19d64350ca2e36e (patch) | |
tree | b02fbb190727b133a00b6a81be6af07382f85771 | |
parent | a7685b3a6b02be62ebd53e2978ab43b1cde3ec4b (diff) |
[viidea] Skip download for the test case requiring ffmpeg
-rw-r--r-- | youtube_dl/extractor/viidea.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/youtube_dl/extractor/viidea.py b/youtube_dl/extractor/viidea.py index 525e303d4..315984bf9 100644 --- a/youtube_dl/extractor/viidea.py +++ b/youtube_dl/extractor/viidea.py @@ -45,6 +45,10 @@ class ViideaIE(InfoExtractor): 'upload_date': '20130627', 'duration': 565, }, + 'params': { + # m3u8 download + 'skip_download': True, + }, }, { # video with invalid direct format links (HTTP 403) 'url': 'http://videolectures.net/russir2010_filippova_nlp/', |