gazeta.py 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. from .common import InfoExtractor
  2. class GazetaIE(InfoExtractor):
  3. _VALID_URL = r'(?P<url>https?://(?:www\.)?gazeta\.ru/(?:[^/]+/)?video/(?:main/)*(?:\d{4}/\d{2}/\d{2}/)?(?P<id>[A-Za-z0-9-_.]+)\.s?html)'
  4. _TESTS = [{
  5. 'url': 'http://www.gazeta.ru/video/main/zadaite_vopros_vladislavu_yurevichu.shtml',
  6. 'md5': 'd49c9bdc6e5a7888f27475dc215ee789',
  7. 'info_dict': {
  8. 'id': '205566',
  9. 'ext': 'mp4',
  10. 'title': '«70–80 процентов гражданских в Донецке на грани голода»',
  11. 'description': 'md5:38617526050bd17b234728e7f9620a71',
  12. 'thumbnail': r're:^https?://.*\.jpg',
  13. },
  14. 'skip': 'video not found',
  15. }, {
  16. 'url': 'http://www.gazeta.ru/lifestyle/video/2015/03/08/master-klass_krasivoi_byt._delaem_vesennii_makiyazh.shtml',
  17. 'only_matching': True,
  18. }, {
  19. 'url': 'http://www.gazeta.ru/video/main/main/2015/06/22/platit_ili_ne_platit_po_isku_yukosa.shtml',
  20. 'md5': '37f19f78355eb2f4256ee1688359f24c',
  21. 'info_dict': {
  22. 'id': '252048',
  23. 'ext': 'mp4',
  24. 'title': '"Если по иску ЮКОСа придется платить, это будет большой удар по бюджету"',
  25. },
  26. 'add_ie': ['EaglePlatform'],
  27. }]
  28. def _real_extract(self, url):
  29. mobj = self._match_valid_url(url)
  30. display_id = mobj.group('id')
  31. embed_url = '%s?p=embed' % mobj.group('url')
  32. embed_page = self._download_webpage(
  33. embed_url, display_id, 'Downloading embed page')
  34. video_id = self._search_regex(
  35. r'<div[^>]*?class="eagleplayer"[^>]*?data-id="([^"]+)"', embed_page, 'video id')
  36. return self.url_result(
  37. 'eagleplatform:gazeta.media.eagleplatform.com:%s' % video_id, 'EaglePlatform')