3 from __future__ 
import unicode_literals
 
   7 from .common 
import InfoExtractor
 
  21 from .dailymotion 
import DailymotionIE
 
  24 class FranceTVBaseInfoExtractor(InfoExtractor
): 
  25     def _make_url_result(self
, video_or_full_id
, catalog
=None): 
  26         full_id 
= 'francetv:%s' % video_or_full_id
 
  27         if '@' not in video_or_full_id 
and catalog
: 
  28             full_id 
+= '@%s' % catalog
 
  29         return self
.url_result( 
  30             full_id
, ie
=FranceTVIE
.ie_key(), 
  31             video_id
=video_or_full_id
.split('@')[0]) 
  34 class FranceTVIE(InfoExtractor
): 
  38                             sivideo\.webservices\.francetelevisions\.fr/tools/getInfosOeuvre/v2/\? 
  39                             .*?\bidDiffusion=[^&]+| 
  41                             https?://videos\.francetv\.fr/video/| 
  44                         (?P<id>[^@]+)(?:@(?P<catalog>.+))? 
  50         'url': 'https://sivideo.webservices.francetelevisions.fr/tools/getInfosOeuvre/v2/?idDiffusion=162311093&callback=_jsonp_loader_callback_request_0', 
  51         'md5': 'c2248a8de38c4e65ea8fae7b5df2d84f', 
  55             'title': '13h15, le dimanche... - Les mystères de Jésus', 
  56             'description': 'md5:75efe8d4c0a8205e5904498ffe1e1a42', 
  57             'timestamp': 1502623500, 
  58             'upload_date': '20170813', 
  62         'url': 'https://sivideo.webservices.francetelevisions.fr/tools/getInfosOeuvre/v2/?idDiffusion=NI_1004933&catalogue=Zouzous&callback=_jsonp_loader_callback_request_4', 
  63         'only_matching': True, 
  65         'url': 'http://videos.francetv.fr/video/NI_657393@Regions', 
  66         'only_matching': True, 
  68         'url': 'francetv:162311093', 
  69         'only_matching': True, 
  71         'url': 'francetv:NI_1004933@Zouzous', 
  72         'only_matching': True, 
  74         'url': 'francetv:NI_983319@Info-web', 
  75         'only_matching': True, 
  77         'url': 'francetv:NI_983319', 
  78         'only_matching': True, 
  80         'url': 'francetv:NI_657393@Regions', 
  81         'only_matching': True, 
  84         'url': 'francetv:SIM_France3', 
  85         'only_matching': True, 
  88     def _extract_video(self
, video_id
, catalogue
=None): 
  89         # Videos are identified by idDiffusion so catalogue part is optional. 
  90         # However when provided, some extra formats may be returned so we pass 
  92         info 
