logo

youtube-dl

[mirror] Download/Watch videos from video hostersgit clone https://hacktivis.me/git/mirror/youtube-dl.git

srmediathek.py (2324B)


  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. from .ard import ARDMediathekBaseIE
  4. from ..utils import (
  5. ExtractorError,
  6. get_element_by_attribute,
  7. )
  8. class SRMediathekIE(ARDMediathekBaseIE):
  9. IE_NAME = 'sr:mediathek'
  10. IE_DESC = 'Saarländischer Rundfunk'
  11. _VALID_URL = r'https?://sr-mediathek(?:\.sr-online)?\.de/index\.php\?.*?&id=(?P<id>[0-9]+)'
  12. _TESTS = [{
  13. 'url': 'http://sr-mediathek.sr-online.de/index.php?seite=7&id=28455',
  14. 'info_dict': {
  15. 'id': '28455',
  16. 'ext': 'mp4',
  17. 'title': 'sportarena (26.10.2014)',
  18. '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 ',
  19. 'thumbnail': r're:^https?://.*\.jpg$',
  20. },
  21. 'skip': 'no longer available',
  22. }, {
  23. 'url': 'http://sr-mediathek.sr-online.de/index.php?seite=7&id=37682',
  24. 'info_dict': {
  25. 'id': '37682',
  26. 'ext': 'mp4',
  27. 'title': 'Love, Cakes and Rock\'n\'Roll',
  28. 'description': 'md5:18bf9763631c7d326c22603681e1123d',
  29. },
  30. 'params': {
  31. # m3u8 download
  32. 'skip_download': True,
  33. },
  34. }, {
  35. 'url': 'http://sr-mediathek.de/index.php?seite=7&id=7480',
  36. 'only_matching': True,
  37. }]
  38. def _real_extract(self, url):
  39. video_id = self._match_id(url)
  40. webpage = self._download_webpage(url, video_id)
  41. if '>Der gew&uuml;nschte Beitrag ist leider nicht mehr verf&uuml;gbar.<' in webpage:
  42. raise ExtractorError('Video %s is no longer available' % video_id, expected=True)
  43. media_collection_url = self._search_regex(
  44. r'data-mediacollection-ardplayer="([^"]+)"', webpage, 'media collection url')
  45. info = self._extract_media_info(media_collection_url, webpage, video_id)
  46. info.update({
  47. 'id': video_id,
  48. 'title': get_element_by_attribute('class', 'ardplayer-title', webpage),
  49. 'description': self._og_search_description(webpage),
  50. 'thumbnail': self._og_search_thumbnail(webpage),
  51. })
  52. return info