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.

190 lines
7.1 KiB

11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
  1. from __future__ import unicode_literals
  2. import json
  3. import re
  4. from .subtitles import SubtitlesInfoExtractor
  5. from ..utils import (
  6. compat_str,
  7. )
  8. class TEDIE(SubtitlesInfoExtractor):
  9. _VALID_URL = r'''(?x)
  10. (?P<proto>https?://)
  11. (?P<type>www|embed)(?P<urlmain>\.ted\.com/
  12. (
  13. (?P<type_playlist>playlists(?:/\d+)?) # We have a playlist
  14. |
  15. ((?P<type_talk>talks)) # We have a simple talk
  16. |
  17. (?P<type_watch>watch)/[^/]+/[^/]+
  18. )
  19. (/lang/(.*?))? # The url may contain the language
  20. /(?P<name>[\w-]+) # Here goes the name and then ".html"
  21. .*)$
  22. '''
  23. _TESTS = [{
  24. 'url': 'http://www.ted.com/talks/dan_dennett_on_our_consciousness.html',
  25. 'md5': 'fc94ac279feebbce69f21c0c6ee82810',
  26. 'info_dict': {
  27. 'id': '102',
  28. 'ext': 'mp4',
  29. 'title': 'The illusion of consciousness',
  30. 'description': ('Philosopher Dan Dennett makes a compelling '
  31. 'argument that not only don\'t we understand our own '
  32. 'consciousness, but that half the time our brains are '
  33. 'actively fooling us.'),
  34. 'uploader': 'Dan Dennett',
  35. 'width': 854,
  36. }
  37. }, {
  38. 'url': 'http://www.ted.com/watch/ted-institute/ted-bcg/vishal-sikka-the-beauty-and-power-of-algorithms',
  39. 'md5': '226f4fb9c62380d11b7995efa4c87994',
  40. 'info_dict': {
  41. 'id': 'vishal-sikka-the-beauty-and-power-of-algorithms',
  42. 'ext': 'mp4',
  43. 'title': 'Vishal Sikka: The beauty and power of algorithms',
  44. 'thumbnail': 're:^https?://.+\.jpg',
  45. 'description': 'Adaptive, intelligent, and consistent, algorithms are emerging as the ultimate app for everything from matching consumers to products to assessing medical diagnoses. Vishal Sikka shares his appreciation for the algorithm, charting both its inherent beauty and its growing power.',
  46. }
  47. }, {
  48. 'url': 'http://www.ted.com/talks/gabby_giffords_and_mark_kelly_be_passionate_be_courageous_be_your_best',
  49. 'md5': '49144e345a899b8cb34d315f3b9cfeeb',
  50. 'info_dict': {
  51. 'id': '1972',
  52. 'ext': 'mp4',
  53. 'title': 'Be passionate. Be courageous. Be your best.',
  54. 'uploader': 'Gabby Giffords and Mark Kelly',
  55. 'description': 'md5:5174aed4d0f16021b704120360f72b92',
  56. },
  57. }]
  58. _NATIVE_FORMATS = {
  59. 'low': {'preference': 1, 'width': 320, 'height': 180},
  60. 'medium': {'preference': 2, 'width': 512, 'height': 288},
  61. 'high': {'preference': 3, 'width': 854, 'height': 480},
  62. }
  63. def _extract_info(self, webpage):
  64. info_json = self._search_regex(r'q\("\w+.init",({.+})\)</script>',
  65. webpage, 'info json')
  66. return json.loads(info_json)
  67. def _real_extract(self, url):
  68. m = re.match(self._VALID_URL, url, re.VERBOSE)
  69. if m.group('type') == 'embed':
  70. desktop_url = m.group('proto') + 'www' + m.group('urlmain')
  71. return self.url_result(desktop_url, 'TED')
  72. name = m.group('name')
  73. if m.group('type_talk'):
  74. return self._talk_info(url, name)
  75. elif m.group('type_watch'):
  76. return self._watch_info(url, name)
  77. else:
  78. return self._playlist_videos_info(url, name)
  79. def _playlist_videos_info(self, url, name):
  80. '''Returns the videos of the playlist'''
  81. webpage = self._download_webpage(url, name,
  82. 'Downloading playlist webpage')
  83. info = self._extract_info(webpage)
  84. playlist_info = info['playlist']
  85. playlist_entries = [
  86. self.url_result('http://www.ted.com/talks/' + talk['slug'], self.ie_key())
  87. for talk in info['talks']
  88. ]
  89. return self.playlist_result(
  90. playlist_entries,
  91. playlist_id=compat_str(playlist_info['id']),
  92. playlist_title=playlist_info['title'])
  93. def _talk_info(self, url, video_name):
  94. webpage = self._download_webpage(url, video_name)
  95. self.report_extraction(video_name)
  96. talk_info = self._extract_info(webpage)['talks'][0]
  97. formats = [{
  98. 'url': format_url,
  99. 'format_id': format_id,
  100. 'format': format_id,
  101. } for (format_id, format_url) in talk_info['nativeDownloads'].items() if format_url is not None]
  102. if formats:
  103. for f in formats:
  104. finfo = self._NATIVE_FORMATS.get(f['format_id'])
  105. if finfo:
  106. f.update(finfo)
  107. else:
  108. # Use rtmp downloads
  109. formats = [{
  110. 'format_id': f['name'],
  111. 'url': talk_info['streamer'],
  112. 'play_path': f['file'],
  113. 'ext': 'flv',
  114. 'width': f['width'],
  115. 'height': f['height'],
  116. 'tbr': f['bitrate'],
  117. } for f in talk_info['resources']['rtmp']]
  118. self._sort_formats(formats)
  119. video_id = compat_str(talk_info['id'])
  120. # subtitles
  121. video_subtitles = self.extract_subtitles(video_id, talk_info)
  122. if self._downloader.params.get('listsubtitles', False):
  123. self._list_available_subtitles(video_id, talk_info)
  124. return
  125. thumbnail = talk_info['thumb']
  126. if not thumbnail.startswith('http'):
  127. thumbnail = 'http://' + thumbnail
  128. return {
  129. 'id': video_id,
  130. 'title': talk_info['title'],
  131. 'uploader': talk_info['speaker'],
  132. 'thumbnail': thumbnail,
  133. 'description': self._og_search_description(webpage),
  134. 'subtitles': video_subtitles,
  135. 'formats': formats,
  136. }
  137. def _get_available_subtitles(self, video_id, talk_info):
  138. languages = [lang['languageCode'] for lang in talk_info.get('languages', [])]
  139. if languages:
  140. sub_lang_list = {}
  141. for l in languages:
  142. url = 'http://www.ted.com/talks/subtitles/id/%s/lang/%s/format/srt' % (video_id, l)
  143. sub_lang_list[l] = url
  144. return sub_lang_list
  145. else:
  146. self._downloader.report_warning('video doesn\'t have subtitles')
  147. return {}
  148. def _watch_info(self, url, name):
  149. webpage = self._download_webpage(url, name)
  150. config_json = self._html_search_regex(
  151. r"data-config='([^']+)", webpage, 'config')
  152. config = json.loads(config_json)
  153. video_url = config['video']['url']
  154. thumbnail = config.get('image', {}).get('url')
  155. title = self._html_search_regex(
  156. r"(?s)<h1(?:\s+class='[^']+')?>(.+?)</h1>", webpage, 'title')
  157. description = self._html_search_regex(
  158. [
  159. r'(?s)<h4 class="[^"]+" id="h3--about-this-talk">.*?</h4>(.*?)</div>',
  160. r'(?s)<p><strong>About this talk:</strong>\s+(.*?)</p>',
  161. ],
  162. webpage, 'description', fatal=False)
  163. return {
  164. 'id': name,
  165. 'url': video_url,
  166. 'title': title,
  167. 'thumbnail': thumbnail,
  168. 'description': description,
  169. }