logo

youtube-dl

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

apa.py (3352B)


  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. import re
  4. from .common import InfoExtractor
  5. from ..utils import (
  6. determine_ext,
  7. int_or_none,
  8. url_or_none,
  9. )
  10. class APAIE(InfoExtractor):
  11. _VALID_URL = r'(?P<base_url>https?://[^/]+\.apa\.at)/embed/(?P<id>[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12})'
  12. _TESTS = [{
  13. 'url': 'http://uvp.apa.at/embed/293f6d17-692a-44e3-9fd5-7b178f3a1029',
  14. 'md5': '2b12292faeb0a7d930c778c7a5b4759b',
  15. 'info_dict': {
  16. 'id': '293f6d17-692a-44e3-9fd5-7b178f3a1029',
  17. 'ext': 'mp4',
  18. 'title': '293f6d17-692a-44e3-9fd5-7b178f3a1029',
  19. 'thumbnail': r're:^https?://.*\.jpg$',
  20. },
  21. }, {
  22. 'url': 'https://uvp-apapublisher.sf.apa.at/embed/2f94e9e6-d945-4db2-9548-f9a41ebf7b78',
  23. 'only_matching': True,
  24. }, {
  25. 'url': 'http://uvp-rma.sf.apa.at/embed/70404cca-2f47-4855-bbb8-20b1fae58f76',
  26. 'only_matching': True,
  27. }, {
  28. 'url': 'http://uvp-kleinezeitung.sf.apa.at/embed/f1c44979-dba2-4ebf-b021-e4cf2cac3c81',
  29. 'only_matching': True,
  30. }]
  31. @staticmethod
  32. def _extract_urls(webpage):
  33. return [
  34. mobj.group('url')
  35. for mobj in re.finditer(
  36. r'<iframe[^>]+\bsrc=(["\'])(?P<url>(?:https?:)?//[^/]+\.apa\.at/embed/[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12}.*?)\1',
  37. webpage)]
  38. def _real_extract(self, url):
  39. mobj = re.match(self._VALID_URL, url)
  40. video_id, base_url = mobj.group('id', 'base_url')
  41. webpage = self._download_webpage(
  42. '%s/player/%s' % (base_url, video_id), video_id)
  43. jwplatform_id = self._search_regex(
  44. r'media[iI]d\s*:\s*["\'](?P<id>[a-zA-Z0-9]{8})', webpage,
  45. 'jwplatform id', default=None)
  46. if jwplatform_id:
  47. return self.url_result(
  48. 'jwplatform:' + jwplatform_id, ie='JWPlatform',
  49. video_id=video_id)
  50. def extract(field, name=None):
  51. return self._search_regex(
  52. r'\b%s["\']\s*:\s*(["\'])(?P<value>(?:(?!\1).)+)\1' % field,
  53. webpage, name or field, default=None, group='value')
  54. title = extract('title') or video_id
  55. description = extract('description')
  56. thumbnail = extract('poster', 'thumbnail')
  57. formats = []
  58. for format_id in ('hls', 'progressive'):
  59. source_url = url_or_none(extract(format_id))
  60. if not source_url:
  61. continue
  62. ext = determine_ext(source_url)
  63. if ext == 'm3u8':
  64. formats.extend(self._extract_m3u8_formats(
  65. source_url, video_id, 'mp4', entry_protocol='m3u8_native',
  66. m3u8_id='hls', fatal=False))
  67. else:
  68. height = int_or_none(self._search_regex(
  69. r'(\d+)\.mp4', source_url, 'height', default=None))
  70. formats.append({
  71. 'url': source_url,
  72. 'format_id': format_id,
  73. 'height': height,
  74. })
  75. self._sort_formats(formats)
  76. return {
  77. 'id': video_id,
  78. 'title': title,
  79. 'description': description,
  80. 'thumbnail': thumbnail,
  81. 'formats': formats,
  82. }