about summary refs log tree commit diff
path: root/youtube_dl/extractor/howcast.py
diff options
context:
space:
mode:
authorremitamine <remitamine@gmail.com>2016-05-24 11:24:29 +0100
committerremitamine <remitamine@gmail.com>2016-05-24 11:24:29 +0100
commit277c7465f58e0ac50de0dd9ebc2083f6142e9a94 (patch)
tree887ca3330f6f548293cd570fd793a80528f9c3e4 /youtube_dl/extractor/howcast.py
parenta4760d204fe4cd7592bdfc91cbf550eb985374ac (diff)
downloadyoutube-dl-277c7465f58e0ac50de0dd9ebc2083f6142e9a94.tar.gz
youtube-dl-277c7465f58e0ac50de0dd9ebc2083f6142e9a94.tar.xz
youtube-dl-277c7465f58e0ac50de0dd9ebc2083f6142e9a94.zip
[ooyala] check manifest ext with determine_ext and update tests for related extractors
Diffstat (limited to 'youtube_dl/extractor/howcast.py')
-rw-r--r--youtube_dl/extractor/howcast.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/youtube_dl/extractor/howcast.py b/youtube_dl/extractor/howcast.py
index e8f51e545..92caeb8f9 100644
--- a/youtube_dl/extractor/howcast.py
+++ b/youtube_dl/extractor/howcast.py
@@ -8,7 +8,7 @@ class HowcastIE(InfoExtractor):
     _VALID_URL = r'https?://(?:www\.)?howcast\.com/videos/(?P<id>\d+)'
     _TEST = {
         'url': 'http://www.howcast.com/videos/390161-How-to-Tie-a-Square-Knot-Properly',
-        'md5': '8b743df908c42f60cf6496586c7f12c3',
+        'md5': '7d45932269a288149483144f01b99789',
         'info_dict': {
             'id': '390161',
             'ext': 'mp4',
@@ -18,10 +18,7 @@ class HowcastIE(InfoExtractor):
             'upload_date': '20100609',
             'duration': 56.823,
         },
-        'params': {
-            # m3u8 download
-            'skip_download': True,
-        },
+        'add_ie': ['Ooyala'],
     }
 
     def _real_extract(self, url):