[youtube] fix extraction for embed restricted live streams(fixes #16433)
[youtube-dl] / youtube_dl / extractor / cnbc.py
index 593e459aa1eeac283f82a239dfcc329597c51185..d354d9f9584426658e468452cb54d3eaa8e3478a 100644 (file)
@@ -9,12 +9,19 @@ class CNBCIE(InfoExtractor):
     _VALID_URL = r'https?://video\.cnbc\.com/gallery/\?video=(?P<id>[0-9]+)'
     _TEST = {
         'url': 'http://video.cnbc.com/gallery/?video=3000503714',
-        'md5': '',
         'info_dict': {
             'id': '3000503714',
             'ext': 'mp4',
-            'title': 'Video title goes here',
-        }
+            'title': 'Fighting zombies is big business',
+            'description': 'md5:0c100d8e1a7947bd2feec9a5550e519e',
+            'timestamp': 1459332000,
+            'upload_date': '20160330',
+            'uploader': 'NBCU-CNBC',
+        },
+        'params': {
+            # m3u8 download
+            'skip_download': True,
+        },
     }
 
     def _real_extract(self, url):