Merge branch 'master' into subtitles_rework
[youtube-dl] / youtube_dl / extractor / dailymotion.py
1 import re
2 import json
3 import itertools
4 import socket
5
6 from .common import InfoExtractor
7 from .subtitles import NoAutoSubtitlesIE
8
9 from ..utils import (
10     compat_http_client,
11     compat_urllib_error,
12     compat_urllib_request,
13     compat_str,
14     get_element_by_attribute,
15     get_element_by_id,
16
17     ExtractorError,
18 )
19
20
21 class DailyMotionSubtitlesIE(NoAutoSubtitlesIE):
22
23     def _get_available_subtitles(self, video_id):
24         request = compat_urllib_request.Request('https://api.dailymotion.com/video/%s/subtitles?fields=id,language,url' % video_id)
25         try:
26             sub_list = compat_urllib_request.urlopen(request).read().decode('utf-8')
27         except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
28             self._downloader.report_warning(u'unable to download video subtitles: %s' % compat_str(err))
29             return {}
30         info = json.loads(sub_list)
31         if (info['total'] > 0):
32             sub_lang_list = dict((l['language'], l['url']) for l in info['list'])
33             return sub_lang_list
34         self._downloader.report_warning(u'video doesn\'t have subtitles')
35         return {}
36
37 class DailymotionIE(DailyMotionSubtitlesIE, InfoExtractor):
38     """Information Extractor for Dailymotion"""
39
40     _VALID_URL = r'(?i)(?:https?://)?(?:www\.)?dailymotion\.[a-z]{2,3}/video/([^/]+)'
41     IE_NAME = u'dailymotion'
42     _TEST = {
43         u'url': u'http://www.dailymotion.com/video/x33vw9_tutoriel-de-youtubeur-dl-des-video_tech',
44         u'file': u'x33vw9.mp4',
45         u'md5': u'392c4b85a60a90dc4792da41ce3144eb',
46         u'info_dict': {
47             u"uploader": u"Alex and Van .", 
48             u"title": u"Tutoriel de Youtubeur\"DL DES VIDEO DE YOUTUBE\""
49         }
50     }
51
52     def _real_extract(self, url):
53         # Extract id and simplified title from URL
54         mobj = re.match(self._VALID_URL, url)
55
56         video_id = mobj.group(1).split('_')[0].split('?')[0]
57
58         video_extension = 'mp4'
59
60         # Retrieve video webpage to extract further information
61         request = compat_urllib_request.Request(url)
62         request.add_header('Cookie', 'family_filter=off')
63         webpage = self._download_webpage(request, video_id)
64
65         # Extract URL, uploader and title from webpage
66         self.report_extraction(video_id)
67
68         video_uploader = self._search_regex([r'(?im)<span class="owner[^\"]+?">[^<]+?<a [^>]+?>([^<]+?)</a>',
69                                              # Looking for official user
70                                              r'<(?:span|a) .*?rel="author".*?>([^<]+?)</'],
71                                             webpage, 'video uploader')
72
73         video_upload_date = None
74         mobj = re.search(r'<div class="[^"]*uploaded_cont[^"]*" title="[^"]*">([0-9]{2})-([0-9]{2})-([0-9]{4})</div>', webpage)
75         if mobj is not None:
76             video_upload_date = mobj.group(3) + mobj.group(2) + mobj.group(1)
77
78         embed_url = 'http://www.dailymotion.com/embed/video/%s' % video_id
79         embed_page = self._download_webpage(embed_url, video_id,
80                                             u'Downloading embed page')
81         info = self._search_regex(r'var info = ({.*?}),', embed_page, 'video info')
82         info = json.loads(info)
83
84         # TODO: support choosing qualities
85
86         for key in ['stream_h264_hd1080_url','stream_h264_hd_url',
87                     'stream_h264_hq_url','stream_h264_url',
88                     'stream_h264_ld_url']:
89             if info.get(key):#key in info and info[key]:
90                 max_quality = key
91                 self.to_screen(u'Using %s' % key)
92                 break
93         else:
94             raise ExtractorError(u'Unable to extract video URL')
95         video_url = info[max_quality]
96
97         # subtitles
98         video_subtitles = None
99         video_webpage = None
100
101         if self._downloader.params.get('writesubtitles', False) or self._downloader.params.get('allsubtitles', False):
102             video_subtitles = self._extract_subtitles(video_id)
103         elif self._downloader.params.get('writeautomaticsub', False):
104             video_subtitles = self._request_automatic_caption(video_id, video_webpage)
105
106         if self._downloader.params.get('listsubtitles', False):
107             self._list_available_subtitles(video_id)
108             return
109
110         return [{
111             'id':       video_id,
112             'url':      video_url,
113             'uploader': video_uploader,
114             'upload_date':  video_upload_date,
115             'title':    self._og_search_title(webpage),
116             'ext':      video_extension,
117             'subtitles':    video_subtitles,
118             'thumbnail': info['thumbnail_url']
119         }]
120
121
122 class DailymotionPlaylistIE(InfoExtractor):
123     _VALID_URL = r'(?:https?://)?(?:www\.)?dailymotion\.[a-z]{2,3}/playlist/(?P<id>.+?)/'
124     _MORE_PAGES_INDICATOR = r'<div class="next">.*?<a.*?href="/playlist/.+?".*?>.*?</a>.*?</div>'
125
126     def _real_extract(self, url):
127         mobj = re.match(self._VALID_URL, url)
128         playlist_id =  mobj.group('id')
129         video_ids = []
130
131         for pagenum in itertools.count(1):
132             webpage = self._download_webpage('https://www.dailymotion.com/playlist/%s/%s' % (playlist_id, pagenum),
133                                              playlist_id, u'Downloading page %s' % pagenum)
134
135             playlist_el = get_element_by_attribute(u'class', u'video_list', webpage)
136             video_ids.extend(re.findall(r'data-id="(.+?)" data-ext-id', playlist_el))
137
138             if re.search(self._MORE_PAGES_INDICATOR, webpage, re.DOTALL) is None:
139                 break
140
141         entries = [self.url_result('http://www.dailymotion.com/video/%s' % video_id, 'Dailymotion')
142                    for video_id in video_ids]
143         return {'_type': 'playlist',
144                 'id': playlist_id,
145                 'title': get_element_by_id(u'playlist_name', webpage),
146                 'entries': entries,
147                 }