]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/dreisat.py
0040e70d4929828ebf2dc7dc74199ed639dcfebd
1 from __future__
import unicode_literals
8 class DreiSatIE(ZDFIE
):
10 _VALID_URL
= r
'(?:https?://)?(?:www\.)?3sat\.de/mediathek/(?:index\.php|mediathek\.php)?\?(?:(?:mode|display)=[^&]+&)*obj=(?P<id>[0-9]+)$'
13 'url': 'http://www.3sat.de/mediathek/index.php?mode=play&obj=45918',
14 'md5': 'be37228896d30a88f315b638900a026e',
18 'title': 'Waidmannsheil',
19 'description': 'md5:cce00ca1d70e21425e72c86a98a56817',
21 'upload_date': '20140913'
25 'url': 'http://www.3sat.de/mediathek/mediathek.php?mode=play&obj=51066',
26 'only_matching': True,
30 def _real_extract(self
, url
):
31 mobj
= re
.match(self
._VALID
_URL
, url
)
32 video_id
= mobj
.group('id')
33 details_url
= 'http://www.3sat.de/mediathek/xmlservice/web/beitragsDetails?ak=web&id=%s' % video_id
34 return self
.extract_from_xml_url(video_id
, details_url
)