3 from __future__ import unicode_literals
8 from .common import InfoExtractor
9 from ..compat import compat_urlparse
17 from .dailymotion import DailymotionCloudIE
20 class FranceTVBaseInfoExtractor(InfoExtractor):
21 def _extract_video(self, video_id, catalogue):
22 info = self._download_json(
23 'http://webservices.francetelevisions.fr/tools/getInfosOeuvre/v2/?idDiffusion=%s&catalogue=%s'
24 % (video_id, catalogue),
25 video_id, 'Downloading video JSON')
27 if info.get('status') == 'NOK':
29 '%s returned error: %s' % (self.IE_NAME, info['message']), expected=True)
30 allowed_countries = info['videos'][0].get('geoblocage')
33 geo_info = self._download_json(
34 'http://geo.francetv.fr/ws/edgescape.json', video_id,
35 'Downloading geo restriction info')
36 country = geo_info['reponse']['geo_info']['country_code']
37 if country not in allowed_countries:
39 'The video is not available from your location',
45 for video in info['videos']:
46 if video['statut'] != 'ONLINE':
48 video_url = video['url']
51 format_id = video['format']
52 ext = determine_ext(video_url)
55 # See https://github.com/rg3/youtube-dl/issues/3963
58 f4m_url = self._download_webpage(
59 'http://hdfauth.francetv.fr/esi/TA?url=%s' % video_url,
60 video_id, 'Downloading f4m manifest token', fatal=False)
62 formats.extend(self._extract_f4m_formats(
63 f4m_url + '&hdcore=3.7.0&plugin=aasp-3.7.0.39.44',
64 video_id, f4m_id=format_id, fatal=False))
66 formats.extend(self._extract_m3u8_formats(
67 video_url, video_id, 'mp4', entry_protocol='m3u8_native',
68 m3u8_id=format_id, fatal=False))
69 elif video_url.startswith('rtmp'):
72 'format_id': 'rtmp-%s' % format_id,
76 if self._is_valid_url(video_url, video_id, format_id):
79 'format_id': format_id,
81 self._sort_formats(formats)
84 subtitle = info.get('sous_titre')
86 title += ' - %s' % subtitle
91 'url': subformat['url'],
92 'ext': subformat.get('format'),
93 } for subformat in info.get('subtitles', []) if subformat.get('url')]
95 subtitles['fr'] = subtitles_list
100 'description': clean_html(info['synopsis']),
101 'thumbnail': compat_urlparse.urljoin('http://pluzz.francetv.fr', info['image']),
102 'duration': int_or_none(info.get('real_duration')) or parse_duration(info['duree']),
103 'timestamp': int_or_none(info['diffusion']['timestamp']),
105 'subtitles': subtitles,
109 class PluzzIE(FranceTVBaseInfoExtractor):
110 IE_NAME = 'pluzz.francetv.fr'
111 _VALID_URL = r'https?://(?:m\.)?pluzz\.francetv\.fr/videos/(?P<id>.+?)\.html'
113 # Can't use tests, videos expire in 7 days
115 def _real_extract(self, url):
116 display_id = self._match_id(url)
118 webpage = self._download_webpage(url, display_id)
120 video_id = self._html_search_meta(
121 'id_video', webpage, 'video id', default=None)
123 video_id = self._search_regex(
124 r'data-diffusion=["\'](\d+)', webpage, 'video id')
126 return self._extract_video(video_id, 'Pluzz')
129 class FranceTvInfoIE(FranceTVBaseInfoExtractor):
130 IE_NAME = 'francetvinfo.fr'
131 _VALID_URL = r'https?://(?:www|mobile|france3-regions)\.francetvinfo\.fr/.*/(?P<title>.+)\.html'
134 'url': 'http://www.francetvinfo.fr/replay-jt/france-3/soir-3/jt-grand-soir-3-lundi-26-aout-2013_393427.html',
139 'upload_date': '20130826',
140 'timestamp': 1377548400,
147 'skip_download': True,
150 'url': 'http://www.francetvinfo.fr/elections/europeennes/direct-europeennes-regardez-le-debat-entre-les-candidats-a-la-presidence-de-la-commission_600639.html',
154 'title': 'Débat des candidats à la Commission européenne',
155 'description': 'Débat des candidats à la Commission européenne',
158 'skip_download': 'HLS (reqires ffmpeg)'
160 'skip': 'Ce direct est terminé et sera disponible en rattrapage dans quelques minutes.',
162 'url': 'http://www.francetvinfo.fr/economie/entreprises/les-entreprises-familiales-le-secret-de-la-reussite_933271.html',
163 'md5': 'f485bda6e185e7d15dbc69b72bae993e',
167 'title': 'Les entreprises familiales : le secret de la réussite',
168 'thumbnail': 're:^https?://.*\.jpe?g$',
169 'timestamp': 1433273139,
170 'upload_date': '20150602',
174 'skip_download': True,
177 'url': 'http://france3-regions.francetvinfo.fr/bretagne/cotes-d-armor/thalassa-echappee-breizh-ce-venredi-dans-les-cotes-d-armor-954961.html',
178 'md5': 'f485bda6e185e7d15dbc69b72bae993e',
182 'title': 'Olivier Monthus, réalisateur de "Bretagne, le choix de l’Armor"',
183 'description': 'md5:a3264114c9d29aeca11ced113c37b16c',
184 'thumbnail': 're:^https?://.*\.jpe?g$',
185 'timestamp': 1458300695,
186 'upload_date': '20160318',
189 'skip_download': True,
193 def _real_extract(self, url):
194 mobj = re.match(self._VALID_URL, url)
195 page_title = mobj.group('title')
196 webpage = self._download_webpage(url, page_title)
198 dmcloud_url = DailymotionCloudIE._extract_dmcloud_url(webpage)
200 return self.url_result(dmcloud_url, 'DailymotionCloud')
202 video_id, catalogue = self._search_regex(
203 (r'id-video=([^@]+@[^"]+)',
204 r'<a[^>]+href="(?:https?:)?//videos\.francetv\.fr/video/([^@]+@[^"]+)"'),
205 webpage, 'video id').split('@')
206 return self._extract_video(video_id, catalogue)
209 class FranceTVIE(FranceTVBaseInfoExtractor):
211 IE_DESC = 'France 2, 3, 4, 5 and Ô'
212 _VALID_URL = r'''(?x)
215 (?:www\.)?france[2345o]\.fr/
217 emissions/[^/]+/(?:videos|diffusions)|
223 embed\.francetv\.fr/\?ue=
231 'url': 'http://www.france2.fr/emissions/13h15-le-samedi-le-dimanche/videos/75540104',
232 'md5': 'c03fc87cb85429ffd55df32b9fc05523',
236 'title': '13h15, le dimanche...',
237 'description': 'md5:9a0932bb465f22d377a449be9d1a0ff7',
238 'upload_date': '20140914',
239 'timestamp': 1410693600,
244 'url': 'http://www.france3.fr/emissions/pieces-a-conviction/diffusions/13-11-2013_145575',
245 'md5': '679bb8f8921f8623bd658fa2f8364da0',
247 'id': '000702326_CAPP_PicesconvictionExtrait313022013_120220131722_Au',
249 'title': 'Le scandale du prix des médicaments',
250 'description': 'md5:1384089fbee2f04fc6c9de025ee2e9ce',
251 'upload_date': '20131113',
252 'timestamp': 1384380000,
257 'url': 'http://www.france4.fr/emissions/hero-corp/videos/rhozet_herocorp_bonus_1_20131106_1923_06112013172108_F4',
258 'md5': 'a182bf8d2c43d88d46ec48fbdd260c1c',
260 'id': 'rhozet_herocorp_bonus_1_20131106_1923_06112013172108_F4',
262 'title': 'Hero Corp Making of - Extrait 1',
263 'description': 'md5:c87d54871b1790679aec1197e73d650a',
264 'upload_date': '20131106',
265 'timestamp': 1383766500,
270 'url': 'http://www.france5.fr/emissions/c-a-dire/videos/quels_sont_les_enjeux_de_cette_rentree_politique__31-08-2015_908948?onglet=tous&page=1',
271 'md5': 'f6c577df3806e26471b3d21631241fd0',
275 'title': 'C à dire ?! - Quels sont les enjeux de cette rentrée politique ?',
276 'description': 'md5:4a0d5cb5dce89d353522a84462bae5a4',
277 'upload_date': '20150831',
278 'timestamp': 1441035120,
283 'url': 'http://www.franceo.fr/jt/info-soir/18-07-2015',
284 'md5': '47d5816d3b24351cdce512ad7ab31da8',
288 'title': 'Infô soir',
289 'description': 'md5:01b8c6915a3d93d8bbbd692651714309',
290 'upload_date': '20150718',
291 'timestamp': 1437241200,
297 'url': 'http://embed.francetv.fr/?ue=8d7d3da1e3047c42ade5a5d7dfd3fc87',
301 'title': 'Alcaline, le concert avec Calogero',
302 'description': 'md5:61f08036dcc8f47e9cfc33aed08ffaff',
303 'upload_date': '20150226',
304 'timestamp': 1424989860,
309 'url': 'http://www.france4.fr/emission/highlander/diffusion-du-17-07-2015-04h05',
310 'only_matching': True,
313 'url': 'http://www.franceo.fr/videos/125377617',
314 'only_matching': True,
318 def _real_extract(self, url):
319 video_id = self._match_id(url)
320 webpage = self._download_webpage(url, video_id)
321 video_id, catalogue = self._html_search_regex(
322 r'(?:href=|player\.setVideo\(\s*)"http://videos?\.francetv\.fr/video/([^@]+@[^"]+)"',
323 webpage, 'video ID').split('@')
324 return self._extract_video(video_id, catalogue)
327 class GenerationQuoiIE(InfoExtractor):
328 IE_NAME = 'france2.fr:generation-quoi'
329 _VALID_URL = r'https?://generation-quoi\.france2\.fr/portrait/(?P<id>[^/?#]+)'
332 'url': 'http://generation-quoi.france2.fr/portrait/garde-a-vous',
334 'id': 'k7FJX8VBcvvLmX4wA5Q',
336 'title': 'Génération Quoi - Garde à Vous',
337 'uploader': 'Génération Quoi',
340 # It uses Dailymotion
341 'skip_download': True,
345 def _real_extract(self, url):
346 display_id = self._match_id(url)
347 info_url = compat_urlparse.urljoin(url, '/medias/video/%s.json' % display_id)
348 info_json = self._download_webpage(info_url, display_id)
349 info = json.loads(info_json)
350 return self.url_result('http://www.dailymotion.com/video/%s' % info['id'],
354 class CultureboxIE(FranceTVBaseInfoExtractor):
355 IE_NAME = 'culturebox.francetvinfo.fr'
356 _VALID_URL = r'https?://(?:m\.)?culturebox\.francetvinfo\.fr/(?P<name>.*?)(\?|$)'
359 'url': 'http://culturebox.francetvinfo.fr/live/musique/musique-classique/le-livre-vermeil-de-montserrat-a-la-cathedrale-delne-214511',
360 'md5': '9b88dc156781c4dbebd4c3e066e0b1d6',
364 'title': "Le Livre Vermeil de Montserrat à la Cathédrale d'Elne",
365 'description': 'md5:f8a4ad202e8fe533e2c493cc12e739d9',
366 'upload_date': '20150320',
367 'timestamp': 1426892400,
372 def _real_extract(self, url):
373 mobj = re.match(self._VALID_URL, url)
374 name = mobj.group('name')
376 webpage = self._download_webpage(url, name)
378 if ">Ce live n'est plus disponible en replay<" in webpage:
379 raise ExtractorError('Video %s is not available' % name, expected=True)
381 video_id, catalogue = self._search_regex(
382 r'"http://videos\.francetv\.fr/video/([^@]+@[^"]+)"', webpage, 'video id').split('@')
384 return self._extract_video(video_id, catalogue)