srmediathek.py 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. from .ard import ARDMediathekBaseIE
  2. from ..utils import (
  3. ExtractorError,
  4. get_element_by_attribute,
  5. )
  6. class SRMediathekIE(ARDMediathekBaseIE):
  7. IE_NAME = 'sr:mediathek'
  8. IE_DESC = 'Saarländischer Rundfunk'
  9. _VALID_URL = r'https?://sr-mediathek(?:\.sr-online)?\.de/index\.php\?.*?&id=(?P<id>[0-9]+)'
  10. _TESTS = [{
  11. 'url': 'http://sr-mediathek.sr-online.de/index.php?seite=7&id=28455',
  12. 'info_dict': {
  13. 'id': '28455',
  14. 'ext': 'mp4',
  15. 'title': 'sportarena (26.10.2014)',
  16. 'description': 'Ringen: KSV Köllerbach gegen Aachen-Walheim; Frauen-Fußball: 1. FC Saarbrücken gegen Sindelfingen; Motorsport: Rallye in Losheim; dazu: Interview mit Timo Bernhard; Turnen: TG Saar; Reitsport: Deutscher Voltigier-Pokal; Badminton: Interview mit Michael Fuchs ',
  17. 'thumbnail': r're:^https?://.*\.jpg$',
  18. },
  19. 'skip': 'no longer available',
  20. }, {
  21. 'url': 'http://sr-mediathek.sr-online.de/index.php?seite=7&id=37682',
  22. 'info_dict': {
  23. 'id': '37682',
  24. 'ext': 'mp4',
  25. 'title': 'Love, Cakes and Rock\'n\'Roll',
  26. 'description': 'md5:18bf9763631c7d326c22603681e1123d',
  27. },
  28. 'params': {
  29. # m3u8 download
  30. 'skip_download': True,
  31. },
  32. }, {
  33. 'url': 'http://sr-mediathek.de/index.php?seite=7&id=7480',
  34. 'only_matching': True,
  35. }]
  36. def _real_extract(self, url):
  37. video_id = self._match_id(url)
  38. webpage = self._download_webpage(url, video_id)
  39. if '>Der gew&uuml;nschte Beitrag ist leider nicht mehr verf&uuml;gbar.<' in webpage:
  40. raise ExtractorError('Video %s is no longer available' % video_id, expected=True)
  41. media_collection_url = self._search_regex(
  42. r'data-mediacollection-ardplayer="([^"]+)"', webpage, 'media collection url')
  43. info = self._extract_media_info(media_collection_url, webpage, video_id)
  44. info.update({
  45. 'id': video_id,
  46. 'title': get_element_by_attribute('class', 'ardplayer-title', webpage),
  47. 'description': self._og_search_description(webpage),
  48. 'thumbnail': self._og_search_thumbnail(webpage),
  49. })
  50. return info