Skip to content

Commit

Permalink
[cnbc] Simplify extraction (closes #14280, closes #17110)
Browse files Browse the repository at this point in the history
  • Loading branch information
dstftw authored and lkho committed Dec 24, 2018
1 parent 28c76be commit 512fdf6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 20 deletions.
29 changes: 10 additions & 19 deletions youtube_dl/extractor/cnbc.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@


from .common import InfoExtractor
from ..utils import (
js_to_json,
smuggle_url,
)
from ..utils import smuggle_url


class CNBCIE(InfoExtractor):
Expand Down Expand Up @@ -40,36 +37,30 @@ def _real_extract(self, url):
}


class CNBCNewIE(InfoExtractor):
IE_NAME = 'CNBC:new'
_VALID_URL = r'https?://(?:www)?\.cnbc\.com/video.*/(?P<id>[^.]+)'
class CNBCVideoIE(InfoExtractor):
_VALID_URL = r'https?://(?:www)?\.cnbc\.com/video/(?:[^/]+/)+(?P<id>[^./?#&]+)'
_TEST = {
'url': 'https://www.cnbc.com/video/2018/07/19/trump-i-dont-necessarily-agree-with-raising-rates.html',
'info_dict': {
'id': '7000031301',
'ext': 'mp4',
'title': 'Trump: I don\'t necessarily agree with raising rates',
'title': "Trump: I don't necessarily agree with raising rates",
'description': 'md5:878d8f0b4ebb5bb1dda3514b91b49de3',
'timestamp': 1531958400,
'upload_date': '20180719',
'uploader': 'NBCU-CNBC',
},
'params': {
# m3u8 download
'skip_download': True,
},
}

CNBC_URL_TEMPLATE = 'http://video.cnbc.com/gallery/?video=%s'

def _real_extract(self, url):
display_id = self._match_id(url)
webpage = self._download_webpage(url, display_id)
video_id = self._parse_json(
self._search_regex(
r'(?s).*<script[^>]*>.*?({.+?content_id.+?}).*?</script>',
webpage, display_id),
display_id, transform_source=js_to_json
)['content_id']

return self.url_result(self.CNBC_URL_TEMPLATE % video_id, 'CNBC')
video_id = self._search_regex(
r'content_id["\']\s*:\s*["\'](\d+)', webpage, display_id,
'video id')
return self.url_result(
'http://video.cnbc.com/gallery/?video=%s' % video_id,
CNBCIE.ie_key())
2 changes: 1 addition & 1 deletion youtube_dl/extractor/extractors.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@
from .cmt import CMTIE
from .cnbc import (
CNBCIE,
CNBCNewIE,
CNBCVideoIE,
)
from .cnn import (
CNNIE,
Expand Down

0 comments on commit 512fdf6

Please sign in to comment.