= self
._download
_json
( 
  93             'https://sivideo.webservices.francetelevisions.fr/tools/getInfosOeuvre/v2/', 
  94             video_id
, 'Downloading video JSON', query
={ 
  95                 'idDiffusion': video_id
, 
  96                 'catalogue': catalogue 
or '', 
  99         if info
.get('status') == 'NOK': 
 100             raise ExtractorError( 
 101                 '%s returned error: %s' % (self
.IE_NAME
, info
['message']), 
 103         allowed_countries 
= info
['videos'][0].get('geoblocage') 
 104         if allowed_countries
: 
 106             geo_info 
= self
._download
_json
( 
 107                 'http://geo.francetv.fr/ws/edgescape.json', video_id
, 
 108                 'Downloading geo restriction info') 
 109             country 
= geo_info
['reponse']['geo_info']['country_code'] 
 110             if country 
not in allowed_countries
: 
 111                 raise ExtractorError( 
 112                     'The video is not available from your location', 
 115             georestricted 
= False 
 117         def sign(manifest_url
, manifest_id
): 
 118             for host 
in ('hdfauthftv-a.akamaihd.net', 'hdfauth.francetv.fr'): 
 119                 signed_url 
= url_or_none(self
._download
_webpage
( 
 120                     'https://%s/esi/TA' % host
, video_id
, 
 121                     'Downloading signed %s manifest URL' % manifest_id
, 
 132         for video 
in info
['videos']: 
 133             if video
['statut'] != 'ONLINE': 
 135             video_url 
= video
['url'] 
 140                     video
, lambda x
: x
['plages_ouverture'][0]['direct'], 
 141                     bool) is True) or '/live.francetv.fr/' in video_url
 
 142             format_id 
= video
['format'] 
 143             ext 
= determine_ext(video_url
) 
 146                     # See https://github.com/ytdl-org/youtube-dl/issues/3963 
 147                     # m3u8 urls work fine 
 149                 formats
.extend(self
._extract
_f
4m
_formats
( 
 150                     sign(video_url
, format_id
) + '&hdcore=3.7.0&plugin=aasp-3.7.0.39.44', 
 151                     video_id
, f4m_id
=format_id
, fatal
=False)) 
 153                 formats
.extend(self
._extract
_m
3u8_formats
( 
 154                     sign(video_url
, format_id
), video_id
, 'mp4', 
 155                     entry_protocol
='m3u8_native', m3u8_id
=format_id
, 
 157             elif video_url
.startswith('rtmp'): 
 160                     'format_id': 'rtmp-%s' % format_id
, 
 164                 if self
._is
_valid
_url
(video_url
, video_id
, format_id
): 
 167                         'format_id': format_id
, 
 169         self
._sort
_formats
(formats
) 
 171         title 
= info
['titre'] 
 172         subtitle 
= info
.get('sous_titre') 
 174             title 
+= ' - %s' % subtitle
 
 175         title 
= title
.strip() 
 179             'url': subformat
['url'], 
 180             'ext': subformat
.get('format'), 
 181         } for subformat 
in info
.get('subtitles', []) if subformat
.get('url')] 
 183             subtitles
['fr'] = subtitles_list
 
 187             'title': self
._live
_title
(title
) if is_live 
else title
, 
 188             'description': clean_html(info
['synopsis']), 
 189             'thumbnail': compat_urlparse
.urljoin('http://pluzz.francetv.fr', info
['image']), 
 190             'duration': int_or_none(info
.get('real_duration')) or parse_duration(info
['duree']), 
 191             'timestamp': int_or_none(info
['diffusion']['timestamp']), 
 194             'subtitles': subtitles
, 
 197     def _real_extract(self
, url
): 
 198         mobj 
= re
.match(self
._VALID
_URL
, url
) 
 199         video_id 
= mobj
.group('id') 
 200         catalog 
= mobj
.group('catalog') 
 203             qs 
= compat_urlparse
.parse_qs(compat_urlparse
.urlparse(url
).query
) 
 204             video_id 
= qs
.get('idDiffusion', [None])[0] 
 205             catalog 
= qs
.get('catalogue', [None])[0] 
 207                 raise ExtractorError('Invalid URL', expected
=True) 
 209         return self
._extract
_video
(video_id
, catalog
) 
 212 class FranceTVSiteIE(FranceTVBaseInfoExtractor
): 
 213     _VALID_URL 
= r
'https?://(?:(?:www\.)?france\.tv|mobile\.france\.tv)/(?:[^/]+/)*(?P<id>[^/]+)\.html' 
 216         'url': 'https://www.france.tv/france-2/13h15-le-dimanche/140921-les-mysteres-de-jesus.html', 
 218             'id': 'ec217ecc-0733-48cf-ac06-af1347b849d1', 
 220             'title': '13h15, le dimanche... - Les mystères de Jésus', 
 221             'description': 'md5:75efe8d4c0a8205e5904498ffe1e1a42', 
 222             'timestamp': 1502623500, 
 223             'upload_date': '20170813', 
 226             'skip_download': True, 
 228         'add_ie': [FranceTVIE
.ie_key()], 
 231         'url': 'https://www.france.tv/france-3/des-chiffres-et-des-lettres/139063-emission-du-mardi-9-mai-2017.html', 
 232         'only_matching': True, 
 235         'url': 'https://www.france.tv/france-4/hero-corp/saison-1/134151-apres-le-calme.html', 
 236         'only_matching': True, 
 239         'url': 'https://www.france.tv/france-5/c-a-dire/saison-10/137013-c-a-dire.html', 
 240         'only_matching': True, 
 243         'url': 'https://www.france.tv/france-o/archipels/132249-mon-ancetre-l-esclave.html', 
 244         'only_matching': True, 
 247         'url': 'https://www.france.tv/france-2/direct.html', 
 248         'only_matching': True, 
 250         'url': 'https://www.france.tv/documentaires/histoire/136517-argentine-les-500-bebes-voles-de-la-dictature.html', 
 251         'only_matching': True, 
 253         'url': 'https://www.france.tv/jeux-et-divertissements/divertissements/133965-le-web-contre-attaque.html', 
 254         'only_matching': True, 
 256         'url': 'https://mobile.france.tv/france-5/c-dans-l-air/137347-emission-du-vendredi-12-mai-2017.html', 
 257         'only_matching': True, 
 259         'url': 'https://www.france.tv/142749-rouge-sang.html', 
 260         'only_matching': True, 
 263         'url': 'https://www.france.tv/france-3/direct.html', 
 264         'only_matching': True, 
 267     def _real_extract(self
, url
): 
 268         display_id 
= self
._match
_id
(url
) 
 270         webpage 
= self
._download
_webpage
(url
, display_id
) 
 273         video_id 
= self
._search
_regex
( 
 274             r
'(?:data-main-video\s*=|videoId["\']?\s
*[:=])\s
*(["\'])(?P<id>(?:(?!\1).)+)\1', 
 275             webpage, 'video id', default=None, group='id') 
 278             video_id, catalogue = self._html_search_regex( 
 279                 r'(?:href=|player\.setVideo\(\s*)"http
://videos?\
.francetv\
.fr
/video
/([^
@]+@[^
"]+)"', 
 280                 webpage, 'video ID
').split('@') 
 282         return self._make_url_result(video_id, catalogue) 
 285 class FranceTVEmbedIE(FranceTVBaseInfoExtractor): 
 286     _VALID_URL = r'https?
://embed\
.francetv\
.fr
/*\?.*?
\bue
=(?P
<id>[^
&]+)' 
 289         'url
': 'http
://embed
.francetv
.fr
/?ue
=7fd581a2ccf59d2fc5719c5c13cf6961
', 
 293             'title
': 'Le Pen Reims
', 
 294             'upload_date
': '20170505', 
 295             'timestamp
': 1493981780, 
 299             'skip_download
': True, 
 301         'add_ie
': [FranceTVIE.ie_key()], 
 304     def _real_extract(self, url): 
 305         video_id = self._match_id(url) 
 307         video = self._download_json( 
 308             'http
://api
-embed
.webservices
.francetelevisions
.fr
/key
/%s' % video_id, 
 311         return self._make_url_result(video['video_id
'], video.get('catalog
')) 
 314 class FranceTVInfoIE(FranceTVBaseInfoExtractor): 
 315     IE_NAME = 'francetvinfo
.fr
' 
 316     _VALID_URL = r'https?
://(?
:www|mobile|france3
-regions
)\
.francetvinfo\
.fr
/(?
:[^
/]+/)*(?P
<id>[^
/?
#&.]+)' 
 319         'url': 'http://www.francetvinfo.fr/replay-jt/france-3/soir-3/jt-grand-soir-3-lundi-26-aout-2013_393427.html', 
 324             'upload_date': '20130826', 
 325             'timestamp': 1377548400, 
 331             'skip_download': True, 
 333         'add_ie': [FranceTVIE
.ie_key()], 
 335         'url': 'http://www.francetvinfo.fr/elections/europeennes/direct-europeennes-regardez-le-debat-entre-les-candidats-a-la-presidence-de-la-commission_600639.html', 
 336         'only_matching': True, 
 338         'url': 'http://www.francetvinfo.fr/economie/entreprises/les-entreprises-familiales-le-secret-de-la-reussite_933271.html', 
 339         'only_matching': True, 
 341         'url': 'http://france3-regions.francetvinfo.fr/bretagne/cotes-d-armor/thalassa-echappee-breizh-ce-venredi-dans-les-cotes-d-armor-954961.html', 
 342         'only_matching': True, 
 345         'url': 'http://www.francetvinfo.fr/politique/notre-dame-des-landes/video-sur-france-inter-cecile-duflot-denonce-le-regard-meprisant-de-patrick-cohen_1520091.html', 
 346         'md5': 'ee7f1828f25a648addc90cb2687b1f12', 
 350             'title': 'NDDL, référendum, Brexit : Cécile Duflot répond à Patrick Cohen', 
 351             'description': 'Au lendemain de la victoire du "oui" au référendum sur l\'aéroport de Notre-Dame-des-Landes, l\'ancienne ministre écologiste est l\'invitée de Patrick Cohen. Plus d\'info : https://www.franceinter.fr/emissions/le-7-9/le-7-9-27-juin-2016', 
 352             'timestamp': 1467011958, 
 353             'upload_date': '20160627', 
 354             'uploader': 'France Inter', 
 355             'uploader_id': 'x2q2ez', 
 357         'add_ie': ['Dailymotion'], 
 359         'url': 'http://france3-regions.francetvinfo.fr/limousin/emissions/jt-1213-limousin', 
 360         'only_matching': True, 
 363     def _real_extract(self
, url
): 
 364         display_id 
= self
._match
_id
(url
) 
 366         webpage 
= self
._download
_webpage
(url
, display_id
) 
 368         dailymotion_urls 
= DailymotionIE
._extract
_urls
(webpage
) 
 370             return self
.playlist_result([ 
 371                 self
.url_result(dailymotion_url
, DailymotionIE
.ie_key()) 
 372                 for dailymotion_url 
in dailymotion_urls
]) 
 374         video_id 
= self
._search
_regex
( 
 375             (r
'player\.load[^;]+src:\s*["\']([^
"\']+)', 
 376              r'id-video=([^@]+@[^"]+)', 
 377              r'<a
[^
>]+href
="(?:https?:)?//videos\.francetv\.fr/video/([^@]+@[^"]+)"'), 
 380         return self._make_url_result(video_id) 
 383 class FranceTVInfoSportIE(FranceTVBaseInfoExtractor): 
 384     IE_NAME = 'sport.francetvinfo.fr' 
 385     _VALID_URL = r'https?://sport\.francetvinfo\.fr/(?:[^/]+/)*(?P<id>[^/?#&]+)' 
 387         'url': 'https://sport.francetvinfo.fr/les-jeux-olympiques/retour-sur-les-meilleurs-moments-de-pyeongchang-2018', 
 389             'id': '6e49080e-3f45-11e8-b459-000d3a2439ea', 
 391             'title': 'Retour sur les meilleurs moments de Pyeongchang 2018', 
 392             'timestamp': 1523639962, 
 393             'upload_date': '20180413', 
 396             'skip_download': True, 
 398         'add_ie': [FranceTVIE.ie_key()], 
 401     def _real_extract(self, url): 
 402         display_id = self._match_id(url) 
 403         webpage = self._download_webpage(url, display_id) 
 404         video_id = self._search_regex(r'data-video="([^
"]+)"', webpage, 'video_id
') 
 405         return self._make_url_result(video_id, 'Sport
-web
') 
 408 class GenerationWhatIE(InfoExtractor): 
 409     IE_NAME = 'france2
.fr
:generation
-what
' 
 410     _VALID_URL = r'https?
://generation
-what\
.francetv\
.fr
/[^
/]+/video
/(?P
<id>[^
/?
#&]+)' 
 413         'url': 'http://generation-what.francetv.fr/portrait/video/present-arms', 
 417             'title': 'Generation What - Garde à vous - FRA', 
 418             'uploader': 'Generation What', 
 419             'uploader_id': 'UCHH9p1eetWCgt4kXBYCb3_w', 
 420             'upload_date': '20160411', 
 423             'skip_download': True, 
 425         'add_ie': ['Youtube'], 
 427         'url': 'http://generation-what.francetv.fr/europe/video/present-arms', 
 428         'only_matching': True, 
 431     def _real_extract(self
, url
): 
 432         display_id 
= self
._match
_id
(url
) 
 434         webpage 
= self
._download
_webpage
(url
, display_id
) 
 436         youtube_id 
= self
._search
_regex
( 
 437             r
"window\.videoURL\s*=\s*'([0-9A-Za-z_-]{11})';", 
 438             webpage
, 'youtube id') 
 440         return self
.url_result(youtube_id
, ie
='Youtube', video_id
=youtube_id
) 
 443 class CultureboxIE(FranceTVBaseInfoExtractor
): 
 444     _VALID_URL 
= r
'https?://(?:m\.)?culturebox\.francetvinfo\.fr/(?:[^/]+/)*(?P<id>[^/?#&]+)' 
 447         'url': 'https://culturebox.francetvinfo.fr/opera-classique/musique-classique/c-est-baroque/concerts/cantates-bwv-4-106-et-131-de-bach-par-raphael-pichon-57-268689', 
 451             'title': 'Cantates BWV 4, 106 et 131 de Bach par Raphaël Pichon 5/7', 
 452             'description': 'md5:19c44af004b88219f4daa50fa9a351d4', 
 453             'upload_date': '20180206', 
 454             'timestamp': 1517945220, 
 458             'skip_download': True, 
 460         'add_ie': [FranceTVIE
.ie_key()], 
 463     def _real_extract(self
, url
): 
 464         display_id 
= self
._match
_id
(url
) 
 466         webpage 
= self
._download
_webpage
(url
, display_id
) 
 468         if ">Ce live n'est plus disponible en replay<" in webpage
: 
 469             raise ExtractorError( 
 470                 'Video %s is not available' % display_id
, expected
=True) 
 472         video_id
, catalogue 
= self
._search
_regex
( 
 473             r
'["\'>]https?
://videos\
.francetv\
.fr
/video
/([^
@]+@.+?
)["\'<]', 
 474             webpage, 'video id').split('@') 
 476         return self._make_url_result(video_id, catalogue) 
 479 class FranceTVJeunesseIE(FranceTVBaseInfoExtractor): 
 480     _VALID_URL = r'(?P<url>https?://(?:www\.)?(?:zouzous|ludo)\.fr/heros/(?P<id>[^/?#&]+))' 
 483         'url': 'https://www.zouzous.fr/heros/simon', 
 489         'url': 'https://www.ludo.fr/heros/ninjago', 
 493         'playlist_count': 10, 
 495         'url': 'https://www.zouzous.fr/heros/simon?abc', 
 496         'only_matching': True, 
 499     def _real_extract(self, url): 
 500         mobj = re.match(self._VALID_URL, url) 
 501         playlist_id = mobj.group('id') 
 503         playlist = self._download_json( 
 504             '%s/%s' % (mobj.group('url'), 'playlist'), playlist_id) 
 506         if not playlist.get('count'): 
 507             raise ExtractorError( 
 508                 '%s is not available' % playlist_id, expected=True) 
 511         for item in playlist['items']: 
 512             identity = item.get('identity') 
 513             if identity and isinstance(identity, compat_str): 
 514                 entries.append(self._make_url_result(identity)) 
 516         return self.playlist_result(entries, playlist_id)