]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/ted.py
4 from .subtitles
import SubtitlesInfoExtractor
10 class TEDIE(SubtitlesInfoExtractor
):
11 _VALID_URL
=r
'''http://www\.ted\.com/
13 ((?P<type_playlist>playlists)/(?P<playlist_id>\d+)) # We have a playlist
15 ((?P<type_talk>talks)) # We have a simple talk
17 (/lang/(.*?))? # The url may contain the language
18 /(?P<name>\w+) # Here goes the name and then ".html"
21 u
'url': u
'http://www.ted.com/talks/dan_dennett_on_our_consciousness.html',
23 u
'md5': u
'2d76ee1576672e0bd8f187513267adf6',
25 u
"description": u
"md5:c6fa72e6eedbd938c9caf6b2702f5922",
26 u
"title": u
"Dan Dennett: The illusion of consciousness"
31 def suitable(cls
, url
):
32 """Receives a URL and returns True if suitable for this IE."""
33 return re
.match(cls
._VALID
_URL
, url
, re
.VERBOSE
) is not None
35 def _real_extract(self
, url
):
36 m
=re
.match(self
._VALID
_URL
, url
, re
.VERBOSE
)
37 if m
.group('type_talk'):
38 return self
._talk
_info
(url
)
40 playlist_id
=m
.group('playlist_id')
42 self
.to_screen(u
'Getting info of playlist %s: "%s"' % (playlist_id
,name
))
43 return [self
._playlist
_videos
_info
(url
,name
,playlist_id
)]
46 def _playlist_videos_info(self
, url
, name
, playlist_id
):
47 '''Returns the videos of the playlist'''
49 webpage
= self
._download
_webpage
(
50 url
, playlist_id
, u
'Downloading playlist webpage')
51 matches
= re
.finditer(
52 r
'<p\s+class="talk-title[^"]*"><a\s+href="(?P<talk_url>/talks/[^"]+\.html)">[^<]*</a></p>',
55 playlist_title
= self
._html
_search
_regex
(r
'div class="headline">\s*?<h1>\s*?<span>(.*?)</span>',
56 webpage
, 'playlist title')
59 self
.url_result(u
'http://www.ted.com' + m
.group('talk_url'), 'TED')
62 return self
.playlist_result(
63 playlist_entries
, playlist_id
=playlist_id
, playlist_title
=playlist_title
)
65 def _talk_info(self
, url
, video_id
=0):
66 """Return the video for the talk in the url"""
67 m
= re
.match(self
._VALID
_URL
, url
,re
.VERBOSE
)
68 video_name
= m
.group('name')
69 webpage
= self
._download
_webpage
(url
, video_id
, 'Downloading \"%s\" page' % video_name
)
70 self
.report_extraction(video_name
)
71 # If the url includes the language we get the title translated
72 title
= self
._html
_search
_regex
(r
'<span .*?id="altHeadline".+?>(?P<title>.*)</span>',
74 json_data
= self
._search
_regex
(r
'<script.*?>var talkDetails = ({.*?})</script>',
76 info
= json
.loads(json_data
)
77 desc
= self
._html
_search
_regex
(r
'<div class="talk-intro">.*?<p.*?>(.*?)</p>',
78 webpage
, 'description', flags
= re
.DOTALL
)
80 thumbnail
= self
._search
_regex
(r
'</span>[\s.]*</div>[\s.]*<img src="(.*?)"',
84 'url': stream
['file'],
85 'format': stream
['id']
86 } for stream
in info
['htmlStreams']]
91 video_subtitles
= self
.extract_subtitles(video_id
, webpage
)
92 if self
._downloader
.params
.get('listsubtitles', False):
93 self
._list
_available
_subtitles
(video_id
, webpage
)
99 'thumbnail': thumbnail
,
101 'subtitles': video_subtitles
,
105 def _get_available_subtitles(self
, video_id
, webpage
):
107 options
= self
._search
_regex
(r
'(?:<select name="subtitles_language_select" id="subtitles_language_select">)(.*?)(?:</select>)', webpage
, 'subtitles_language_select', flags
=re
.DOTALL
)
108 languages
= re
.findall(r
'(?:<option value=")(\S+)"', options
)
112 url
= 'http://www.ted.com/talks/subtitles/id/%s/lang/%s/format/srt' % (video_id
, l
)
113 sub_lang_list
[l
] = url
115 except RegexNotFoundError
:
116 self
._downloader
.report_warning(u
'video doesn\'t have subtitles')