]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/sportdeutschland.py
2 from __future__
import unicode_literals
6 from .common
import InfoExtractor
15 class SportDeutschlandIE(InfoExtractor
):
16 _VALID_URL
= r
'https?://sportdeutschland\.tv/(?P<sport>[^/?#]+)/(?P<id>[^?#/]+)(?:$|[?#])'
18 'url': 'http://sportdeutschland.tv/badminton/live-li-ning-badminton-weltmeisterschaft-2014-kopenhagen',
20 'id': 'live-li-ning-badminton-weltmeisterschaft-2014-kopenhagen',
22 'title': 're:Li-Ning Badminton Weltmeisterschaft 2014 Kopenhagen',
23 'categories': ['Badminton'],
25 'thumbnail': 're:^https?://.*\.jpg$',
26 'description': 're:Die Badminton-WM 2014 aus Kopenhagen bei Sportdeutschland\.TV',
28 'upload_date': 're:^201408[23][0-9]$',
31 'skip_download': 'Live stream',
34 'url': 'http://sportdeutschland.tv/li-ning-badminton-wm-2014/lee-li-ning-badminton-weltmeisterschaft-2014-kopenhagen-herren-einzel-wei-vs',
36 'id': 'lee-li-ning-badminton-weltmeisterschaft-2014-kopenhagen-herren-einzel-wei-vs',
38 'upload_date': '20140825',
39 'description': 'md5:60a20536b57cee7d9a4ec005e8687504',
40 'timestamp': 1408976060,
41 'title': 'Li-Ning Badminton Weltmeisterschaft 2014 Kopenhagen: Herren Einzel, Wei Lee vs. Keun Lee',
42 'thumbnail': 're:^https?://.*\.jpg$',
44 'categories': ['Li-Ning Badminton WM 2014'],
48 def _real_extract(self
, url
):
49 mobj
= re
.match(self
._VALID
_URL
, url
)
50 video_id
= mobj
.group('id')
51 sport_id
= mobj
.group('sport')
53 api_url
= 'http://splink.tv/api/permalinks/%s/%s' % (
55 req
= compat_urllib_request
.Request(api_url
, headers
={
56 'Accept': 'application/vnd.vidibus.v2.html+json',
59 data
= self
._download
_json
(req
, video_id
)
61 categories
= list(data
.get('section', {}).get('tags', {}).values())
63 assets_info
= self
._download
_json
(asset
['url'], video_id
)
66 smil_url
= assets_info
['video']
67 if '.smil' in smil_url
:
68 m3u8_url
= smil_url
.replace('.smil', '.m3u8')
70 self
._extract
_m
3u8_formats
(m3u8_url
, video_id
, ext
='mp4'))
72 smil_doc
= self
._download
_xml
(
73 smil_url
, video_id
, note
='Downloading SMIL metadata')
74 base_url
= smil_doc
.find('./head/meta').attrib
['base']
78 'play_path': n
.attrib
['src'],
81 'format_note': 'Seems to fail at example stream',
82 } for n
in smil_doc
.findall('./body/video')])
84 formats
.append({'url': smil_url
})
86 self
._sort
_formats
(formats
)
91 'title': asset
['title'],
92 'thumbnail': asset
.get('image'),
93 'description': asset
.get('teaser'),
94 'categories': categories
,
95 'view_count': asset
.get('views'),
96 'rtmp_live': asset
.get('live'),
97 'timestamp': parse_iso8601(asset
.get('date')),