cbs.py 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. from __future__ import unicode_literals
  2. import re
  3. from .theplatform import ThePlatformFeedIE
  4. from ..utils import (
  5. int_or_none,
  6. find_xpath_attr,
  7. )
  8. class CBSBaseIE(ThePlatformFeedIE):
  9. def _parse_smil_subtitles(self, smil, namespace=None, subtitles_lang='en'):
  10. closed_caption_e = find_xpath_attr(smil, self._xpath_ns('.//param', namespace), 'name', 'ClosedCaptionURL')
  11. return {
  12. 'en': [{
  13. 'ext': 'ttml',
  14. 'url': closed_caption_e.attrib['value'],
  15. }]
  16. } if closed_caption_e is not None and closed_caption_e.attrib.get('value') else []
  17. def _extract_video_info(self, filter_query, video_id):
  18. return self._extract_feed_info(
  19. 'dJ5BDC', 'VxxJg8Ymh8sE', filter_query, video_id, lambda entry: {
  20. 'series': entry.get('cbs$SeriesTitle'),
  21. 'season_number': int_or_none(entry.get('cbs$SeasonNumber')),
  22. 'episode': entry.get('cbs$EpisodeTitle'),
  23. 'episode_number': int_or_none(entry.get('cbs$EpisodeNumber')),
  24. }, {
  25. 'StreamPack': {
  26. 'manifest': 'm3u',
  27. }
  28. })
  29. class CBSIE(CBSBaseIE):
  30. _VALID_URL = r'(?:cbs|https?://(?:www\.)?(?:cbs\.com/shows/[^/]+/video|colbertlateshow\.com/(?:video|podcasts))/)(?P<id>[\w-]+)'
  31. _TESTS = [{
  32. 'url': 'http://www.cbs.com/shows/garth-brooks/video/_u7W953k6la293J7EPTd9oHkSPs6Xn6_/connect-chat-feat-garth-brooks/',
  33. 'info_dict': {
  34. 'id': '_u7W953k6la293J7EPTd9oHkSPs6Xn6_',
  35. 'display_id': 'connect-chat-feat-garth-brooks',
  36. 'ext': 'mp4',
  37. 'title': 'Connect Chat feat. Garth Brooks',
  38. '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!',
  39. 'duration': 1495,
  40. 'timestamp': 1385585425,
  41. 'upload_date': '20131127',
  42. 'uploader': 'CBSI-NEW',
  43. },
  44. 'expected_warnings': ['Failed to download m3u8 information'],
  45. '_skip': 'Blocked outside the US',
  46. }, {
  47. 'url': 'http://colbertlateshow.com/video/8GmB0oY0McANFvp2aEffk9jZZZ2YyXxy/the-colbeard/',
  48. 'only_matching': True,
  49. }, {
  50. 'url': 'http://www.colbertlateshow.com/podcasts/dYSwjqPs_X1tvbV_P2FcPWRa_qT6akTC/in-the-bad-room-with-stephen/',
  51. 'only_matching': True,
  52. }]
  53. TP_RELEASE_URL_TEMPLATE = 'http://link.theplatform.com/s/dJ5BDC/%s?mbr=true'
  54. def _real_extract(self, url):
  55. content_id = self._match_id(url)
  56. return self._extract_video_info('byGuid=%s' % content_id, content_id)