You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
2.4 KiB

10 years ago
  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. from .common import InfoExtractor
  4. from ..compat import compat_urlparse
  5. from ..utils import (
  6. remove_start,
  7. sanitized_Request,
  8. )
  9. class EinthusanIE(InfoExtractor):
  10. _VALID_URL = r'https?://(?:www\.)?einthusan\.com/movies/watch.php\?([^#]*?)id=(?P<id>[0-9]+)'
  11. _TESTS = [
  12. {
  13. 'url': 'http://www.einthusan.com/movies/watch.php?id=2447',
  14. 'md5': 'af244f4458cd667205e513d75da5b8b1',
  15. 'info_dict': {
  16. 'id': '2447',
  17. 'ext': 'mp4',
  18. 'title': 'Ek Villain',
  19. 'thumbnail': 're:^https?://.*\.jpg$',
  20. 'description': 'md5:9d29fc91a7abadd4591fb862fa560d93',
  21. }
  22. },
  23. {
  24. 'url': 'http://www.einthusan.com/movies/watch.php?id=1671',
  25. 'md5': 'ef63c7a803e22315880ed182c10d1c5c',
  26. 'info_dict': {
  27. 'id': '1671',
  28. 'ext': 'mp4',
  29. 'title': 'Soodhu Kavvuum',
  30. 'thumbnail': 're:^https?://.*\.jpg$',
  31. 'description': 'md5:05d8a0c0281a4240d86d76e14f2f4d51',
  32. }
  33. },
  34. ]
  35. def _real_extract(self, url):
  36. video_id = self._match_id(url)
  37. request = sanitized_Request(url)
  38. request.add_header('User-Agent', 'Mozilla/5.0 (Windows NT 5.2; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0')
  39. webpage = self._download_webpage(request, video_id)
  40. title = self._html_search_regex(
  41. r'<h1><a[^>]+class=["\']movie-title["\'][^>]*>(.+?)</a></h1>',
  42. webpage, 'title')
  43. video_id = self._search_regex(
  44. r'data-movieid=["\'](\d+)', webpage, 'video id', default=video_id)
  45. video_url = self._download_webpage(
  46. 'http://cdn.einthusan.com/geturl/%s/hd/London,Washington,Toronto,Dallas,San,Sydney/'
  47. % video_id, video_id)
  48. description = self._html_search_meta('description', webpage)
  49. thumbnail = self._html_search_regex(
  50. r'''<a class="movie-cover-wrapper".*?><img src=["'](.*?)["'].*?/></a>''',
  51. webpage, "thumbnail url", fatal=False)
  52. if thumbnail is not None:
  53. thumbnail = compat_urlparse.urljoin(url, remove_start(thumbnail, '..'))
  54. return {
  55. 'id': video_id,
  56. 'title': title,
  57. 'url': video_url,
  58. 'thumbnail': thumbnail,
  59. 'description': description,
  60. }