2013-09-08 21:55:11 +02:00
|
|
|
# encoding: utf-8
|
2014-01-30 06:13:57 +01:00
|
|
|
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2013-09-08 21:55:11 +02:00
|
|
|
import re
|
2013-09-23 21:41:54 +02:00
|
|
|
import json
|
2013-09-08 21:55:11 +02:00
|
|
|
|
|
|
|
from .common import InfoExtractor
|
|
|
|
from ..utils import (
|
|
|
|
compat_urlparse,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2013-09-10 15:50:34 +02:00
|
|
|
class FranceTVBaseInfoExtractor(InfoExtractor):
|
|
|
|
def _extract_video(self, video_id):
|
2013-11-26 18:48:52 +01:00
|
|
|
info = self._download_xml(
|
2013-09-10 15:50:34 +02:00
|
|
|
'http://www.francetvinfo.fr/appftv/webservices/video/'
|
|
|
|
'getInfosOeuvre.php?id-diffusion='
|
|
|
|
+ video_id, video_id, 'Downloading XML config')
|
|
|
|
|
|
|
|
manifest_url = info.find('videos/video/url').text
|
|
|
|
video_url = manifest_url.replace('manifest.f4m', 'index_2_av.m3u8')
|
|
|
|
video_url = video_url.replace('/z/', '/i/')
|
|
|
|
thumbnail_path = info.find('image').text
|
|
|
|
|
|
|
|
return {'id': video_id,
|
2013-12-05 20:45:53 +01:00
|
|
|
'ext': 'flv' if video_url.startswith('rtmp') else 'mp4',
|
2013-09-10 15:50:34 +02:00
|
|
|
'url': video_url,
|
|
|
|
'title': info.find('titre').text,
|
|
|
|
'thumbnail': compat_urlparse.urljoin('http://pluzz.francetv.fr', thumbnail_path),
|
|
|
|
'description': info.find('synopsis').text,
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class PluzzIE(FranceTVBaseInfoExtractor):
|
2014-01-30 06:13:57 +01:00
|
|
|
IE_NAME = 'pluzz.francetv.fr'
|
2013-09-08 21:55:11 +02:00
|
|
|
_VALID_URL = r'https?://pluzz\.francetv\.fr/videos/(.*?)\.html'
|
|
|
|
|
2013-09-17 22:49:43 +02:00
|
|
|
# Can't use tests, videos expire in 7 days
|
2013-09-08 21:55:11 +02:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
title = re.match(self._VALID_URL, url).group(1)
|
|
|
|
webpage = self._download_webpage(url, title)
|
|
|
|
video_id = self._search_regex(
|
|
|
|
r'data-diffusion="(\d+)"', webpage, 'ID')
|
2013-09-10 15:50:34 +02:00
|
|
|
return self._extract_video(video_id)
|
2013-09-08 21:55:11 +02:00
|
|
|
|
|
|
|
|
2013-09-10 15:50:34 +02:00
|
|
|
class FranceTvInfoIE(FranceTVBaseInfoExtractor):
|
2014-01-30 06:13:57 +01:00
|
|
|
IE_NAME = 'francetvinfo.fr'
|
2014-05-16 15:51:01 +02:00
|
|
|
_VALID_URL = r'https?://www\.francetvinfo\.fr/.*/(?P<title>.+)\.html'
|
2013-09-08 21:55:11 +02:00
|
|
|
|
2014-05-16 15:51:01 +02:00
|
|
|
_TESTS = [{
|
2014-01-30 06:13:57 +01:00
|
|
|
'url': 'http://www.francetvinfo.fr/replay-jt/france-3/soir-3/jt-grand-soir-3-lundi-26-aout-2013_393427.html',
|
|
|
|
'info_dict': {
|
2014-05-16 15:51:01 +02:00
|
|
|
'id': '84981923',
|
|
|
|
'ext': 'mp4',
|
2014-01-30 06:13:57 +01:00
|
|
|
'title': 'Soir 3',
|
2013-09-10 15:50:34 +02:00
|
|
|
},
|
2014-01-30 06:13:57 +01:00
|
|
|
'params': {
|
|
|
|
'skip_download': True,
|
2013-09-10 15:50:34 +02:00
|
|
|
},
|
2014-05-16 15:51:01 +02:00
|
|
|
}, {
|
|
|
|
'url': 'http://www.francetvinfo.fr/elections/europeennes/direct-europeennes-regardez-le-debat-entre-les-candidats-a-la-presidence-de-la-commission_600639.html',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'EV_20019',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'Débat des candidats à la Commission européenne',
|
|
|
|
'description': 'Débat des candidats à la Commission européenne',
|
|
|
|
},
|
|
|
|
'params': {
|
|
|
|
'skip_download': 'HLS (reqires ffmpeg)'
|
|
|
|
}
|
|
|
|
}]
|
2013-09-10 15:50:34 +02:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
mobj = re.match(self._VALID_URL, url)
|
|
|
|
page_title = mobj.group('title')
|
|
|
|
webpage = self._download_webpage(url, page_title)
|
2014-05-16 15:51:01 +02:00
|
|
|
video_id = self._search_regex(r'id-video=((?:[^0-9]*?_)?[0-9]+)[@"]', webpage, 'video id')
|
2013-09-10 15:50:34 +02:00
|
|
|
return self._extract_video(video_id)
|
2013-09-23 21:28:33 +02:00
|
|
|
|
|
|
|
|
2013-12-05 20:45:53 +01:00
|
|
|
class FranceTVIE(FranceTVBaseInfoExtractor):
|
2014-01-30 06:13:57 +01:00
|
|
|
IE_NAME = 'francetv'
|
|
|
|
IE_DESC = 'France 2, 3, 4, 5 and Ô'
|
2013-12-05 20:45:53 +01:00
|
|
|
_VALID_URL = r'''(?x)https?://www\.france[2345o]\.fr/
|
2013-10-04 00:31:10 +02:00
|
|
|
(?:
|
2013-12-05 20:45:53 +01:00
|
|
|
emissions/.*?/(videos|emissions)/(?P<id>[^/?]+)
|
2013-12-05 21:26:35 +01:00
|
|
|
| (emissions?|jt)/(?P<key>[^/?]+)
|
2013-10-04 00:31:10 +02:00
|
|
|
)'''
|
2013-09-23 21:28:33 +02:00
|
|
|
|
2013-12-05 20:45:53 +01:00
|
|
|
_TESTS = [
|
|
|
|
# france2
|
|
|
|
{
|
2014-01-30 06:13:57 +01:00
|
|
|
'url': 'http://www.france2.fr/emissions/13h15-le-samedi-le-dimanche/videos/75540104',
|
|
|
|
'file': '75540104.mp4',
|
|
|
|
'info_dict': {
|
|
|
|
'title': '13h15, le samedi...',
|
|
|
|
'description': 'md5:2e5b58ba7a2d3692b35c792be081a03d',
|
2013-12-05 20:45:53 +01:00
|
|
|
},
|
2014-01-30 06:13:57 +01:00
|
|
|
'params': {
|
2013-12-05 20:45:53 +01:00
|
|
|
# m3u8 download
|
2014-01-30 06:13:57 +01:00
|
|
|
'skip_download': True,
|
2013-12-05 20:45:53 +01:00
|
|
|
},
|
2013-09-23 21:28:33 +02:00
|
|
|
},
|
2013-12-05 20:45:53 +01:00
|
|
|
# france3
|
|
|
|
{
|
2014-01-30 06:13:57 +01:00
|
|
|
'url': 'http://www.france3.fr/emissions/pieces-a-conviction/diffusions/13-11-2013_145575',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '000702326_CAPP_PicesconvictionExtrait313022013_120220131722_Au',
|
|
|
|
'ext': 'flv',
|
|
|
|
'title': 'Le scandale du prix des médicaments',
|
|
|
|
'description': 'md5:1384089fbee2f04fc6c9de025ee2e9ce',
|
2013-12-05 20:45:53 +01:00
|
|
|
},
|
2014-01-30 06:13:57 +01:00
|
|
|
'params': {
|
2013-12-05 20:45:53 +01:00
|
|
|
# rtmp download
|
2014-01-30 06:13:57 +01:00
|
|
|
'skip_download': True,
|
2013-12-05 20:45:53 +01:00
|
|
|
},
|
2013-09-23 21:28:33 +02:00
|
|
|
},
|
2013-12-05 20:45:53 +01:00
|
|
|
# france4
|
|
|
|
{
|
2014-01-30 06:13:57 +01:00
|
|
|
'url': 'http://www.france4.fr/emissions/hero-corp/videos/rhozet_herocorp_bonus_1_20131106_1923_06112013172108_F4',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'rhozet_herocorp_bonus_1_20131106_1923_06112013172108_F4',
|
|
|
|
'ext': 'flv',
|
|
|
|
'title': 'Hero Corp Making of - Extrait 1',
|
|
|
|
'description': 'md5:c87d54871b1790679aec1197e73d650a',
|
2013-12-05 20:45:53 +01:00
|
|
|
},
|
2014-01-30 06:13:57 +01:00
|
|
|
'params': {
|
2013-12-05 20:45:53 +01:00
|
|
|
# rtmp download
|
2014-01-30 06:13:57 +01:00
|
|
|
'skip_download': True,
|
2013-12-05 20:45:53 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
# france5
|
|
|
|
{
|
2014-01-30 06:13:57 +01:00
|
|
|
'url': 'http://www.france5.fr/emissions/c-a-dire/videos/92837968',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '92837968',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'C à dire ?!',
|
|
|
|
'description': 'md5:fb1db1cbad784dcce7c7a7bd177c8e2f',
|
2013-12-05 20:45:53 +01:00
|
|
|
},
|
2014-01-30 06:13:57 +01:00
|
|
|
'params': {
|
2013-12-05 20:45:53 +01:00
|
|
|
# m3u8 download
|
2014-01-30 06:13:57 +01:00
|
|
|
'skip_download': True,
|
2013-12-05 20:45:53 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
# franceo
|
|
|
|
{
|
2014-01-30 06:13:57 +01:00
|
|
|
'url': 'http://www.franceo.fr/jt/info-afrique/04-12-2013',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '92327925',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'Infô-Afrique',
|
|
|
|
'description': 'md5:ebf346da789428841bee0fd2a935ea55',
|
2013-12-05 20:45:53 +01:00
|
|
|
},
|
2014-01-30 06:13:57 +01:00
|
|
|
'params': {
|
2013-12-05 20:45:53 +01:00
|
|
|
# m3u8 download
|
2014-01-30 06:13:57 +01:00
|
|
|
'skip_download': True,
|
2013-12-05 20:45:53 +01:00
|
|
|
},
|
2014-01-30 06:13:57 +01:00
|
|
|
'skip': 'The id changes frequently',
|
2013-12-05 20:45:53 +01:00
|
|
|
},
|
|
|
|
]
|
2013-09-23 21:28:33 +02:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
mobj = re.match(self._VALID_URL, url)
|
2013-10-04 00:31:10 +02:00
|
|
|
if mobj.group('key'):
|
|
|
|
webpage = self._download_webpage(url, mobj.group('key'))
|
2013-12-05 20:45:53 +01:00
|
|
|
id_res = [
|
|
|
|
(r'''(?x)<div\s+class="video-player">\s*
|
2013-10-04 00:31:10 +02:00
|
|
|
<a\s+href="http://videos.francetv.fr/video/([0-9]+)"\s+
|
2013-12-05 20:45:53 +01:00
|
|
|
class="francetv-video-player">'''),
|
|
|
|
(r'<a id="player_direct" href="http://info\.francetelevisions'
|
|
|
|
'\.fr/\?id-video=([^"/&]+)'),
|
2013-12-05 21:26:35 +01:00
|
|
|
(r'<a class="video" id="ftv_player_(.+?)"'),
|
2013-12-05 20:45:53 +01:00
|
|
|
]
|
2014-01-30 06:13:57 +01:00
|
|
|
video_id = self._html_search_regex(id_res, webpage, 'video ID')
|
2013-10-04 00:31:10 +02:00
|
|
|
else:
|
|
|
|
video_id = mobj.group('id')
|
2013-09-23 21:28:33 +02:00
|
|
|
return self._extract_video(video_id)
|
2013-09-23 21:41:54 +02:00
|
|
|
|
|
|
|
|
|
|
|
class GenerationQuoiIE(InfoExtractor):
|
2014-01-30 06:13:57 +01:00
|
|
|
IE_NAME = 'france2.fr:generation-quoi'
|
2013-09-23 21:41:54 +02:00
|
|
|
_VALID_URL = r'https?://generation-quoi\.france2\.fr/portrait/(?P<name>.*)(\?|$)'
|
|
|
|
|
|
|
|
_TEST = {
|
2014-01-30 06:13:57 +01:00
|
|
|
'url': 'http://generation-quoi.france2.fr/portrait/garde-a-vous',
|
|
|
|
'file': 'k7FJX8VBcvvLmX4wA5Q.mp4',
|
|
|
|
'info_dict': {
|
|
|
|
'title': 'Génération Quoi - Garde à Vous',
|
|
|
|
'uploader': 'Génération Quoi',
|
2013-09-23 21:41:54 +02:00
|
|
|
},
|
2014-01-30 06:13:57 +01:00
|
|
|
'params': {
|
2013-09-23 21:41:54 +02:00
|
|
|
# It uses Dailymotion
|
2014-01-30 06:13:57 +01:00
|
|
|
'skip_download': True,
|
2013-09-23 21:41:54 +02:00
|
|
|
},
|
2014-02-15 13:04:31 +01:00
|
|
|
'skip': 'Only available from France',
|
2013-09-23 21:41:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
mobj = re.match(self._VALID_URL, url)
|
|
|
|
name = mobj.group('name')
|
|
|
|
info_url = compat_urlparse.urljoin(url, '/medias/video/%s.json' % name)
|
|
|
|
info_json = self._download_webpage(info_url, name)
|
|
|
|
info = json.loads(info_json)
|
|
|
|
return self.url_result('http://www.dailymotion.com/video/%s' % info['id'],
|
|
|
|
ie='Dailymotion')
|
2014-01-08 16:16:34 +01:00
|
|
|
|
|
|
|
|
|
|
|
class CultureboxIE(FranceTVBaseInfoExtractor):
|
2014-01-30 06:13:57 +01:00
|
|
|
IE_NAME = 'culturebox.francetvinfo.fr'
|
2014-01-08 16:16:34 +01:00
|
|
|
_VALID_URL = r'https?://culturebox\.francetvinfo\.fr/(?P<name>.*?)(\?|$)'
|
|
|
|
|
|
|
|
_TEST = {
|
2014-01-30 06:13:57 +01:00
|
|
|
'url': 'http://culturebox.francetvinfo.fr/einstein-on-the-beach-au-theatre-du-chatelet-146813',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'EV_6785',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'Einstein on the beach au Théâtre du Châtelet',
|
|
|
|
'description': 'md5:9ce2888b1efefc617b5e58b3f6200eeb',
|
2014-01-08 16:16:34 +01:00
|
|
|
},
|
2014-01-30 06:13:57 +01:00
|
|
|
'params': {
|
2014-01-08 16:16:34 +01:00
|
|
|
# m3u8 download
|
2014-01-30 06:13:57 +01:00
|
|
|
'skip_download': True,
|
2014-01-08 16:16:34 +01:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
mobj = re.match(self._VALID_URL, url)
|
|
|
|
name = mobj.group('name')
|
|
|
|
webpage = self._download_webpage(url, name)
|
2014-01-30 06:13:57 +01:00
|
|
|
video_id = self._search_regex(r'"http://videos\.francetv\.fr/video/(.*?)"', webpage, 'video id')
|
2014-01-08 16:16:34 +01:00
|
|
|
return self._extract_video(video_id)
|