radiobremen.py 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. import re
  2. from .common import InfoExtractor
  3. from ..utils import parse_duration
  4. class RadioBremenIE(InfoExtractor):
  5. _VALID_URL = r'http?://(?:www\.)?radiobremen\.de/mediathek/(?:index\.html)?\?id=(?P<id>[0-9]+)'
  6. IE_NAME = 'radiobremen'
  7. _TEST = {
  8. 'url': 'http://www.radiobremen.de/mediathek/?id=141876',
  9. 'info_dict': {
  10. 'id': '141876',
  11. 'ext': 'mp4',
  12. 'duration': 178,
  13. 'width': 512,
  14. 'title': 'Druck auf Patrick Öztürk',
  15. 'thumbnail': r're:https?://.*\.jpg$',
  16. 'description': 'Gegen den SPD-Bürgerschaftsabgeordneten Patrick Öztürk wird wegen Beihilfe zum gewerbsmäßigen Betrug ermittelt. Am Donnerstagabend sollte er dem Vorstand des SPD-Unterbezirks Bremerhaven dazu Rede und Antwort stehen.',
  17. },
  18. }
  19. def _real_extract(self, url):
  20. video_id = self._match_id(url)
  21. meta_url = 'http://www.radiobremen.de/apps/php/mediathek/metadaten.php?id=%s' % video_id
  22. meta_doc = self._download_webpage(
  23. meta_url, video_id, 'Downloading metadata')
  24. title = self._html_search_regex(
  25. r'<h1.*>(?P<title>.+)</h1>', meta_doc, 'title')
  26. description = self._html_search_regex(
  27. r'<p>(?P<description>.*)</p>', meta_doc, 'description', fatal=False)
  28. duration = parse_duration(self._html_search_regex(
  29. r'L&auml;nge:</td>\s+<td>(?P<duration>[0-9]+:[0-9]+)</td>',
  30. meta_doc, 'duration', fatal=False))
  31. page_doc = self._download_webpage(
  32. url, video_id, 'Downloading video information')
  33. mobj = re.search(
  34. r"ardformatplayerclassic\(\'playerbereich\',\'(?P<width>[0-9]+)\',\'.*\',\'(?P<video_id>[0-9]+)\',\'(?P<secret>[0-9]+)\',\'(?P<thumbnail>.+)\',\'\'\)",
  35. page_doc)
  36. video_url = (
  37. "http://dl-ondemand.radiobremen.de/mediabase/%s/%s_%s_%s.mp4" %
  38. (video_id, video_id, mobj.group("secret"), mobj.group('width')))
  39. formats = [{
  40. 'url': video_url,
  41. 'ext': 'mp4',
  42. 'width': int(mobj.group('width')),
  43. }]
  44. return {
  45. 'id': video_id,
  46. 'title': title,
  47. 'description': description,
  48. 'duration': duration,
  49. 'formats': formats,
  50. 'thumbnail': mobj.group('thumbnail'),
  51. }