]> Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/francetv.py
Imported Upstream version 2014.10.30
[youtubedl] / youtube_dl / extractor / francetv.py
1 # encoding: utf-8
2
3 from __future__ import unicode_literals
4
5 import re
6 import json
7
8 from .common import InfoExtractor
9 from ..utils import (
10 compat_urlparse,
11 ExtractorError,
12 clean_html,
13 parse_duration,
14 compat_urllib_parse_urlparse,
15 int_or_none,
16 )
17
18
19 class FranceTVBaseInfoExtractor(InfoExtractor):
20 def _extract_video(self, video_id, catalogue):
21 info = self._download_json(
22 'http://webservices.francetelevisions.fr/tools/getInfosOeuvre/v2/?idDiffusion=%s&catalogue=%s'
23 % (video_id, catalogue),
24 video_id, 'Downloading video JSON')
25
26 if info.get('status') == 'NOK':
27 raise ExtractorError(
28 '%s returned error: %s' % (self.IE_NAME, info['message']), expected=True)
29
30 formats = []
31 for video in info['videos']:
32 if video['statut'] != 'ONLINE':
33 continue
34 video_url = video['url']
35 if not video_url:
36 continue
37 format_id = video['format']
38 if video_url.endswith('.f4m'):
39 video_url_parsed = compat_urllib_parse_urlparse(video_url)
40 f4m_url = self._download_webpage(
41 'http://hdfauth.francetv.fr/esi/urltokengen2.html?url=%s' % video_url_parsed.path,
42 video_id, 'Downloading f4m manifest token', fatal=False)
43 if f4m_url:
44 f4m_formats = self._extract_f4m_formats(f4m_url, video_id)
45 for f4m_format in f4m_formats:
46 f4m_format['preference'] = 1
47 formats.extend(f4m_formats)
48 elif video_url.endswith('.m3u8'):
49 formats.extend(self._extract_m3u8_formats(video_url, video_id, 'mp4'))
50 elif video_url.startswith('rtmp'):
51 formats.append({
52 'url': video_url,
53 'format_id': 'rtmp-%s' % format_id,
54 'ext': 'flv',
55 'preference': 1,
56 })
57 else:
58 formats.append({
59 'url': video_url,
60 'format_id': format_id,
61 'preference': -1,
62 })
63 self._sort_formats(formats)
64
65 return {
66 'id': video_id,
67 'title': info['titre'],
68 'description': clean_html(info['synopsis']),
69 'thumbnail': compat_urlparse.urljoin('http://pluzz.francetv.fr', info['image']),
70 'duration': parse_duration(info['duree']),
71 'timestamp': int_or_none(info['diffusion']['timestamp']),
72 'formats': formats,
73 }
74
75
76 class PluzzIE(FranceTVBaseInfoExtractor):
77 IE_NAME = 'pluzz.francetv.fr'
78 _VALID_URL = r'https?://pluzz\.francetv\.fr/videos/(.*?)\.html'
79
80 # Can't use tests, videos expire in 7 days
81
82 def _real_extract(self, url):
83 title = re.match(self._VALID_URL, url).group(1)
84 webpage = self._download_webpage(url, title)
85 video_id = self._search_regex(
86 r'data-diffusion="(\d+)"', webpage, 'ID')
87 return self._extract_video(video_id, 'Pluzz')
88
89
90 class FranceTvInfoIE(FranceTVBaseInfoExtractor):
91 IE_NAME = 'francetvinfo.fr'
92 _VALID_URL = r'https?://(?:www|mobile)\.francetvinfo\.fr/.*/(?P<title>.+)\.html'
93
94 _TESTS = [{
95 'url': 'http://www.francetvinfo.fr/replay-jt/france-3/soir-3/jt-grand-soir-3-lundi-26-aout-2013_393427.html',
96 'info_dict': {
97 'id': '84981923',
98 'ext': 'flv',
99 'title': 'Soir 3',
100 'upload_date': '20130826',
101 'timestamp': 1377548400,
102 },
103 }, {
104 'url': 'http://www.francetvinfo.fr/elections/europeennes/direct-europeennes-regardez-le-debat-entre-les-candidats-a-la-presidence-de-la-commission_600639.html',
105 'info_dict': {
106 'id': 'EV_20019',
107 'ext': 'mp4',
108 'title': 'Débat des candidats à la Commission européenne',
109 'description': 'Débat des candidats à la Commission européenne',
110 },
111 'params': {
112 'skip_download': 'HLS (reqires ffmpeg)'
113 },
114 'skip': 'Ce direct est terminé et sera disponible en rattrapage dans quelques minutes.',
115 }]
116
117 def _real_extract(self, url):
118 mobj = re.match(self._VALID_URL, url)
119 page_title = mobj.group('title')
120 webpage = self._download_webpage(url, page_title)
121 video_id, catalogue = self._search_regex(
122 r'id-video=([^@]+@[^"]+)', webpage, 'video id').split('@')
123 return self._extract_video(video_id, catalogue)
124
125
126 class FranceTVIE(FranceTVBaseInfoExtractor):
127 IE_NAME = 'francetv'
128 IE_DESC = 'France 2, 3, 4, 5 and Ô'
129 _VALID_URL = r'''(?x)https?://www\.france[2345o]\.fr/
130 (?:
131 emissions/.*?/(videos|emissions)/(?P<id>[^/?]+)
132 | (emissions?|jt)/(?P<key>[^/?]+)
133 )'''
134
135 _TESTS = [
136 # france2
137 {
138 'url': 'http://www.france2.fr/emissions/13h15-le-samedi-le-dimanche/videos/75540104',
139 'md5': 'c03fc87cb85429ffd55df32b9fc05523',
140 'info_dict': {
141 'id': '109169362',
142 'ext': 'flv',
143 'title': '13h15, le dimanche...',
144 'description': 'md5:9a0932bb465f22d377a449be9d1a0ff7',
145 'upload_date': '20140914',
146 'timestamp': 1410693600,
147 },
148 },
149 # france3
150 {
151 'url': 'http://www.france3.fr/emissions/pieces-a-conviction/diffusions/13-11-2013_145575',
152 'md5': '679bb8f8921f8623bd658fa2f8364da0',
153 'info_dict': {
154 'id': '000702326_CAPP_PicesconvictionExtrait313022013_120220131722_Au',
155 'ext': 'mp4',
156 'title': 'Le scandale du prix des médicaments',
157 'description': 'md5:1384089fbee2f04fc6c9de025ee2e9ce',
158 'upload_date': '20131113',
159 'timestamp': 1384380000,
160 },
161 },
162 # france4
163 {
164 'url': 'http://www.france4.fr/emissions/hero-corp/videos/rhozet_herocorp_bonus_1_20131106_1923_06112013172108_F4',
165 'md5': 'a182bf8d2c43d88d46ec48fbdd260c1c',
166 'info_dict': {
167 'id': 'rhozet_herocorp_bonus_1_20131106_1923_06112013172108_F4',
168 'ext': 'mp4',
169 'title': 'Hero Corp Making of - Extrait 1',
170 'description': 'md5:c87d54871b1790679aec1197e73d650a',
171 'upload_date': '20131106',
172 'timestamp': 1383766500,
173 },
174 },
175 # france5
176 {
177 'url': 'http://www.france5.fr/emissions/c-a-dire/videos/92837968',
178 'md5': '78f0f4064f9074438e660785bbf2c5d9',
179 'info_dict': {
180 'id': '108961659',
181 'ext': 'flv',
182 'title': 'C à dire ?!',
183 'description': 'md5:1a4aeab476eb657bf57c4ff122129f81',
184 'upload_date': '20140915',
185 'timestamp': 1410795000,
186 },
187 },
188 # franceo
189 {
190 'url': 'http://www.franceo.fr/jt/info-afrique/04-12-2013',
191 'md5': '52f0bfe202848b15915a2f39aaa8981b',
192 'info_dict': {
193 'id': '108634970',
194 'ext': 'flv',
195 'title': 'Infô Afrique',
196 'description': 'md5:ebf346da789428841bee0fd2a935ea55',
197 'upload_date': '20140915',
198 'timestamp': 1410822000,
199 },
200 },
201 ]
202
203 def _real_extract(self, url):
204 mobj = re.match(self._VALID_URL, url)
205 webpage = self._download_webpage(url, mobj.group('key') or mobj.group('id'))
206 video_id, catalogue = self._html_search_regex(
207 r'href="http://videos\.francetv\.fr/video/([^@]+@[^"]+)"',
208 webpage, 'video ID').split('@')
209 return self._extract_video(video_id, catalogue)
210
211
212 class GenerationQuoiIE(InfoExtractor):
213 IE_NAME = 'france2.fr:generation-quoi'
214 _VALID_URL = r'https?://generation-quoi\.france2\.fr/portrait/(?P<name>.*)(\?|$)'
215
216 _TEST = {
217 'url': 'http://generation-quoi.france2.fr/portrait/garde-a-vous',
218 'file': 'k7FJX8VBcvvLmX4wA5Q.mp4',
219 'info_dict': {
220 'title': 'Génération Quoi - Garde à Vous',
221 'uploader': 'Génération Quoi',
222 },
223 'params': {
224 # It uses Dailymotion
225 'skip_download': True,
226 },
227 'skip': 'Only available from France',
228 }
229
230 def _real_extract(self, url):
231 mobj = re.match(self._VALID_URL, url)
232 name = mobj.group('name')
233 info_url = compat_urlparse.urljoin(url, '/medias/video/%s.json' % name)
234 info_json = self._download_webpage(info_url, name)
235 info = json.loads(info_json)
236 return self.url_result('http://www.dailymotion.com/video/%s' % info['id'],
237 ie='Dailymotion')
238
239
240 class CultureboxIE(FranceTVBaseInfoExtractor):
241 IE_NAME = 'culturebox.francetvinfo.fr'
242 _VALID_URL = r'https?://(?:m\.)?culturebox\.francetvinfo\.fr/(?P<name>.*?)(\?|$)'
243
244 _TEST = {
245 'url': 'http://culturebox.francetvinfo.fr/festivals/dans-les-jardins-de-william-christie/dans-les-jardins-de-william-christie-le-camus-162553',
246 'md5': '5ad6dec1ffb2a3fbcb20cc4b744be8d6',
247 'info_dict': {
248 'id': 'EV_22853',
249 'ext': 'flv',
250 'title': 'Dans les jardins de William Christie - Le Camus',
251 'description': 'md5:4710c82315c40f0c865ca8b9a68b5299',
252 'upload_date': '20140829',
253 'timestamp': 1409317200,
254 },
255 }
256
257 def _real_extract(self, url):
258 mobj = re.match(self._VALID_URL, url)
259 name = mobj.group('name')
260 webpage = self._download_webpage(url, name)
261 video_id, catalogue = self._search_regex(
262 r'"http://videos\.francetv\.fr/video/([^@]+@[^"]+)"', webpage, 'video id').split('@')
263
264 return self._extract_video(video_id, catalogue)