logo

youtube-dl

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

zapiks.py (3832B)


  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|com)/(?:(?:[a-z]{2}/)?(?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': r're:^https?://.*\.jpg$',
  24. 'duration': 528,
  25. 'timestamp': 1359044972,
  26. 'upload_date': '20130124',
  27. 'view_count': int,
  28. },
  29. },
  30. {
  31. 'url': 'http://www.zapiks.com/ep3s5-bon-appetit-baqueira-m-1.html',
  32. 'only_matching': True,
  33. },
  34. {
  35. 'url': 'http://www.zapiks.com/nl/ep3s5-bon-appetit-baqueira-m-1.html',
  36. 'only_matching': True,
  37. },
  38. {
  39. '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',
  40. 'only_matching': True,
  41. },
  42. ]
  43. def _real_extract(self, url):
  44. mobj = re.match(self._VALID_URL, url)
  45. video_id = mobj.group('id')
  46. display_id = mobj.group('display_id') or video_id
  47. webpage = self._download_webpage(url, display_id)
  48. if not video_id:
  49. video_id = self._search_regex(
  50. r'data-media-id="(\d+)"', webpage, 'video id')
  51. playlist = self._download_xml(
  52. 'http://www.zapiks.fr/view/index.php?action=playlist&media_id=%s&lang=en' % video_id,
  53. display_id)
  54. NS_MAP = {
  55. 'jwplayer': 'http://rss.jwpcdn.com/'
  56. }
  57. def ns(path):
  58. return xpath_with_ns(path, NS_MAP)
  59. item = playlist.find('./channel/item')
  60. title = xpath_text(item, 'title', 'title') or self._og_search_title(webpage)
  61. description = self._og_search_description(webpage, default=None)
  62. thumbnail = xpath_text(
  63. item, ns('./jwplayer:image'), 'thumbnail') or self._og_search_thumbnail(webpage, default=None)
  64. duration = parse_duration(self._html_search_meta(
  65. 'duration', webpage, 'duration', default=None))
  66. timestamp = parse_iso8601(self._html_search_meta(
  67. 'uploadDate', webpage, 'upload date', default=None), ' ')
  68. view_count = int_or_none(self._search_regex(
  69. r'UserPlays:(\d+)', webpage, 'view count', default=None))
  70. comment_count = int_or_none(self._search_regex(
  71. r'UserComments:(\d+)', webpage, 'comment count', default=None))
  72. formats = []
  73. for source in item.findall(ns('./jwplayer:source')):
  74. format_id = source.attrib['label']
  75. f = {
  76. 'url': source.attrib['file'],
  77. 'format_id': format_id,
  78. }
  79. m = re.search(r'^(?P<height>\d+)[pP]', format_id)
  80. if m:
  81. f['height'] = int(m.group('height'))
  82. formats.append(f)
  83. self._sort_formats(formats)
  84. return {
  85. 'id': video_id,
  86. 'title': title,
  87. 'description': description,
  88. 'thumbnail': thumbnail,
  89. 'duration': duration,
  90. 'timestamp': timestamp,
  91. 'view_count': view_count,
  92. 'comment_count': comment_count,
  93. 'formats': formats,
  94. }