]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/bild.py
[lecture2go] Support more formats
[yt-dlp.git] / youtube_dl / extractor / bild.py
CommitLineData
5f6a1245 1# coding: utf-8
b5a14350
PH
2from __future__ import unicode_literals
3
4from .common import InfoExtractor
c09593c0 5from ..utils import (
bc08873c 6 int_or_none,
7 fix_xml_ampersands,
c09593c0 8)
b5a14350
PH
9
10
11class BildIE(InfoExtractor):
12 _VALID_URL = r'https?://(?:www\.)?bild\.de/(?:[^/]+/)+(?P<display_id>[^/]+)-(?P<id>\d+)(?:,auto=true)?\.bild\.html'
13 IE_DESC = 'Bild.de'
14 _TEST = {
15 'url': 'http://www.bild.de/video/clip/apple-ipad-air/das-koennen-die-neuen-ipads-38184146.bild.html',
16 'md5': 'dd495cbd99f2413502a1713a1156ac8a',
17 'info_dict': {
18 'id': '38184146',
19 'ext': 'mp4',
20 'title': 'BILD hat sie getestet',
f22834a3 21 'thumbnail': 're:^https?://.*\.jpg$',
b5a14350
PH
22 'duration': 196,
23 'description': 'Mit dem iPad Air 2 und dem iPad Mini 3 hat Apple zwei neue Tablet-Modelle präsentiert. BILD-Reporter Sven Stein durfte die Geräte bereits testen. ',
24 }
25 }
26
27 def _real_extract(self, url):
28 video_id = self._match_id(url)
29
30 xml_url = url.split(".bild.html")[0] + ",view=xml.bild.xml"
c09593c0 31 doc = self._download_xml(xml_url, video_id, transform_source=fix_xml_ampersands)
b5a14350
PH
32
33 duration = int_or_none(doc.attrib.get('duration'), scale=1000)
34
35 return {
36 'id': video_id,
37 'title': doc.attrib['ueberschrift'],
38 'description': doc.attrib.get('text'),
39 'url': doc.attrib['src'],
40 'thumbnail': doc.attrib.get('img'),
41 'duration': duration,
42 }