2 from __future__ 
import unicode_literals
 
   6 from .common 
import InfoExtractor
 
   9     compat_urllib_parse_urlparse
, 
  14     get_element_by_attribute
, 
  19 # There are different sources of video in arte.tv, the extraction process 
  20 # is different for each one. The videos usually expire in 7 days, so we can't 
  24 class ArteTvIE(InfoExtractor
): 
  25     _VALID_URL 
= r
'http://videos\.arte\.tv/(?P<lang>fr|de)/.*-(?P<id>.*?)\.html' 
  28     def _real_extract(self
, url
): 
  29         mobj 
= re
.match(self
._VALID
_URL
, url
) 
  30         lang 
= mobj
.group('lang') 
  31         video_id 
= mobj
.group('id') 
  33         ref_xml_url 
= url
.replace('/videos/', '/do_delegate/videos/') 
  34         ref_xml_url 
= ref_xml_url
.replace('.html', ',view,asPlayerXml.xml') 
  35         ref_xml_doc 
= self
._download
_xml
( 
  36             ref_xml_url
, video_id
, note
='Downloading metadata') 
  37         config_node 
= find_xpath_attr(ref_xml_doc
, './/video', 'lang', lang
) 
  38         config_xml_url 
= config_node
.attrib
['ref'] 
  39         config 
= self
._download
_xml
( 
  40             config_xml_url
, video_id
, note
='Downloading configuration') 
  43             'format_id': q
.attrib
['quality'], 
  44             # The playpath starts at 'mp4:', if we don't manually 
  45             # split the url, rtmpdump will incorrectly parse them 
  46             'url': q
.text
.split('mp4:', 1)[0], 
  47             'play_path': 'mp4:' + q
.text
.split('mp4:', 1)[1], 
  49             'quality': 2 if q
.attrib
['quality'] == 'hd' else 1, 
  50         } for q 
in config
.findall('./urls/url')] 
  51         self
._sort
_formats
(formats
) 
  53         title 
= config
.find('.//name').text
 
  54         thumbnail 
= config
.find('.//firstThumbnailUrl').text
 
  58             'thumbnail': thumbnail
, 
  63 class ArteTVPlus7IE(InfoExtractor
): 
  64     IE_NAME 
= 'arte.tv:+7' 
  65     _VALID_URL 
= r
'https?://(?:www\.)?arte\.tv/guide/(?P<lang>fr|de)/(?:(?:sendungen|emissions)/)?(?P<id>.*?)/(?P<name>.*?)(\?.*)?' 
  68     def _extract_url_info(cls
, url
): 
  69         mobj 
= re
.match(cls
._VALID
_URL
, url
) 
  70         lang 
= mobj
.group('lang') 
  71         # This is not a real id, it can be for example AJT for the news 
  72         # http://www.arte.tv/guide/fr/emissions/AJT/arte-journal 
  73         video_id 
= mobj
.group('id') 
  76     def _real_extract(self
, url
): 
  77         video_id
, lang 
= self
._extract
_url
_info
(url
) 
  78         webpage 
= self
._download
_webpage
(url
, video_id
) 
  79         return self
._extract
_from
_webpage
(webpage
, video_id
, lang
) 
  81     def _extract_from_webpage(self
, webpage
, video_id
, lang
): 
  82         json_url 
