zapiks.py 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. import re
  4. from .common import InfoExtractor
  5. from ..utils import (
  6. parse_duration,
  7. parse_iso8601,
  8. xpath_with_ns,
  9. xpath_text,
  10. int_or_none,
  11. )
  12. class ZapiksIE(InfoExtractor):
  13. _VALID_URL = r'https?://(?:www\.)?zapiks\.fr/(?:(?P<display_id>.+?)\.html|index\.php\?.*\bmedia_id=(?P<id>\d+))'
  14. _TESTS = [
  15. {
  16. 'url': 'http://www.zapiks.fr/ep2s3-bon-appetit-eh-be-viva.html',
  17. 'md5': 'aeb3c473b2d564b2d46d664d28d5f050',
  18. 'info_dict': {
  19. 'id': '80798',
  20. 'ext': 'mp4',
  21. 'title': 'EP2S3 - Bon Appétit - Eh bé viva les pyrénées con!',
  22. 'description': 'md5:7054d6f6f620c6519be1fe710d4da847',
  23. 'thumbnail': 're:^https?://.*\.jpg$',
  24. 'duration': 528,
  25. 'timestamp': 1359044972,
  26. 'upload_date': '20130124',
  27. 'view_count': int,
  28. 'comment_count': int,
  29. },
  30. },
  31. {
  32. 'url': 'http://www.zapiks.fr/index.php?action=playerIframe&amp;media_id=118046&amp;width=640&amp;height=360&amp;autoStart=false&amp;language=fr',
  33. 'only_matching': True,
  34. },
  35. ]
  36. def _real_extract(self, url):
  37. mobj = re.match(self._VALID_URL, url)
  38. video_id = mobj.group('id')
  39. display_id = mobj.group('display_id') or video_id
  40. webpage = self._download_webpage(url, display_id)
  41. if not video_id:
  42. video_id = self._search_regex(
  43. r'data-media-id="(\d+)"', webpage, 'video id')
  44. playlist = self._download_xml(
  45. 'http://www.zapiks.fr/view/index.php?action=playlist&media_id=%s&lang=en' % video_id,
  46. display_id)
  47. NS_MAP = {
  48. 'jwplayer': 'http://rss.jwpcdn.com/'
  49. }
  50. def ns(path):
  51. return xpath_with_ns(path, NS_MAP)
  52. item = playlist.find('./channel/item')
  53. title = xpath_text(item, 'title', 'title') or self._og_search_title(webpage)
  54. description = self._og_search_description(webpage, default=None)
  55. thumbnail = xpath_text(
  56. item, ns('./jwplayer:image'), 'thumbnail') or self._og_search_thumbnail(webpage, default=None)
  57. duration = parse_duration(self._html_search_meta(
  58. 'duration', webpage, 'duration', default=None))
  59. timestamp = parse_iso8601(self._html_search_meta(
  60. 'uploadDate', webpage, 'upload date', default=None), ' ')
  61. view_count = int_or_none(self._search_regex(
  62. r'UserPlays:(\d+)', webpage, 'view count', default=None))
  63. comment_count = int_or_none(self._search_regex(
  64. r'UserComments:(\d+)', webpage, 'comment count', default=None))
  65. formats = []
  66. for source in item.findall(ns('./jwplayer:source')):
  67. format_id = source.attrib['label']
  68. f = {
  69. 'url': source.attrib['file'],
  70. 'format_id': format_id,
  71. }
  72. m = re.search(r'^(?P<height>\d+)[pP]', format_id)
  73. if m:
  74. f['height'] = int(m.group('height'))
  75. formats.append(f)
  76. self._sort_formats(formats)
  77. return {
  78. 'id': video_id,
  79. 'title': title,
  80. 'description': description,
  81. 'thumbnail': thumbnail,
  82. 'duration': duration,
  83. 'timestamp': timestamp,
  84. 'view_count': view_count,
  85. 'comment_count': comment_count,
  86. 'formats': formats,
  87. }