]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/dailymotion.py
[howcast] Fix extraction and modernize
[yt-dlp.git] / youtube_dl / extractor / dailymotion.py
CommitLineData
5f6a1245 1# coding: utf-8
22a6f150
PH
2from __future__ import unicode_literals
3
219b8130 4import re
b27c856f 5import json
a3c736de 6import itertools
219b8130
PH
7
8from .common import InfoExtractor
953e32b2 9
1cc79574 10from ..compat import (
953e32b2 11 compat_str,
1cc79574
PH
12 compat_urllib_request,
13)
14from ..utils import (
15 ExtractorError,
16 int_or_none,
c3fef636 17 orderedSet,
f53c966a 18 str_to_int,
4b10aadf 19 unescapeHTML,
219b8130
PH
20)
21
5f6a1245 22
70922df8
JMF
23class DailymotionBaseInfoExtractor(InfoExtractor):
24 @staticmethod
25 def _build_request(url):
26 """Build a request with the family filter disabled"""
27 request = compat_urllib_request.Request(url)
2a0c2ca2 28 request.add_header('Cookie', 'family_filter=off; ff=off')
70922df8 29 return request
953e32b2 30
5f6a1245 31
a1f2a06b 32class DailymotionIE(DailymotionBaseInfoExtractor):
219b8130
PH
33 """Information Extractor for Dailymotion"""
34
9ee859b6 35 _VALID_URL = r'(?i)(?:https?://)?(?:(www|touch)\.)?dailymotion\.[a-z]{2,3}/(?:(embed|#)/)?video/(?P<id>[^/?_]+)'
ce6815aa 36 IE_NAME = 'dailymotion'
cdec0190
JMF
37
38 _FORMATS = [
ce6815aa
PH
39 ('stream_h264_ld_url', 'ld'),
40 ('stream_h264_url', 'standard'),
41 ('stream_h264_hq_url', 'hq'),
42 ('stream_h264_hd_url', 'hd'),
43 ('stream_h264_hd1080_url', 'hd180'),
cdec0190
JMF
44 ]
45
c5428382
JMF
46 _TESTS = [
47 {
23ba76bc
JMF
48 'url': 'https://www.dailymotion.com/video/x2iuewm_steam-machine-models-pricing-listed-on-steam-store-ign-news_videogames',
49 'md5': '2137c41a8e78554bb09225b8eb322406',
ce6815aa 50 'info_dict': {
23ba76bc 51 'id': 'x2iuewm',
ce6815aa 52 'ext': 'mp4',
23ba76bc
JMF
53 'uploader': 'IGN',
54 'title': 'Steam Machine Models, Pricing Listed on Steam Store - IGN News',
a909e6ad 55 'upload_date': '20150306',
c5428382
JMF
56 }
57 },
58 # Vevo video
59 {
ce6815aa
PH
60 'url': 'http://www.dailymotion.com/video/x149uew_katy-perry-roar-official_musi',
61 'info_dict': {
62 'title': 'Roar (Official)',
63 'id': 'USUV71301934',
64 'ext': 'mp4',
65 'uploader': 'Katy Perry',
66 'upload_date': '20130905',
c5428382 67 },
ce6815aa
PH
68 'params': {
69 'skip_download': True,
c5428382 70 },
ce6815aa 71 'skip': 'VEVO is only available in some countries',
c5428382 72 },
9f1109a5
PH
73 # age-restricted video
74 {
ce6815aa
PH
75 'url': 'http://www.dailymotion.com/video/xyh2zz_leanna-decker-cyber-girl-of-the-year-desires-nude-playboy-plus_redband',
76 'md5': '0d667a7b9cebecc3c89ee93099c4159d',
77 'info_dict': {
78 'id': 'xyh2zz',
79 'ext': 'mp4',
80 'title': 'Leanna Decker - Cyber Girl Of The Year Desires Nude [Playboy Plus]',
81 'uploader': 'HotWaves1012',
82 'age_limit': 18,
9f1109a5 83 }
9f1109a5 84 }
c5428382 85 ]
219b8130
PH
86
87 def _real_extract(self, url):
b10609d9 88 video_id = self._match_id(url)
5477ca82 89 url = 'https://www.dailymotion.com/video/%s' % video_id
219b8130
PH
90
91 # Retrieve video webpage to extract further information
70922df8 92 request = self._build_request(url)
219b8130
PH
93 webpage = self._download_webpage(request, video_id)
94
95 # Extract URL, uploader and title from webpage
96 self.report_extraction(video_id)
219b8130 97
c5428382
JMF
98 # It may just embed a vevo video:
99 m_vevo = re.search(
9e05d039 100 r'<link rel="video_src" href="[^"]*?vevo.com[^"]*?video=(?P<id>[\w]*)',
c5428382
JMF
101 webpage)
102 if m_vevo is not None:
103 vevo_id = m_vevo.group('id')
22a6f150
PH
104 self.to_screen('Vevo video detected: %s' % vevo_id)
105 return self.url_result('vevo:%s' % vevo_id, ie='Vevo')
c5428382 106
9f1109a5 107 age_limit = self._rta_search(webpage)
219b8130
PH
108
109 video_upload_date = None
a909e6ad 110 mobj = re.search(r'<meta property="video:release_date" content="([0-9]{4})-([0-9]{2})-([0-9]{2}).+?"/>', webpage)
219b8130 111 if mobj is not None:
a909e6ad 112 video_upload_date = mobj.group(1) + mobj.group(2) + mobj.group(3)
219b8130 113
5477ca82 114 embed_url = 'https://www.dailymotion.com/embed/video/%s' % video_id
2a0c2ca2
S
115 embed_request = self._build_request(embed_url)
116 embed_page = self._download_webpage(
117 embed_request, video_id, 'Downloading embed page')
4ff7a0f1 118 info = self._search_regex(r'var info = ({.*?}),$', embed_page,
9e1a5b84 119 'video info', flags=re.MULTILINE)
b27c856f 120 info = json.loads(info)
3a1d48d6
JMF
121 if info.get('error') is not None:
122 msg = 'Couldn\'t get video, Dailymotion says: %s' % info['error']['title']
123 raise ExtractorError(msg, expected=True)
b27c856f 124
cdec0190
JMF
125 formats = []
126 for (key, format_id) in self._FORMATS:
127 video_url = info.get(key)
128 if video_url is not None:
129 m_size = re.search(r'H264-(\d+)x(\d+)', video_url)
130 if m_size is not None:
553f6e46 131 width, height = map(int_or_none, (m_size.group(1), m_size.group(2)))
cdec0190
JMF
132 else:
133 width, height = None, None
134 formats.append({
135 'url': video_url,
136 'ext': 'mp4',
137 'format_id': format_id,
138 'width': width,
139 'height': height,
140 })
141 if not formats:
22a6f150 142 raise ExtractorError('Unable to extract video URL')
b27c856f 143
953e32b2 144 # subtitles
1f343eaa 145 video_subtitles = self.extract_subtitles(video_id, webpage)
953e32b2 146
b10609d9
PH
147 view_count = str_to_int(self._search_regex(
148 r'video_views_count[^>]+>\s+([\d\.,]+)',
149 webpage, 'view count', fatal=False))
150
151 title = self._og_search_title(webpage, default=None)
152 if title is None:
153 title = self._html_search_regex(
154 r'(?s)<span\s+id="video_title"[^>]*>(.*?)</span>', webpage,
155 'title')
f53c966a 156
9f1109a5 157 return {
b10609d9 158 'id': video_id,
cdec0190 159 'formats': formats,
85342674 160 'uploader': info['owner.screenname'],
b10609d9
PH
161 'upload_date': video_upload_date,
162 'title': title,
163 'subtitles': video_subtitles,
9f1109a5
PH
164 'thumbnail': info['thumbnail_url'],
165 'age_limit': age_limit,
f53c966a 166 'view_count': view_count,
9f1109a5 167 }
a3c736de 168
a1f2a06b 169 def _get_subtitles(self, video_id, webpage):
f8e52269 170 try:
7fad1c63
JMF
171 sub_list = self._download_webpage(
172 'https://api.dailymotion.com/video/%s/subtitles?fields=id,language,url' % video_id,
173 video_id, note=False)
174 except ExtractorError as err:
22a6f150 175 self._downloader.report_warning('unable to download video subtitles: %s' % compat_str(err))
f8e52269
IM
176 return {}
177 info = json.loads(sub_list)
178 if (info['total'] > 0):
a1f2a06b 179 sub_lang_list = dict((l['language'], [{'url': l['url'], 'ext': 'srt'}]) for l in info['list'])
f8e52269 180 return sub_lang_list
22a6f150 181 self._downloader.report_warning('video doesn\'t have subtitles')
f8e52269
IM
182 return {}
183
a3c736de 184
70922df8 185class DailymotionPlaylistIE(DailymotionBaseInfoExtractor):
22a6f150 186 IE_NAME = 'dailymotion:playlist'
a3c736de 187 _VALID_URL = r'(?:https?://)?(?:www\.)?dailymotion\.[a-z]{2,3}/playlist/(?P<id>.+?)/'
1e0a235f 188 _MORE_PAGES_INDICATOR = r'(?s)<div class="pages[^"]*">.*?<a\s+class="[^"]*?icon-arrow_right[^"]*?"'
39baacc4 189 _PAGE_TEMPLATE = 'https://www.dailymotion.com/playlist/%s/%s'
22a6f150
PH
190 _TESTS = [{
191 'url': 'http://www.dailymotion.com/playlist/xv4bw_nqtv_sport/1#video=xl8v3q',
192 'info_dict': {
193 'title': 'SPORT',
11e611a7 194 'id': 'xv4bw_nqtv_sport',
22a6f150
PH
195 },
196 'playlist_mincount': 20,
197 }]
a3c736de 198
39baacc4 199 def _extract_entries(self, id):
a3c736de 200 video_ids = []
a3c736de 201 for pagenum in itertools.count(1):
70922df8
JMF
202 request = self._build_request(self._PAGE_TEMPLATE % (id, pagenum))
203 webpage = self._download_webpage(request,
22a6f150 204 id, 'Downloading page %s' % pagenum)
a3c736de 205
4b10aadf 206 video_ids.extend(re.findall(r'data-xid="(.+?)"', webpage))
a3c736de 207
1e0a235f 208 if re.search(self._MORE_PAGES_INDICATOR, webpage) is None:
a3c736de 209 break
39baacc4 210 return [self.url_result('http://www.dailymotion.com/video/%s' % video_id, 'Dailymotion')
9e1a5b84 211 for video_id in orderedSet(video_ids)]
39baacc4
JMF
212
213 def _real_extract(self, url):
214 mobj = re.match(self._VALID_URL, url)
215 playlist_id = mobj.group('id')
216 webpage = self._download_webpage(url, playlist_id)
217
b0fb63ab
PH
218 return {
219 '_type': 'playlist',
220 'id': playlist_id,
221 'title': self._og_search_title(webpage),
222 'entries': self._extract_entries(playlist_id),
223 }
39baacc4
JMF
224
225
226class DailymotionUserIE(DailymotionPlaylistIE):
22a6f150 227 IE_NAME = 'dailymotion:user'
5406af92 228 _VALID_URL = r'https?://(?:www\.)?dailymotion\.[a-z]{2,3}/(?:(?:old/)?user/)?(?P<user>[^/]+)$'
39baacc4 229 _PAGE_TEMPLATE = 'http://www.dailymotion.com/user/%s/%s'
22a6f150
PH
230 _TESTS = [{
231 'url': 'https://www.dailymotion.com/user/nqtv',
232 'info_dict': {
233 'id': 'nqtv',
234 'title': 'Rémi Gaillard',
235 },
236 'playlist_mincount': 100,
237 }]
39baacc4
JMF
238
239 def _real_extract(self, url):
240 mobj = re.match(self._VALID_URL, url)
241 user = mobj.group('user')
7d65242d
S
242 webpage = self._download_webpage(
243 'https://www.dailymotion.com/user/%s' % user, user)
4b10aadf
S
244 full_user = unescapeHTML(self._html_search_regex(
245 r'<a class="nav-image" title="([^"]+)" href="/%s">' % re.escape(user),
22a6f150 246 webpage, 'user'))
39baacc4
JMF
247
248 return {
249 '_type': 'playlist',
250 'id': user,
251 'title': full_user,
252 'entries': self._extract_entries(user),
253 }
756f574e
YCH
254
255
256class DailymotionCloudIE(DailymotionBaseInfoExtractor):
257 _VALID_URL = r'http://api\.dmcloud\.net/embed/[^/]+/(?P<id>[^/?]+)'
258
259 _TEST = {
260 # From http://www.francetvinfo.fr/economie/entreprises/les-entreprises-familiales-le-secret-de-la-reussite_933271.html
261 # Tested at FranceTvInfo_2
262 'url': 'http://api.dmcloud.net/embed/4e7343f894a6f677b10006b4/556e03339473995ee145930c?auth=1464865870-0-jyhsm84b-ead4c701fb750cf9367bf4447167a3db&autoplay=1',
263 'only_matching': True,
264 }
265
266 @classmethod
267 def _extract_dmcloud_url(self, webpage):
268 mobj = re.search(r'<iframe[^>]+src=[\'"](http://api\.dmcloud\.net/embed/[^/]+/[^\'"]+)[\'"]', webpage)
269 if mobj:
270 return mobj.group(1)
271
272 mobj = re.search(r'<input[^>]+id=[\'"]dmcloudUrlEmissionSelect[\'"][^>]+value=[\'"](http://api\.dmcloud\.net/embed/[^/]+/[^\'"]+)[\'"]', webpage)
273 if mobj:
274 return mobj.group(1)
275
276 def _real_extract(self, url):
277 video_id = self._match_id(url)
278
279 request = self._build_request(url)
280 webpage = self._download_webpage(request, video_id)
281
282 title = self._html_search_regex(r'<title>([^>]+)</title>', webpage, 'title')
283
284 video_info = self._parse_json(self._search_regex(
285 r'var\s+info\s*=\s*([^;]+);', webpage, 'video info'), video_id)
286
287 # TODO: parse ios_url, which is in fact a manifest
288 video_url = video_info['mp4_url']
289
290 return {
291 'id': video_id,
292 'url': video_url,
293 'title': title,
294 'thumbnail': video_info.get('thumbnail_url'),
295 }