]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/ted.py
4 from .subtitles
import SubtitlesInfoExtractor
11 class TEDIE(SubtitlesInfoExtractor
):
12 _VALID_URL
=r
'''http://www\.ted\.com/
14 ((?P<type_playlist>playlists)/(?P<playlist_id>\d+)) # We have a playlist
16 ((?P<type_talk>talks)) # We have a simple talk
18 (/lang/(.*?))? # The url may contain the language
19 /(?P<name>\w+) # Here goes the name and then ".html"
22 u
'url': u
'http://www.ted.com/talks/dan_dennett_on_our_consciousness.html',
24 u
'md5': u
'2d76ee1576672e0bd8f187513267adf6',
26 u
"description": u
"md5:c6fa72e6eedbd938c9caf6b2702f5922",
27 u
"title": u
"Dan Dennett: The illusion of consciousness"
32 def suitable(cls
, url
):
33 """Receives a URL and returns True if suitable for this IE."""
34 return re
.match(cls
._VALID
_URL
, url
, re
.VERBOSE
) is not None
36 def _real_extract(self
, url
):
37 m
=re
.match(self
._VALID
_URL
, url
, re
.VERBOSE
)
38 if m
.group('type_talk'):
39 return self
._talk
_info
(url
)
41 playlist_id
=m
.group('playlist_id')
43 self
.to_screen(u
'Getting info of playlist %s: "%s"' % (playlist_id
,name
))
44 return [self
._playlist
_videos
_info
(url
,name
,playlist_id
)]
46 def _playlist_videos_info(self
,url
,name
,playlist_id
=0):
47 '''Returns the videos of the playlist'''
49 <li\ id="talk_(\d+)"([.\s]*?)data-id="(?P<video_id>\d+)"
50 ([.\s]*?)data-playlist_item_id="(\d+)"
51 ([.\s]*?)data-mediaslug="(?P<mediaSlug>.+?)"
53 video_name_RE
=r
'<p\ class="talk-title"><a href="(?P<talk_url>/talks/(.+).html)">(?P<fullname>.+?)</a></p>'
54 webpage
=self
._download
_webpage
(url
, playlist_id
, 'Downloading playlist webpage')
55 m_videos
=re
.finditer(video_RE
,webpage
,re
.VERBOSE
)
56 m_names
=re
.finditer(video_name_RE
,webpage
)
58 playlist_title
= self
._html
_search
_regex
(r
'div class="headline">\s*?<h1>\s*?<span>(.*?)</span>',
59 webpage
, 'playlist title')
62 for m_video
, m_name
in zip(m_videos
,m_names
):
63 talk_url
='http://www.ted.com%s' % m_name
.group('talk_url')
64 playlist_entries
.append(self
.url_result(talk_url
, 'TED'))
65 return self
.playlist_result(playlist_entries
, playlist_id
= playlist_id
, playlist_title
= playlist_title
)
67 def _talk_info(self
, url
, video_id
=0):
68 """Return the video for the talk in the url"""
69 m
= re
.match(self
._VALID
_URL
, url
,re
.VERBOSE
)
70 video_name
= m
.group('name')
71 webpage
= self
._download
_webpage
(url
, video_id
, 'Downloading \"%s\" page' % video_name
)
72 self
.report_extraction(video_name
)
73 # If the url includes the language we get the title translated
74 title
= self
._html
_search
_regex
(r
'<span .*?id="altHeadline".+?>(?P<title>.*)</span>',
76 json_data
= self
._search
_regex
(r
'<script.*?>var talkDetails = ({.*?})</script>',
78 info
= json
.loads(json_data
)
79 desc
= self
._html
_search
_regex
(r
'<div class="talk-intro">.*?<p.*?>(.*?)</p>',
80 webpage
, 'description', flags
= re
.DOTALL
)
82 thumbnail
= self
._search
_regex
(r
'</span>[\s.]*</div>[\s.]*<img src="(.*?)"',
86 'url': stream
['file'],
87 'format': stream
['id']
88 } for stream
in info
['htmlStreams']]
93 video_subtitles
= self
.extract_subtitles(video_id
, webpage
)
94 if self
._downloader
.params
.get('listsubtitles', False):
95 self
._list
_available
_subtitles
(video_id
, webpage
)
101 'thumbnail': thumbnail
,
103 'subtitles': video_subtitles
,
107 # TODO: Remove when #980 has been merged
108 info
.update(info
['formats'][-1])
112 def _get_available_subtitles(self
, video_id
, webpage
):
114 options
= self
._search
_regex
(r
'(?:<select name="subtitles_language_select" id="subtitles_language_select">)(.*?)(?:</select>)', webpage
, 'subtitles_language_select', flags
=re
.DOTALL
)
115 languages
= re
.findall(r
'(?:<option value=")(\S+)"', options
)
119 url
= 'http://www.ted.com/talks/subtitles/id/%s/lang/%s/format/srt' % (video_id
, l
)
120 sub_lang_list
[l
] = url
122 except RegexNotFoundError
as err
:
123 self
._downloader
.report_warning(u
'video doesn\'t have subtitles')