2 from __future__
import unicode_literals
8 from .common
import InfoExtractor
10 from ..compat
import (
12 compat_urllib_request
,
23 class DailymotionBaseInfoExtractor(InfoExtractor
):
25 def _build_request(url
):
26 """Build a request with the family filter disabled"""
27 request
= compat_urllib_request
.Request(url
)
28 request
.add_header('Cookie', 'family_filter=off; ff=off')
32 class DailymotionIE(DailymotionBaseInfoExtractor
):
33 """Information Extractor for Dailymotion"""
35 _VALID_URL
= r
'(?i)(?:https?://)?(?:(www|touch)\.)?dailymotion\.[a-z]{2,3}/(?:(embed|#)/)?video/(?P<id>[^/?_]+)'
36 IE_NAME
= 'dailymotion'
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'),
48 'url': 'https://www.dailymotion.com/video/x2iuewm_steam-machine-models-pricing-listed-on-steam-store-ign-news_videogames',
49 'md5': '2137c41a8e78554bb09225b8eb322406',
54 'title': 'Steam Machine Models, Pricing Listed on Steam Store - IGN News',
55 'upload_date': '20150306',
61 'url': 'http://www.dailymotion.com/video/x149uew_katy-perry-roar-official_musi',
63 'title': 'Roar (Official)',
66 'uploader': 'Katy Perry',
67 'upload_date': '20130905',
70 'skip_download': True,
72 'skip': 'VEVO is only available in some countries',
74 # age-restricted video
76 'url': 'http://www.dailymotion.com/video/xyh2zz_leanna-decker-cyber-girl-of-the-year-desires-nude-playboy-plus_redband',
77 'md5': '0d667a7b9cebecc3c89ee93099c4159d',
81 'title': 'Leanna Decker - Cyber Girl Of The Year Desires Nude [Playboy Plus]',
82 'uploader': 'HotWaves1012',
88 def _real_extract(self
, url
):
89 video_id
= self
._match
_id
(url
)
90 url
= 'https://www.dailymotion.com/video/%s' % video_id
92 # Retrieve video webpage to extract further information
93 request
= self
._build
_request
(url
)
94 webpage
= self
._download
_webpage
(request
, video_id
)
96 # Extract URL, uploader and title from webpage
97 self
.report_extraction(video_id
)
99 # It may just embed a vevo video:
101 r
'<link rel="video_src" href="[^"]*?vevo.com[^"]*?video=(?P<id>[\w]*)',
103 if m_vevo
is not None:
104 vevo_id
= m_vevo
.group('id')
105 self
.to_screen('Vevo video detected: %s' % vevo_id
)
106 return self
.url_result('vevo:%s' % vevo_id
, ie
='Vevo')
108 age_limit
= self
._rta
_search
(webpage
)
110 video_upload_date
= None
111 mobj
= re
.search(r
'<meta property="video:release_date" content="([0-9]{4})-([0-9]{2})-([0-9]{2}).+?"/>', webpage
)
113 video_upload_date
= mobj
.group(1) + mobj
.group(2) + mobj
.group(3)
115 embed_url
= 'https://www.dailymotion.com/embed/video/%s' % video_id
116 embed_request
= self
._build
_request
(embed_url
)
117 embed_page
= self
._download
_webpage
(
118 embed_request
, video_id
, 'Downloading embed page')
119 info
= self
._search
_regex
(r
'var info = ({.*?}),$', embed_page
,
120 'video info', flags
=re
.MULTILINE
)
121 info
= json
.loads(info
)
122 if info
.get('error') is not None:
123 msg
= 'Couldn\'t get video, Dailymotion says: %s' % info
['error']['title']
124 raise ExtractorError(msg
, expected
=True)
127 for (key
, format_id
) in self
._FORMATS
:
128 video_url
= info
.get(key
)
129 if video_url
is not None:
130 m_size
= re
.search(r
'H264-(\d+)x(\d+)', video_url
)
131 if m_size
is not None:
132 width
, height
= map(int_or_none
, (m_size
.group(1), m_size
.group(2)))
134 width
, height
= None, None
138 'format_id': format_id
,
143 raise ExtractorError('Unable to extract video URL')
146 video_subtitles
= self
.extract_subtitles(video_id
, webpage
)
148 view_count
= str_to_int(self
._search
_regex
(
149 r
'video_views_count[^>]+>\s+([\d\.,]+)',
150 webpage
, 'view count', fatal
=False))
152 title
= self
._og
_search
_title
(webpage
, default
=None)
154 title
= self
._html
_search
_regex
(
155 r
'(?s)<span\s+id="video_title"[^>]*>(.*?)</span>', webpage
,
161 'uploader': info
['owner.screenname'],
162 'upload_date': video_upload_date
,
164 'subtitles': video_subtitles
,
165 'thumbnail': info
['thumbnail_url'],
166 'age_limit': age_limit
,
167 'view_count': view_count
,
168 'duration': info
['duration']
171 def _get_subtitles(self
, video_id
, webpage
):
173 sub_list
= self
._download
_webpage
(
174 'https://api.dailymotion.com/video/%s/subtitles?fields=id,language,url' % video_id
,
175 video_id
, note
=False)
176 except ExtractorError
as err
:
177 self
._downloader
.report_warning('unable to download video subtitles: %s' % compat_str(err
))
179 info
= json
.loads(sub_list
)
180 if (info
['total'] > 0):
181 sub_lang_list
= dict((l
['language'], [{'url': l
['url'], 'ext': 'srt'}]) for l
in info
['list'])
183 self
._downloader
.report_warning('video doesn\'t have subtitles')
187 class DailymotionPlaylistIE(DailymotionBaseInfoExtractor
):
188 IE_NAME
= 'dailymotion:playlist'
189 _VALID_URL
= r
'(?:https?://)?(?:www\.)?dailymotion\.[a-z]{2,3}/playlist/(?P<id>.+?)/'
190 _MORE_PAGES_INDICATOR
= r
'(?s)<div class="pages[^"]*">.*?<a\s+class="[^"]*?icon-arrow_right[^"]*?"'
191 _PAGE_TEMPLATE
= 'https://www.dailymotion.com/playlist/%s/%s'
193 'url': 'http://www.dailymotion.com/playlist/xv4bw_nqtv_sport/1#video=xl8v3q',
196 'id': 'xv4bw_nqtv_sport',
198 'playlist_mincount': 20,
201 def _extract_entries(self
, id):
203 for pagenum
in itertools
.count(1):
204 request
= self
._build
_request
(self
._PAGE
_TEMPLATE
% (id, pagenum
))
205 webpage
= self
._download
_webpage
(request
,
206 id, 'Downloading page %s' % pagenum
)
208 video_ids
.extend(re
.findall(r
'data-xid="(.+?)"', webpage
))
210 if re
.search(self
._MORE
_PAGES
_INDICATOR
, webpage
) is None:
212 return [self
.url_result('http://www.dailymotion.com/video/%s' % video_id
, 'Dailymotion')
213 for video_id
in orderedSet(video_ids
)]
215 def _real_extract(self
, url
):
216 mobj
= re
.match(self
._VALID
_URL
, url
)
217 playlist_id
= mobj
.group('id')
218 webpage
= self
._download
_webpage
(url
, playlist_id
)
223 'title': self
._og
_search
_title
(webpage
),
224 'entries': self
._extract
_entries
(playlist_id
),
228 class DailymotionUserIE(DailymotionPlaylistIE
):
229 IE_NAME
= 'dailymotion:user'
230 _VALID_URL
= r
'https?://(?:www\.)?dailymotion\.[a-z]{2,3}/(?:(?:old/)?user/)?(?P<user>[^/]+)$'
231 _PAGE_TEMPLATE
= 'http://www.dailymotion.com/user/%s/%s'
233 'url': 'https://www.dailymotion.com/user/nqtv',
236 'title': 'Rémi Gaillard',
238 'playlist_mincount': 100,
241 def _real_extract(self
, url
):
242 mobj
= re
.match(self
._VALID
_URL
, url
)
243 user
= mobj
.group('user')
244 webpage
= self
._download
_webpage
(
245 'https://www.dailymotion.com/user/%s' % user
, user
)
246 full_user
= unescapeHTML(self
._html
_search
_regex
(
247 r
'<a class="nav-image" title="([^"]+)" href="/%s">' % re
.escape(user
),
254 'entries': self
._extract
_entries
(user
),
258 class DailymotionCloudIE(DailymotionBaseInfoExtractor
):
259 _VALID_URL_PREFIX
= r
'http://api\.dmcloud\.net/(?:player/)?embed/'
260 _VALID_URL
= r
'%s[^/]+/(?P<id>[^/?]+)' % _VALID_URL_PREFIX
261 _VALID_EMBED_URL
= r
'%s[^/]+/[^\'"]+' % _VALID_URL_PREFIX
264 # From http://www.francetvinfo.fr/economie/entreprises/les-entreprises-familiales-le-secret-de-la-reussite_933271.html
265 # Tested at FranceTvInfo_2
266 'url': 'http://api.dmcloud.net/embed/4e7343f894a6f677b10006b4/556e03339473995ee145930c?auth=1464865870-0-jyhsm84b-ead4c701fb750cf9367bf4447167a3db&autoplay=1',
267 'only_matching': True,
269 # http://www.francetvinfo.fr/societe/larguez-les-amarres-le-cobaturage-se-developpe_980101.html
270 'url': 'http://api.dmcloud.net/player/embed/4e7343f894a6f677b10006b4/559545469473996d31429f06?auth=1467430263-0-90tglw2l-a3a4b64ed41efe48d7fccad85b8b8fda&autoplay=1',
271 'only_matching': True,
275 def _extract_dmcloud_url(self, webpage):
276 mobj = re.search(r'<iframe[^>]+src=[\'"](%s)[\'"]' % self._VALID_EMBED_URL, webpage)
281 r'<input[^>]+id=[\'"]dmcloudUrlEmissionSelect
[\'"][^>]+value=[\'"](%s)[\'"]' % self._VALID_EMBED_URL,
286 def _real_extract(self, url):
287 video_id = self._match_id(url)
289 request = self._build_request(url)
290 webpage = self._download_webpage(request, video_id)
292 title = self._html_search_regex(r'<title>([^>]+)</title>', webpage, 'title')
294 video_info = self._parse_json(self._search_regex(
295 r'var\s+info\s*=\s*([^;]+);', webpage, 'video info'), video_id)
297 # TODO: parse ios_url, which is in fact a manifest
298 video_url = video_info['mp4_url']
304 'thumbnail': video_info.get('thumbnail_url'),