2 from __future__
import unicode_literals
8 from .common
import InfoExtractor
9 from .subtitles
import SubtitlesInfoExtractor
11 from ..compat
import (
13 compat_urllib_request
,
24 class DailymotionBaseInfoExtractor(InfoExtractor
):
26 def _build_request(url
):
27 """Build a request with the family filter disabled"""
28 request
= compat_urllib_request
.Request(url
)
29 request
.add_header('Cookie', 'family_filter=off')
30 request
.add_header('Cookie', 'ff=off')
34 class DailymotionIE(DailymotionBaseInfoExtractor
, SubtitlesInfoExtractor
):
35 """Information Extractor for Dailymotion"""
37 _VALID_URL
= r
'(?i)(?:https?://)?(?:(www|touch)\.)?dailymotion\.[a-z]{2,3}/(?:(embed|#)/)?video/(?P<id>[^/?_]+)'
38 IE_NAME
= 'dailymotion'
41 ('stream_h264_ld_url', 'ld'),
42 ('stream_h264_url', 'standard'),
43 ('stream_h264_hq_url', 'hq'),
44 ('stream_h264_hd_url', 'hd'),
45 ('stream_h264_hd1080_url', 'hd180'),
50 'url': 'http://www.dailymotion.com/video/x33vw9_tutoriel-de-youtubeur-dl-des-video_tech',
51 'md5': '392c4b85a60a90dc4792da41ce3144eb',
55 'uploader': 'Amphora Alex and Van .',
56 'title': 'Tutoriel de Youtubeur"DL DES VIDEO DE YOUTUBE"',
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
= 'http://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
'<div class="[^"]*uploaded_cont[^"]*" title="[^"]*">([0-9]{2})-([0-9]{2})-([0-9]{4})</div>', webpage
)
113 video_upload_date
= mobj
.group(3) + mobj
.group(2) + mobj
.group(1)
115 embed_url
= 'http://www.dailymotion.com/embed/video/%s' % video_id
116 embed_page
= self
._download
_webpage
(embed_url
, video_id
,
117 'Downloading embed page')
118 info
= self
._search
_regex
(r
'var info = ({.*?}),$', embed_page
,
119 'video info', flags
=re
.MULTILINE
)
120 info
= json
.loads(info
)
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)
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:
131 width
, height
= map(int_or_none
, (m_size
.group(1), m_size
.group(2)))
133 width
, height
= None, None
137 'format_id': format_id
,
142 raise ExtractorError('Unable to extract video URL')
145 video_subtitles
= self
.extract_subtitles(video_id
, webpage
)
146 if self
._downloader
.params
.get('listsubtitles', False):
147 self
._list
_available
_subtitles
(video_id
, webpage
)
150 view_count
= str_to_int(self
._search
_regex
(
151 r
'video_views_count[^>]+>\s+([\d\.,]+)',
152 webpage
, 'view count', fatal
=False))
154 title
= self
._og
_search
_title
(webpage
, default
=None)
156 title
= self
._html
_search
_regex
(
157 r
'(?s)<span\s+id="video_title"[^>]*>(.*?)</span>', webpage
,
163 'uploader': info
['owner.screenname'],
164 'upload_date': video_upload_date
,
166 'subtitles': video_subtitles
,
167 'thumbnail': info
['thumbnail_url'],
168 'age_limit': age_limit
,
169 'view_count': view_count
,
172 def _get_available_subtitles(self
, video_id
, webpage
):
174 sub_list
= self
._download
_webpage
(
175 'https://api.dailymotion.com/video/%s/subtitles?fields=id,language,url' % video_id
,
176 video_id
, note
=False)
177 except ExtractorError
as err
:
178 self
._downloader
.report_warning('unable to download video subtitles: %s' % compat_str(err
))
180 info
= json
.loads(sub_list
)
181 if (info
['total'] > 0):
182 sub_lang_list
= dict((l
['language'], l
['url']) for l
in info
['list'])
184 self
._downloader
.report_warning('video doesn\'t have subtitles')
188 class DailymotionPlaylistIE(DailymotionBaseInfoExtractor
):
189 IE_NAME
= 'dailymotion:playlist'
190 _VALID_URL
= r
'(?:https?://)?(?:www\.)?dailymotion\.[a-z]{2,3}/playlist/(?P<id>.+?)/'
191 _MORE_PAGES_INDICATOR
= r
'(?s)<div class="pages[^"]*">.*?<a\s+class="[^"]*?icon-arrow_right[^"]*?"'
192 _PAGE_TEMPLATE
= 'https://www.dailymotion.com/playlist/%s/%s'
194 'url': 'http://www.dailymotion.com/playlist/xv4bw_nqtv_sport/1#video=xl8v3q',
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}/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
(url
, user
)
245 full_user
= unescapeHTML(self
._html
_search
_regex
(
246 r
'<a class="nav-image" title="([^"]+)" href="/%s">' % re
.escape(user
),
253 'entries': self
._extract
_entries
(user
),