diff options
author | remitamine <remitamine@gmail.com> | 2016-03-30 23:18:31 +0100 |
---|---|---|
committer | remitamine <remitamine@gmail.com> | 2016-03-30 23:18:31 +0100 |
commit | c02ec7d4300d3e2607f48fe73011fd8caa38f90c (patch) | |
tree | 20ee89a8edbdc2bb0ed3d39e4f22c9078f468b39 /youtube_dl/extractor/cnbc.py | |
parent | 6b820a2376a953657578f9a477ff7768d3633512 (diff) |
[cnbc] Add new extractor(closes #8012)
Diffstat (limited to 'youtube_dl/extractor/cnbc.py')
-rw-r--r-- | youtube_dl/extractor/cnbc.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/youtube_dl/extractor/cnbc.py b/youtube_dl/extractor/cnbc.py new file mode 100644 index 000000000..593e459aa --- /dev/null +++ b/youtube_dl/extractor/cnbc.py @@ -0,0 +1,29 @@ +# coding: utf-8 +from __future__ import unicode_literals + +from .common import InfoExtractor +from ..utils import smuggle_url + + +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', + } + } + + def _real_extract(self, url): + video_id = self._match_id(url) + return { + '_type': 'url_transparent', + 'ie_key': 'ThePlatform', + 'url': smuggle_url( + 'http://link.theplatform.com/s/gZWlPC/media/guid/2408950221/%s?mbr=true&manifest=m3u' % video_id, + {'force_smil_url': True}), + 'id': video_id, + } |