iprima.py 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. import re
  4. import time
  5. from .common import InfoExtractor
  6. from ..utils import (
  7. determine_ext,
  8. js_to_json,
  9. sanitized_Request,
  10. )
  11. class IPrimaIE(InfoExtractor):
  12. _VALID_URL = r'https?://play\.iprima\.cz/(?:.+/)?(?P<id>[^?#]+)'
  13. _TESTS = [{
  14. 'url': 'http://play.iprima.cz/gondici-s-r-o-33',
  15. 'info_dict': {
  16. 'id': 'p136534',
  17. 'ext': 'mp4',
  18. 'title': 'Gondíci s. r. o. (34)',
  19. 'description': 'md5:16577c629d006aa91f59ca8d8e7f99bd',
  20. },
  21. 'params': {
  22. 'skip_download': True, # m3u8 download
  23. },
  24. }, {
  25. 'url': 'http://play.iprima.cz/particka/particka-92',
  26. 'only_matching': True,
  27. }]
  28. def _real_extract(self, url):
  29. video_id = self._match_id(url)
  30. webpage = self._download_webpage(url, video_id)
  31. video_id = self._search_regex(r'data-product="([^"]+)">', webpage, 'real id')
  32. req = sanitized_Request(
  33. 'http://play.iprima.cz/prehravac/init?_infuse=1'
  34. '&_ts=%s&productId=%s' % (round(time.time()), video_id))
  35. req.add_header('Referer', url)
  36. playerpage = self._download_webpage(req, video_id, note='Downloading player')
  37. formats = []
  38. def extract_formats(format_url, format_key=None, lang=None):
  39. ext = determine_ext(format_url)
  40. new_formats = []
  41. if format_key == 'hls' or ext == 'm3u8':
  42. new_formats = self._extract_m3u8_formats(
  43. format_url, video_id, 'mp4', entry_protocol='m3u8_native',
  44. m3u8_id='hls', fatal=False)
  45. elif format_key == 'dash' or ext == 'mpd':
  46. return
  47. new_formats = self._extract_mpd_formats(
  48. format_url, video_id, mpd_id='dash', fatal=False)
  49. if lang:
  50. for f in new_formats:
  51. if not f.get('language'):
  52. f['language'] = lang
  53. formats.extend(new_formats)
  54. options = self._parse_json(
  55. self._search_regex(
  56. r'(?s)(?:TDIPlayerOptions|playerOptions)\s*=\s*({.+?});\s*\]\]',
  57. playerpage, 'player options', default='{}'),
  58. video_id, transform_source=js_to_json, fatal=False)
  59. if options:
  60. for key, tracks in options.get('tracks', {}).items():
  61. if not isinstance(tracks, list):
  62. continue
  63. for track in tracks:
  64. src = track.get('src')
  65. if src:
  66. extract_formats(src, key.lower(), track.get('lang'))
  67. if not formats:
  68. for _, src in re.findall(r'src["\']\s*:\s*(["\'])(.+?)\1', playerpage):
  69. extract_formats(src)
  70. if not formats and '>GEO_IP_NOT_ALLOWED<' in playerpage:
  71. self.raise_geo_restricted()
  72. self._sort_formats(formats)
  73. return {
  74. 'id': video_id,
  75. 'title': self._og_search_title(webpage),
  76. 'thumbnail': self._og_search_thumbnail(webpage),
  77. 'formats': formats,
  78. 'description': self._og_search_description(webpage),
  79. }