logo

youtube-dl

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

dreisat.py (1614B)


  1. from __future__ import unicode_literals
  2. from .zdf import ZDFIE
  3. class DreiSatIE(ZDFIE):
  4. IE_NAME = '3sat'
  5. _VALID_URL = r'https?://(?:www\.)?3sat\.de/(?:[^/]+/)*(?P<id>[^/?#&]+)\.html'
  6. _TESTS = [{
  7. # Same as https://www.zdf.de/dokumentation/ab-18/10-wochen-sommer-102.html
  8. 'url': 'https://www.3sat.de/film/ab-18/10-wochen-sommer-108.html',
  9. 'md5': '0aff3e7bc72c8813f5e0fae333316a1d',
  10. 'info_dict': {
  11. 'id': '141007_ab18_10wochensommer_film',
  12. 'ext': 'mp4',
  13. 'title': 'Ab 18! - 10 Wochen Sommer',
  14. 'description': 'md5:8253f41dc99ce2c3ff892dac2d65fe26',
  15. 'duration': 2660,
  16. 'timestamp': 1608604200,
  17. 'upload_date': '20201222',
  18. },
  19. }, {
  20. 'url': 'https://www.3sat.de/gesellschaft/schweizweit/waidmannsheil-100.html',
  21. 'info_dict': {
  22. 'id': '140913_sendung_schweizweit',
  23. 'ext': 'mp4',
  24. 'title': 'Waidmannsheil',
  25. 'description': 'md5:cce00ca1d70e21425e72c86a98a56817',
  26. 'timestamp': 1410623100,
  27. 'upload_date': '20140913'
  28. },
  29. 'params': {
  30. 'skip_download': True,
  31. }
  32. }, {
  33. # Same as https://www.zdf.de/filme/filme-sonstige/der-hauptmann-112.html
  34. 'url': 'https://www.3sat.de/film/spielfilm/der-hauptmann-100.html',
  35. 'only_matching': True,
  36. }, {
  37. # Same as https://www.zdf.de/wissen/nano/nano-21-mai-2019-102.html, equal media ids
  38. 'url': 'https://www.3sat.de/wissen/nano/nano-21-mai-2019-102.html',
  39. 'only_matching': True,
  40. }]