You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

100 lines
3.9 KiB

  1. from __future__ import unicode_literals
  2. import re
  3. from .common import InfoExtractor
  4. from ..utils import (
  5. int_or_none,
  6. parse_duration,
  7. )
  8. class CNNIE(InfoExtractor):
  9. _VALID_URL = r'''(?x)https?://((edition|www)\.)?cnn\.com/video/(data/.+?|\?)/
  10. (?P<path>.+?/(?P<title>[^/]+?)(?:\.cnn|(?=&)))'''
  11. _TESTS = [{
  12. 'url': 'http://edition.cnn.com/video/?/video/sports/2013/06/09/nadal-1-on-1.cnn',
  13. 'file': 'sports_2013_06_09_nadal-1-on-1.cnn.mp4',
  14. 'md5': '3e6121ea48df7e2259fe73a0628605c4',
  15. 'info_dict': {
  16. 'title': 'Nadal wins 8th French Open title',
  17. 'description': 'World Sport\'s Amanda Davies chats with 2013 French Open champion Rafael Nadal.',
  18. 'duration': 135,
  19. 'upload_date': '20130609',
  20. },
  21. },
  22. {
  23. "url": "http://edition.cnn.com/video/?/video/us/2013/08/21/sot-student-gives-epic-speech.georgia-institute-of-technology&utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+rss%2Fcnn_topstories+%28RSS%3A+Top+Stories%29",
  24. "file": "us_2013_08_21_sot-student-gives-epic-speech.georgia-institute-of-technology.mp4",
  25. "md5": "b5cc60c60a3477d185af8f19a2a26f4e",
  26. "info_dict": {
  27. "title": "Student's epic speech stuns new freshmen",
  28. "description": "A Georgia Tech student welcomes the incoming freshmen with an epic speech backed by music from \"2001: A Space Odyssey.\"",
  29. "upload_date": "20130821",
  30. }
  31. }]
  32. def _real_extract(self, url):
  33. mobj = re.match(self._VALID_URL, url)
  34. path = mobj.group('path')
  35. page_title = mobj.group('title')
  36. info_url = 'http://cnn.com/video/data/3.0/%s/index.xml' % path
  37. info = self._download_xml(info_url, page_title)
  38. formats = []
  39. rex = re.compile(r'''(?x)
  40. (?P<width>[0-9]+)x(?P<height>[0-9]+)
  41. (?:_(?P<bitrate>[0-9]+)k)?
  42. ''')
  43. for f in info.findall('files/file'):
  44. video_url = 'http://ht.cdn.turner.com/cnn/big%s' % (f.text.strip())
  45. fdct = {
  46. 'format_id': f.attrib['bitrate'],
  47. 'url': video_url,
  48. }
  49. mf = rex.match(f.attrib['bitrate'])
  50. if mf:
  51. fdct['width'] = int(mf.group('width'))
  52. fdct['height'] = int(mf.group('height'))
  53. fdct['tbr'] = int_or_none(mf.group('bitrate'))
  54. else:
  55. mf = rex.search(f.text)
  56. if mf:
  57. fdct['width'] = int(mf.group('width'))
  58. fdct['height'] = int(mf.group('height'))
  59. fdct['tbr'] = int_or_none(mf.group('bitrate'))
  60. else:
  61. mi = re.match(r'ios_(audio|[0-9]+)$', f.attrib['bitrate'])
  62. if mi:
  63. if mi.group(1) == 'audio':
  64. fdct['vcodec'] = 'none'
  65. fdct['ext'] = 'm4a'
  66. else:
  67. fdct['tbr'] = int(mi.group(1))
  68. formats.append(fdct)
  69. self._sort_formats(formats)
  70. thumbnails = sorted([((int(t.attrib['height']),int(t.attrib['width'])), t.text) for t in info.findall('images/image')])
  71. thumbs_dict = [{'resolution': res, 'url': t_url} for (res, t_url) in thumbnails]
  72. metas_el = info.find('metas')
  73. upload_date = (
  74. metas_el.attrib.get('version') if metas_el is not None else None)
  75. duration_el = info.find('length')
  76. duration = parse_duration(duration_el.text)
  77. return {
  78. 'id': info.attrib['id'],
  79. 'title': info.find('headline').text,
  80. 'formats': formats,
  81. 'thumbnail': thumbnails[-1][1],
  82. 'thumbnails': thumbs_dict,
  83. 'description': info.find('description').text,
  84. 'duration': duration,
  85. 'upload_date': upload_date,
  86. }