]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/ted.py
Merge remote-tracking branch 'anovicecodemonkey/TEDIEimprovements'
[yt-dlp.git] / youtube_dl / extractor / ted.py
CommitLineData
f853f859
PH
1from __future__ import unicode_literals
2
9fd5ce0c
PH
3import json
4import re
5
a9a3876d 6from .subtitles import SubtitlesInfoExtractor
9fd5ce0c 7
4ed3e510 8from ..utils import (
ca1fee34 9 compat_str,
4ed3e510
IM
10)
11
f853f859 12
a9a3876d 13class TEDIE(SubtitlesInfoExtractor):
fc260231 14 _VALID_URL = r'''(?x)http://(?P<type>www|embed)\.ted\.com/
bacac173
JMF
15 (
16 (?P<type_playlist>playlists(?:/\d+)?) # We have a playlist
17 |
18 ((?P<type_talk>talks)) # We have a simple talk
19 )
20 (/lang/(.*?))? # The url may contain the language
21 /(?P<name>\w+) # Here goes the name and then ".html"
22 '''
6f5ac90c 23 _TEST = {
f853f859 24 'url': 'http://www.ted.com/talks/dan_dennett_on_our_consciousness.html',
26dca166 25 'md5': '4ea1dada91e4174b53dac2bb8ace429d',
f853f859 26 'info_dict': {
7b9965ea
JMF
27 'id': '102',
28 'ext': 'mp4',
652bee05 29 'title': 'The illusion of consciousness',
bacac173
JMF
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.'),
652bee05 34 'uploader': 'Dan Dennett',
6f5ac90c
PH
35 }
36 }
9fd5ce0c 37
652bee05
JMF
38 _FORMATS_PREFERENCE = {
39 'low': 1,
40 'medium': 2,
41 'high': 3,
42 }
9fd5ce0c 43
ca1fee34 44 def _extract_info(self, webpage):
bacac173
JMF
45 info_json = self._search_regex(r'q\("\w+.init",({.+})\)</script>',
46 webpage, 'info json')
ca1fee34
JMF
47 return json.loads(info_json)
48
9fd5ce0c 49 def _real_extract(self, url):
bacac173 50 m = re.match(self._VALID_URL, url, re.VERBOSE)
fc260231 51 if m.group('type') == 'embed': # if the _VALID_URL is an embed
52 desktop_url = re.sub("embed", "www", url)
53 return self.url_result(desktop_url, 'TED') # pass the desktop version to the extractor
bacac173 54 name = m.group('name')
9fd5ce0c 55 if m.group('type_talk'):
bacac173
JMF
56 return self._talk_info(url, name)
57 else:
ca1fee34 58 return self._playlist_videos_info(url, name)
9fd5ce0c 59
ca1fee34 60 def _playlist_videos_info(self, url, name):
9fd5ce0c 61 '''Returns the videos of the playlist'''
fc2ef392 62
ca1fee34
JMF
63 webpage = self._download_webpage(url, name,
64 'Downloading playlist webpage')
65 info = self._extract_info(webpage)
66 playlist_info = info['playlist']
9fd5ce0c 67
fc2ef392 68 playlist_entries = [
ca1fee34
JMF
69 self.url_result(u'http://www.ted.com/talks/' + talk['slug'], self.ie_key())
70 for talk in info['talks']
fc2ef392
PH
71 ]
72 return self.playlist_result(
ca1fee34
JMF
73 playlist_entries,
74 playlist_id=compat_str(playlist_info['id']),
75 playlist_title=playlist_info['title'])
9fd5ce0c 76
bacac173
JMF
77 def _talk_info(self, url, video_name):
78 webpage = self._download_webpage(url, video_name)
9fd5ce0c 79 self.report_extraction(video_name)
a9a3876d 80
ca1fee34 81 talk_info = self._extract_info(webpage)['talks'][0]
a9a3876d 82
652bee05
JMF
83 formats = [{
84 'ext': 'mp4',
85 'url': format_url,
86 'format_id': format_id,
87 'format': format_id,
88 'preference': self._FORMATS_PREFERENCE.get(format_id, -1),
89 } for (format_id, format_url) in talk_info['nativeDownloads'].items()]
90 self._sort_formats(formats)
91
7b9965ea 92 video_id = compat_str(talk_info['id'])
a9a3876d 93 # subtitles
652bee05 94 video_subtitles = self.extract_subtitles(video_id, talk_info)
a9a3876d 95 if self._downloader.params.get('listsubtitles', False):
652bee05 96 self._list_available_subtitles(video_id, talk_info)
a9a3876d
IM
97 return
98
b6c1cecc
JMF
99 thumbnail = talk_info['thumb']
100 if not thumbnail.startswith('http'):
101 thumbnail = 'http://' + thumbnail
463a9087 102 return {
a9a3876d 103 'id': video_id,
652bee05
JMF
104 'title': talk_info['title'],
105 'uploader': talk_info['speaker'],
b6c1cecc 106 'thumbnail': thumbnail,
652bee05 107 'description': self._og_search_description(webpage),
a9a3876d 108 'subtitles': video_subtitles,
0d8cb1cc
PH
109 'formats': formats,
110 }
111
652bee05
JMF
112 def _get_available_subtitles(self, video_id, talk_info):
113 languages = [lang['languageCode'] for lang in talk_info.get('languages', [])]
114 if languages:
115 sub_lang_list = {}
116 for l in languages:
117 url = 'http://www.ted.com/talks/subtitles/id/%s/lang/%s/format/srt' % (video_id, l)
118 sub_lang_list[l] = url
119 return sub_lang_list
120 else:
4ed3e510 121 self._downloader.report_warning(u'video doesn\'t have subtitles')
652bee05 122 return {}