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.

54 lines
2.3 KiB

  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. import re
  4. from .common import InfoExtractor
  5. class RadioBremenIE(InfoExtractor):
  6. _VALID_URL = r'http?://(?:www\.)?radiobremen\.de/mediathek/(index\.html)?\?id=(?P<video_id>[0-9]+)'
  7. IE_NAME = 'radiobremen'
  8. _TEST = {
  9. 'url': 'http://www.radiobremen.de/mediathek/index.html?id=114720',
  10. 'info_dict': {
  11. 'id': '114720',
  12. 'ext': 'mp4',
  13. 'width': 512,
  14. 'title': 'buten un binnen vom 22. Dezember',
  15. 'description': 'Unter anderem mit diesen Themen: 45 Flüchtlinge sind in Worpswede angekommen +++ Freies Internet für alle: Bremer arbeiten an einem flächendeckenden W-Lan-Netzwerk +++ Aktivisten kämpfen für das Unibad +++ So war das Wetter 2014 +++',
  16. },
  17. }
  18. def _real_extract(self, url):
  19. mobj = re.match(self._VALID_URL, url)
  20. video_id = mobj.group('video_id')
  21. meta_url = "http://www.radiobremen.de/apps/php/mediathek/metadaten.php?id=%s" % video_id
  22. meta_doc = self._download_webpage(meta_url, video_id, 'Downloading metadata')
  23. title = self._html_search_regex("<h1.*>(?P<title>.+)</h1>", meta_doc, "title")
  24. description = self._html_search_regex("<p>(?P<description>.*)</p>", meta_doc, "description")
  25. duration = self._html_search_regex("L&auml;nge:</td>\s+<td>(?P<duration>[0-9]+:[0-9]+)</td>", meta_doc, "duration")
  26. page_doc = self._download_webpage(url, video_id, 'Downloading video information')
  27. pattern = "ardformatplayerclassic\(\'playerbereich\',\'(?P<width>[0-9]+)\',\'.*\',\'(?P<video_id>[0-9]+)\',\'(?P<secret>[0-9]+)\',\'(?P<thumbnail>.+)\',\'\'\)"
  28. mobj = re.search(pattern, page_doc)
  29. width, video_id, secret, thumbnail = int(mobj.group("width")), mobj.group("video_id"), mobj.group("secret"), mobj.group("thumbnail")
  30. video_url = "http://dl-ondemand.radiobremen.de/mediabase/{:}/{:}_{:}_{:}.mp4".format(video_id, video_id, secret, width)
  31. return {
  32. 'id': video_id,
  33. 'title': title,
  34. 'description': description,
  35. 'duration': duration,
  36. 'formats': [
  37. {'url': video_url,
  38. 'ext': 'mp4',
  39. 'width': width,
  40. 'protocol': 'http'
  41. }
  42. ],
  43. 'thumbnail': thumbnail,
  44. }