firsttv.py 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. # encoding: utf-8
  2. from __future__ import unicode_literals
  3. import re
  4. from .common import InfoExtractor
  5. from ..utils import int_or_none
  6. class FirstTVIE(InfoExtractor):
  7. IE_NAME = 'firsttv'
  8. IE_DESC = 'Видеоархив - Первый канал'
  9. _VALID_URL = r'http://(?:www\.)?1tv\.ru/videoarchive/(?P<id>\d+)'
  10. _TEST = {
  11. 'url': 'http://www.1tv.ru/videoarchive/73390',
  12. 'md5': '3de6390cf0cca4a5eae1d1d83895e5ad',
  13. 'info_dict': {
  14. 'id': '73390',
  15. 'ext': 'mp4',
  16. 'title': 'Олимпийские канатные дороги',
  17. 'description': 'md5:cc730d2bf4215463e37fff6a1e277b13',
  18. 'thumbnail': 'http://img1.1tv.ru/imgsize640x360/PR20140210114657.JPG',
  19. 'duration': 149,
  20. }
  21. }
  22. def _real_extract(self, url):
  23. mobj = re.match(self._VALID_URL, url)
  24. video_id = mobj.group('id')
  25. webpage = self._download_webpage(url, video_id, 'Downloading page')
  26. video_url = self._html_search_regex(
  27. r'''(?s)jwplayer\('flashvideoportal_1'\).setup\({.*?'file': '([^']+)'.*?}\);''', webpage, 'video URL')
  28. title = self._html_search_regex(
  29. r'<div class="tv_translation">\s*<h1><a href="[^"]+">([^<]*)</a>', webpage, 'title')
  30. description = self._html_search_regex(
  31. r'<div class="descr">\s*<div>&nbsp;</div>\s*<p>([^<]*)</p></div>', webpage, 'description', fatal=False)
  32. thumbnail = self._og_search_thumbnail(webpage)
  33. duration = self._og_search_property('video:duration', webpage, 'video duration', fatal=False)
  34. like_count = self._html_search_regex(r'title="Понравилось".*?/></label> \[(\d+)\]',
  35. webpage, 'like count', fatal=False)
  36. dislike_count = self._html_search_regex(r'title="Не понравилось".*?/></label> \[(\d+)\]',
  37. webpage, 'dislike count', fatal=False)
  38. return {
  39. 'id': video_id,
  40. 'url': video_url,
  41. 'thumbnail': thumbnail,
  42. 'title': title,
  43. 'description': description,
  44. 'duration': int_or_none(duration),
  45. 'like_count': int_or_none(like_count),
  46. 'dislike_count': int_or_none(dislike_count),
  47. }