]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/arte.py
e7a91a1eb5e835c9b6e8bd9f16302a9bc7a8bf90
3 import xml
.etree
.ElementTree
5 from .common
import InfoExtractor
11 class ArteTvIE(InfoExtractor
):
13 There are two sources of video in arte.tv: videos.arte.tv and
14 www.arte.tv/guide, the extraction process is different for each one.
15 The videos expire in 7 days, so we can't add tests.
17 _EMISSION_URL
= r
'(?:http://)?www\.arte.tv/guide/(?P<lang>fr|de)/(?:(?:sendungen|emissions)/)?(?P<id>.*?)/(?P<name>.*?)(\?.*)?'
18 _VIDEOS_URL
= r
'(?:http://)?videos.arte.tv/(?P<lang>fr|de)/.*-(?P<id>.*?).html'
19 _LIVE_URL
= r
'index-[0-9]+\.html$'
24 def suitable(cls
, url
):
25 return any(re
.match(regex
, url
) for regex
in (cls
._EMISSION
_URL
, cls
._VIDEOS
_URL
))
27 # TODO implement Live Stream
28 # from ..utils import compat_urllib_parse
29 # def extractLiveStream(self, url):
30 # video_lang = url.split('/')[-4]
31 # info = self.grep_webpage(
33 # r'src="(.*?/videothek_js.*?\.js)',
36 # (1, 'url', u'Invalid URL: %s' % url)
39 # http_host = url.split('/')[2]
40 # next_url = 'http://%s%s' % (http_host, compat_urllib_parse.unquote(info.get('url')))
41 # info = self.grep_webpage(
43 # r'(s_artestras_scst_geoFRDE_' + video_lang + '.*?)\'.*?' +
44 # '(http://.*?\.swf).*?' +
48 # (1, 'path', u'could not extract video path: %s' % url),
49 # (2, 'player', u'could not extract video player: %s' % url),
50 # (3, 'url', u'could not extract video url: %s' % url)
53 # video_url = u'%s/%s' % (info.get('url'), info.get('path'))
55 def _real_extract(self
, url
):
56 mobj
= re
.match(self
._EMISSION
_URL
, url
)
58 lang
= mobj
.group('lang')
59 # This is not a real id, it can be for example AJT for the news
60 # http://www.arte.tv/guide/fr/emissions/AJT/arte-journal
61 video_id
= mobj
.group('id')
62 return self
._extract
_emission
(url
, video_id
, lang
)
64 mobj
= re
.match(self
._VIDEOS
_URL
, url
)
67 lang
= mobj
.group('lang')
68 return self
._extract
_video
(url
, id, lang
)
70 if re
.search(self
._LIVE
_URL
, video_id
) is not None:
71 raise ExtractorError(u
'Arte live streams are not yet supported, sorry')
72 # self.extractLiveStream(url)
75 def _extract_emission(self
, url
, video_id
, lang
):
76 """Extract from www.arte.tv/guide"""
77 webpage
= self
._download
_webpage
(url
, video_id
)
78 json_url
= self
._html
_search
_regex
(r
'arte_vp_url="(.*?)"', webpage
, 'json url')
80 json_info
= self
._download
_webpage
(json_url
, video_id
, 'Downloading info json')
81 self
.report_extraction(video_id
)
82 info
= json
.loads(json_info
)
83 player_info
= info
['videoJsonPlayer']
85 info_dict
= {'id': player_info
['VID'],
86 'title': player_info
['VTI'],
87 'description': player_info
['VDE'],
88 'upload_date': unified_strdate(player_info
['VDA'].split(' ')[0]),
89 'thumbnail': player_info
['programImage'],
93 formats
= player_info
['VSR'].values()
95 # Return true if that format is in the language of the url
100 regexes
= [r
'VO?%s' % l
, r
'V%s-ST.' % l
]
101 return any(re
.match(r
, f
['versionCode']) for r
in regexes
)
102 # Some formats may not be in the same language as the url
103 formats
= filter(_match_lang
, formats
)
104 # We order the formats by quality
105 formats
= sorted(formats
, key
=lambda f
: int(f
['height']))
106 # Pick the best quality
107 format_info
= formats
[-1]
108 if format_info
['mediaType'] == u
'rtmp':
109 info_dict
['url'] = format_info
['streamer']
110 info_dict
['play_path'] = 'mp4:' + format_info
['url']
112 info_dict
['url'] = format_info
['url']
116 def _extract_video(self
, url
, video_id
, lang
):
117 """Extract from videos.arte.tv"""
118 ref_xml_url
= url
.replace('/videos/', '/do_delegate/videos/')
119 ref_xml_url
= ref_xml_url
.replace('.html', ',view,asPlayerXml.xml')
120 ref_xml
= self
._download
_webpage
(ref_xml_url
, video_id
, note
=u
'Downloading metadata')
121 ref_xml_doc
= xml
.etree
.ElementTree
.fromstring(ref_xml
)
122 config_node
= ref_xml_doc
.find('.//video[@lang="%s"]' % lang
)
123 config_xml_url
= config_node
.attrib
['ref']
124 config_xml
= self
._download
_webpage
(config_xml_url
, video_id
, note
=u
'Downloading configuration')
126 video_urls
= list(re
.finditer(r
'<url quality="(?P<quality>.*?)">(?P<url>.*?)</url>', config_xml
))
128 quality
= m
.group('quality')
133 # We pick the best quality
134 video_urls
= sorted(video_urls
, key
=_key
)
135 video_url
= list(video_urls
)[-1].group('url')
137 title
= self
._html
_search
_regex
(r
'<name>(.*?)</name>', config_xml
, 'title')
138 thumbnail
= self
._html
_search
_regex
(r
'<firstThumbnailUrl>(.*?)</firstThumbnailUrl>',
139 config_xml
, 'thumbnail')
140 return {'id': video_id
,
142 'thumbnail': thumbnail
,