= self
._html
_search
_regex
( 
  83             [r
'arte_vp_url=["\'](.*?
)["\']', r'data-url=["\']([^
"]+)["\']'], 
  84             webpage, 'json vp url
', default=None) 
  86             iframe_url = self._html_search_regex( 
  87                 r'<iframe
[^
>]+src
=(["\'])(?P<url>.+\bjson_url=.+?)\1', 
  88                 webpage, 'iframe url', group='url') 
  89             json_url = compat_parse_qs( 
  90                 compat_urllib_parse_urlparse(iframe_url).query)['json_url'][0] 
  91         return self._extract_from_json_url(json_url, video_id, lang) 
  93     def _extract_from_json_url(self, json_url, video_id, lang): 
  94         info = self._download_json(json_url, video_id) 
  95         player_info = info['videoJsonPlayer'] 
  97         upload_date_str = player_info.get('shootingDate') 
  98         if not upload_date_str: 
  99             upload_date_str = player_info.get('VDA', '').split(' ')[0] 
 101         title = player_info['VTI'].strip() 
 102         subtitle = player_info.get('VSU', '').strip() 
 104             title += ' - %s' % subtitle 
 107             'id': player_info['VID'], 
 109             'description': player_info.get('VDE'), 
 110             'upload_date': unified_strdate(upload_date_str), 
 111             'thumbnail': player_info.get('programImage') or player_info.get('VTU', {}).get('IUR'), 
 113         qfunc = qualities(['HQ', 'MQ', 'EQ', 'SQ']) 
 116         for format_id, format_dict in player_info['VSR'].items(): 
 117             f = dict(format_dict) 
 118             versionCode = f.get('versionCode') 
 124             lang_rexs = [r'VO?%s' % langcode, r'VO?.-ST%s' % langcode] 
 126                 None if versionCode is None else ( 
 127                     10 if any(re.match(r, versionCode) for r in lang_rexs) 
 130             if versionCode is not None: 
 131                 # The original version with subtitles has lower relevance 
 132                 if re.match(r'VO-ST(F|A)', versionCode): 
 134                 # The version with sourds/mal subtitles has also lower relevance 
 135                 elif re.match(r'VO?(F|A)-STM\1', versionCode): 
 138                 'format_id': format_id, 
 139                 'preference': -10 if f.get('videoFormat') == 'M3U8' else None, 
 140                 'language_preference': lang_pref, 
 141                 'format_note': '%s, %s' % (f.get('versionCode'), f.get('versionLibelle')), 
 142                 'width': int_or_none(f.get('width')), 
 143                 'height': int_or_none(f.get('height')), 
 144                 'tbr': int_or_none(f.get('bitrate')), 
 145                 'quality': qfunc(f.get('quality')), 
 146                 'source_preference': source_pref, 
 149             if f.get('mediaType') == 'rtmp': 
 150                 format['url'] = f['streamer'] 
 151                 format['play_path'] = 'mp4:' + f['url'] 
 152                 format['ext'] = 'flv' 
 154                 format['url'] = f['url'] 
 156             formats.append(format) 
 158         self._check_formats(formats, video_id) 
 159         self._sort_formats(formats) 
 161         info_dict['formats'] = formats 
 165 # It also uses the arte_vp_url url from the webpage to extract the information 
 166 class ArteTVCreativeIE(ArteTVPlus7IE): 
 167     IE_NAME = 'arte.tv:creative' 
 168     _VALID_URL = r'https?://creative\.arte\.tv/(?P<lang>fr|de)/(?:magazine?/)?(?P<id>[^?#]+)' 
 171         'url': 'http://creative.arte.tv/de/magazin/agentur-amateur-corporate-design', 
 175             'title': 'Folge 2 - Corporate Design', 
 176             'upload_date': '20131004', 
 179         'url': 'http://creative.arte.tv/fr/Monty-Python-Reunion', 
 183             'title': 'Monty Python live (mostly)', 
 184             'description': 'Événement ! Quarante-cinq ans après leurs premiers succès, les légendaires Monty Python remontent sur scène.\n', 
 185             'upload_date': '20140805', 
 190 class ArteTVFutureIE(ArteTVPlus7IE): 
 191     IE_NAME = 'arte.tv:future' 
 192     _VALID_URL = r'https?://future\.arte\.tv/(?P<lang>fr|de)/(thema|sujet)/.*?#article-anchor-(?P<id>\d+)' 
 195         'url': 'http://future.arte.tv/fr/sujet/info-sciences#article-anchor-7081', 
 199             'title': 'Les champignons au secours de la planète', 
 200             'upload_date': '20131101', 
 204     def _real_extract(self, url): 
 205         anchor_id, lang = self._extract_url_info(url) 
 206         webpage = self._download_webpage(url, anchor_id) 
 207         row = self._search_regex( 
 208             r'(?s)id="%s"[^>]*>.+?(<div[^>]*arte_vp_url[^>]*>)' % anchor_id, 
 210         return self._extract_from_webpage(row, anchor_id, lang) 
 213 class ArteTVDDCIE(ArteTVPlus7IE): 
 214     IE_NAME = 'arte.tv:ddc' 
 215     _VALID_URL = r'https?://ddc\.arte\.tv/(?P<lang>emission|folge)/(?P<id>.+)' 
 217     def _real_extract(self, url): 
 218         video_id, lang = self._extract_url_info(url) 
 221         elif lang == 'emission': 
 223         webpage = self._download_webpage(url, video_id) 
 224         scriptElement = get_element_by_attribute('class', 'visu_video_block', webpage) 
 225         script_url = self._html_search_regex(r'src="(.*?
)"', scriptElement, 'script url') 
 226         javascriptPlayerGenerator = self._download_webpage(script_url, video_id, 'Download javascript player generator') 
 227         json_url = self._search_regex(r"json_url
=(.*)&rendering_place
.*", javascriptPlayerGenerator, 'json url') 
 228         return self._extract_from_json_url(json_url, video_id, lang) 
 231 class ArteTVConcertIE(ArteTVPlus7IE): 
 232     IE_NAME = 'arte.tv:concert' 
 233     _VALID_URL = r'https?://concert\.arte\.tv/(?P<lang>de|fr)/(?P<id>.+)' 
 236         'url': 'http://concert.arte.tv/de/notwist-im-pariser-konzertclub-divan-du-monde', 
 237         'md5': '9ea035b7bd69696b67aa2ccaaa218161', 
 241             'title': 'The Notwist im Pariser Konzertclub "Divan du Monde
"', 
 242             'upload_date': '20140128', 
 243             'description': 'md5:486eb08f991552ade77439fe6d82c305', 
 248 class ArteTVEmbedIE(ArteTVPlus7IE): 
 249     IE_NAME = 'arte.tv:embed' 
 250     _VALID_URL = r'''(?x) 
 252         /playerv2/embed\.php\?json_url= 
 254             http://arte\.tv/papi/tvguide/videos/stream/player/ 
 255             (?P<lang>[^/]+)/(?P<id>[^/]+)[^&]* 
 259     def _real_extract(self, url): 
 260         mobj = re.match(self._VALID_URL, url) 
 261         video_id = mobj.group('id') 
 262         lang = mobj.group('lang') 
 263         json_url = mobj.group('json_url') 
 264         return self._extract_from_json_url(json_url, video_id, lang)