You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.5 KiB

10 years ago
9 years ago
  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. from .common import InfoExtractor
  4. from ..utils import (
  5. int_or_none,
  6. fix_xml_ampersands,
  7. )
  8. class BildIE(InfoExtractor):
  9. _VALID_URL = r'https?://(?:www\.)?bild\.de/(?:[^/]+/)+(?P<display_id>[^/]+)-(?P<id>\d+)(?:,auto=true)?\.bild\.html'
  10. IE_DESC = 'Bild.de'
  11. _TEST = {
  12. 'url': 'http://www.bild.de/video/clip/apple-ipad-air/das-koennen-die-neuen-ipads-38184146.bild.html',
  13. 'md5': 'dd495cbd99f2413502a1713a1156ac8a',
  14. 'info_dict': {
  15. 'id': '38184146',
  16. 'ext': 'mp4',
  17. 'title': 'BILD hat sie getestet',
  18. 'thumbnail': 're:^https?://.*\.jpg$',
  19. 'duration': 196,
  20. '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. ',
  21. }
  22. }
  23. def _real_extract(self, url):
  24. video_id = self._match_id(url)
  25. xml_url = url.split(".bild.html")[0] + ",view=xml.bild.xml"
  26. doc = self._download_xml(xml_url, video_id, transform_source=fix_xml_ampersands)
  27. duration = int_or_none(doc.attrib.get('duration'), scale=1000)
  28. return {
  29. 'id': video_id,
  30. 'title': doc.attrib['ueberschrift'],
  31. 'description': doc.attrib.get('text'),
  32. 'url': doc.attrib['src'],
  33. 'thumbnail': doc.attrib.get('img'),
  34. 'duration': duration,
  35. }