]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/cbs.py
[dotsub] Replace test (Closes #10386)
[yt-dlp.git] / youtube_dl / extractor / cbs.py
CommitLineData
e42a692f
PH
1from __future__ import unicode_literals
2
43518503 3from .theplatform import ThePlatformFeedIE
5c2266df 4from ..utils import (
63c55e9f 5 int_or_none,
63c55e9f 6 find_xpath_attr,
5c2266df 7)
fa3ae234
PH
8
9
43518503 10class CBSBaseIE(ThePlatformFeedIE):
3e0c3d14 11 def _parse_smil_subtitles(self, smil, namespace=None, subtitles_lang='en'):
12 closed_caption_e = find_xpath_attr(smil, self._xpath_ns('.//param', namespace), 'name', 'ClosedCaptionURL')
13 return {
14 'en': [{
15 'ext': 'ttml',
16 'url': closed_caption_e.attrib['value'],
17 }]
18 } if closed_caption_e is not None and closed_caption_e.attrib.get('value') else []
19
43518503
RA
20 def _extract_video_info(self, filter_query, video_id):
21 return self._extract_feed_info(
22 'dJ5BDC', 'VxxJg8Ymh8sE', filter_query, video_id, lambda entry: {
23 'series': entry.get('cbs$SeriesTitle'),
24 'season_number': int_or_none(entry.get('cbs$SeasonNumber')),
25 'episode': entry.get('cbs$EpisodeTitle'),
26 'episode_number': int_or_none(entry.get('cbs$EpisodeNumber')),
27 }, {
28 'StreamPack': {
29 'manifest': 'm3u',
30 }
31 })
32
3e0c3d14 33
34class CBSIE(CBSBaseIE):
81970792 35 _VALID_URL = r'(?:cbs:|https?://(?:www\.)?(?:cbs\.com/shows/[^/]+/video|colbertlateshow\.com/(?:video|podcasts))/)(?P<id>[\w-]+)'
fa3ae234 36
2871d489 37 _TESTS = [{
e42a692f
PH
38 'url': 'http://www.cbs.com/shows/garth-brooks/video/_u7W953k6la293J7EPTd9oHkSPs6Xn6_/connect-chat-feat-garth-brooks/',
39 'info_dict': {
63c55e9f 40 'id': '_u7W953k6la293J7EPTd9oHkSPs6Xn6_',
9d581f3d 41 'display_id': 'connect-chat-feat-garth-brooks',
63c55e9f 42 'ext': 'mp4',
e42a692f
PH
43 'title': 'Connect Chat feat. Garth Brooks',
44 'description': 'Connect with country music singer Garth Brooks, as he chats with fans on Wednesday November 27, 2013. Be sure to tune in to Garth Brooks: Live from Las Vegas, Friday November 29, at 9/8c on CBS!',
45 'duration': 1495,
79ba9140 46 'timestamp': 1385585425,
47 'upload_date': '20131127',
48 'uploader': 'CBSI-NEW',
fa3ae234 49 },
43518503 50 'expected_warnings': ['Failed to download m3u8 information'],
e42a692f 51 '_skip': 'Blocked outside the US',
9bf99891
S
52 }, {
53 'url': 'http://colbertlateshow.com/video/8GmB0oY0McANFvp2aEffk9jZZZ2YyXxy/the-colbeard/',
54 'only_matching': True,
55 }, {
9d581f3d 56 'url': 'http://www.colbertlateshow.com/podcasts/dYSwjqPs_X1tvbV_P2FcPWRa_qT6akTC/in-the-bad-room-with-stephen/',
9bf99891 57 'only_matching': True,
2871d489 58 }]
f74197a0 59 TP_RELEASE_URL_TEMPLATE = 'http://link.theplatform.com/s/dJ5BDC/%s?mbr=true'
63c55e9f 60
fa3ae234 61 def _real_extract(self, url):
43518503
RA
62 content_id = self._match_id(url)
63 return self._extract_video_info('byGuid=%s' % content_id, content_id)