3 from __future__
import unicode_literals
8 from .common
import InfoExtractor
14 compat_urllib_parse_urlparse
,
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')
26 if info
.get('status') == 'NOK':
28 '%s returned error: %s' % (self
.IE_NAME
, info
['message']), expected
=True)
31 for video
in info
['videos']:
32 if video
['statut'] != 'ONLINE':
34 video_url
= video
['url']
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)
44 f4m_formats
= self
._extract
_f
4m
_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
_m
3u8_formats
(video_url
, video_id
, 'mp4'))
50 elif video_url
.startswith('rtmp'):
53 'format_id': 'rtmp-%s' % format_id
,
60 'format_id': format_id
,
63 self
._sort
_formats
(formats
)
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']),
76 class PluzzIE(FranceTVBaseInfoExtractor
):
77 IE_NAME
= 'pluzz.francetv.fr'
78 _VALID_URL
= r
'https?://pluzz\.francetv\.fr/videos/(.*?)\.html'
80 # Can't use tests, videos expire in 7 days
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')
90 class FranceTvInfoIE(FranceTVBaseInfoExtractor
):
91 IE_NAME
= 'francetvinfo.fr'
92 _VALID_URL
= r
'https?://(?:www|mobile)\.francetvinfo\.fr/.*/(?P<title>.+)\.html'
95 'url': 'http://www.francetvinfo.fr/replay-jt/france-3/soir-3/jt-grand-soir-3-lundi-26-aout-2013_393427.html',
100 'upload_date': '20130826',
101 'timestamp': 1377548400,
104 'url': 'http://www.francetvinfo.fr/elections/europeennes/direct-europeennes-regardez-le-debat-entre-les-candidats-a-la-presidence-de-la-commission_600639.html',
108 'title': 'Débat des candidats à la Commission européenne',
109 'description': 'Débat des candidats à la Commission européenne',
112 'skip_download': 'HLS (reqires ffmpeg)'
114 'skip': 'Ce direct est terminé et sera disponible en rattrapage dans quelques minutes.',
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
)
126 class FranceTVIE(FranceTVBaseInfoExtractor
):
128 IE_DESC
= 'France 2, 3, 4, 5 and Ô'
129 _VALID_URL
= r
'''(?x)https?://www\.france[2345o]\.fr/
131 emissions/.*?/(videos|emissions)/(?P<id>[^/?]+)
132 | (emissions?|jt)/(?P<key>[^/?]+)
138 'url': 'http://www.france2.fr/emissions/13h15-le-samedi-le-dimanche/videos/75540104',
139 'md5': 'c03fc87cb85429ffd55df32b9fc05523',
143 'title': '13h15, le dimanche...',
144 'description': 'md5:9a0932bb465f22d377a449be9d1a0ff7',
145 'upload_date': '20140914',
146 'timestamp': 1410693600,
151 'url': 'http://www.france3.fr/emissions/pieces-a-conviction/diffusions/13-11-2013_145575',
152 'md5': '679bb8f8921f8623bd658fa2f8364da0',
154 'id': '000702326_CAPP_PicesconvictionExtrait313022013_120220131722_Au',
156 'title': 'Le scandale du prix des médicaments',
157 'description': 'md5:1384089fbee2f04fc6c9de025ee2e9ce',
158 'upload_date': '20131113',
159 'timestamp': 1384380000,
164 'url': 'http://www.france4.fr/emissions/hero-corp/videos/rhozet_herocorp_bonus_1_20131106_1923_06112013172108_F4',
165 'md5': 'a182bf8d2c43d88d46ec48fbdd260c1c',
167 'id': 'rhozet_herocorp_bonus_1_20131106_1923_06112013172108_F4',
169 'title': 'Hero Corp Making of - Extrait 1',
170 'description': 'md5:c87d54871b1790679aec1197e73d650a',
171 'upload_date': '20131106',
172 'timestamp': 1383766500,
177 'url': 'http://www.france5.fr/emissions/c-a-dire/videos/92837968',
178 'md5': '78f0f4064f9074438e660785bbf2c5d9',
182 'title': 'C à dire ?!',
183 'description': 'md5:1a4aeab476eb657bf57c4ff122129f81',
184 'upload_date': '20140915',
185 'timestamp': 1410795000,
190 'url': 'http://www.franceo.fr/jt/info-afrique/04-12-2013',
191 'md5': '52f0bfe202848b15915a2f39aaa8981b',
195 'title': 'Infô Afrique',
196 'description': 'md5:ebf346da789428841bee0fd2a935ea55',
197 'upload_date': '20140915',
198 'timestamp': 1410822000,
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
)
212 class GenerationQuoiIE(InfoExtractor
):
213 IE_NAME
= 'france2.fr:generation-quoi'
214 _VALID_URL
= r
'https?://generation-quoi\.france2\.fr/portrait/(?P<name>.*)(\?|$)'
217 'url': 'http://generation-quoi.france2.fr/portrait/garde-a-vous',
218 'file': 'k7FJX8VBcvvLmX4wA5Q.mp4',
220 'title': 'Génération Quoi - Garde à Vous',
221 'uploader': 'Génération Quoi',
224 # It uses Dailymotion
225 'skip_download': True,
227 'skip': 'Only available from France',
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'],
240 class CultureboxIE(FranceTVBaseInfoExtractor
):
241 IE_NAME
= 'culturebox.francetvinfo.fr'
242 _VALID_URL
= r
'https?://(?:m\.)?culturebox\.francetvinfo\.fr/(?P<name>.*?)(\?|$)'
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',
250 'title': 'Dans les jardins de William Christie - Le Camus',
251 'description': 'md5:4710c82315c40f0c865ca8b9a68b5299',
252 'upload_date': '20140829',
253 'timestamp': 1409317200,
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('@')
264 return self
._extract
_video
(video_id
, catalogue
)