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.

159 lines
5.4 KiB

  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. from .common import InfoExtractor
  4. from ..utils import (
  5. clean_html,
  6. int_or_none,
  7. parse_duration,
  8. update_url_query,
  9. str_or_none,
  10. )
  11. class UOLIE(InfoExtractor):
  12. IE_NAME = 'uol.com.br'
  13. _VALID_URL = r'https?://(?:.+?\.)?uol\.com\.br/.*?(?:(?:mediaId|v)=|view/(?:[a-z0-9]+/)?|video(?:=|/(?:\d{4}/\d{2}/\d{2}/)?))(?P<id>\d+|[\w-]+-[A-Z0-9]+)'
  14. _TESTS = [{
  15. 'url': 'http://player.mais.uol.com.br/player_video_v3.swf?mediaId=15951931',
  16. 'md5': '25291da27dc45e0afb5718a8603d3816',
  17. 'info_dict': {
  18. 'id': '15951931',
  19. 'ext': 'mp4',
  20. 'title': 'Miss simpatia é encontrada morta',
  21. 'description': 'md5:3f8c11a0c0556d66daf7e5b45ef823b2',
  22. }
  23. }, {
  24. 'url': 'http://tvuol.uol.com.br/video/incendio-destroi-uma-das-maiores-casas-noturnas-de-londres-04024E9A3268D4C95326',
  25. 'md5': 'e41a2fb7b7398a3a46b6af37b15c00c9',
  26. 'info_dict': {
  27. 'id': '15954259',
  28. 'ext': 'mp4',
  29. 'title': 'Incêndio destrói uma das maiores casas noturnas de Londres',
  30. 'description': 'Em Londres, um incêndio destruiu uma das maiores boates da cidade. Não há informações sobre vítimas.',
  31. }
  32. }, {
  33. 'url': 'http://mais.uol.com.br/static/uolplayer/index.html?mediaId=15951931',
  34. 'only_matching': True,
  35. }, {
  36. 'url': 'http://mais.uol.com.br/view/15954259',
  37. 'only_matching': True,
  38. }, {
  39. 'url': 'http://noticias.band.uol.com.br/brasilurgente/video/2016/08/05/15951931/miss-simpatia-e-encontrada-morta.html',
  40. 'only_matching': True,
  41. }, {
  42. 'url': 'http://videos.band.uol.com.br/programa.asp?e=noticias&pr=brasil-urgente&v=15951931&t=Policia-desmonte-base-do-PCC-na-Cracolandia',
  43. 'only_matching': True,
  44. }, {
  45. 'url': 'http://mais.uol.com.br/view/cphaa0gl2x8r/incendio-destroi-uma-das-maiores-casas-noturnas-de-londres-04024E9A3268D4C95326',
  46. 'only_matching': True,
  47. }, {
  48. 'url': 'http://noticias.uol.com.br//videos/assistir.htm?video=rafaela-silva-inspira-criancas-no-judo-04024D983968D4C95326',
  49. 'only_matching': True,
  50. }, {
  51. 'url': 'http://mais.uol.com.br/view/e0qbgxid79uv/15275470',
  52. 'only_matching': True,
  53. }]
  54. _FORMATS = {
  55. '2': {
  56. 'width': 640,
  57. 'height': 360,
  58. },
  59. '5': {
  60. 'width': 1280,
  61. 'height': 720,
  62. },
  63. '6': {
  64. 'width': 426,
  65. 'height': 240,
  66. },
  67. '7': {
  68. 'width': 1920,
  69. 'height': 1080,
  70. },
  71. '8': {
  72. 'width': 192,
  73. 'height': 144,
  74. },
  75. '9': {
  76. 'width': 568,
  77. 'height': 320,
  78. },
  79. '11': {
  80. 'width': 640,
  81. 'height': 360,
  82. }
  83. }
  84. def _real_extract(self, url):
  85. video_id = self._match_id(url)
  86. media_id = None
  87. if video_id.isdigit():
  88. media_id = video_id
  89. if not media_id:
  90. embed_page = self._download_webpage(
  91. 'https://jsuol.com.br/c/tv/uol/embed/?params=[embed,%s]' % video_id,
  92. video_id, 'Downloading embed page', fatal=False)
  93. if embed_page:
  94. media_id = self._search_regex(
  95. (r'uol\.com\.br/(\d+)', r'mediaId=(\d+)'),
  96. embed_page, 'media id', default=None)
  97. if not media_id:
  98. webpage = self._download_webpage(url, video_id)
  99. media_id = self._search_regex(r'mediaId=(\d+)', webpage, 'media id')
  100. video_data = self._download_json(
  101. 'http://mais.uol.com.br/apiuol/v3/player/getMedia/%s.json' % media_id,
  102. media_id)['item']
  103. title = video_data['title']
  104. query = {
  105. 'ver': video_data.get('numRevision', 2),
  106. 'r': 'http://mais.uol.com.br',
  107. }
  108. for k in ('token', 'sign'):
  109. v = video_data.get(k)
  110. if v:
  111. query[k] = v
  112. formats = []
  113. for f in video_data.get('formats', []):
  114. f_url = f.get('url') or f.get('secureUrl')
  115. if not f_url:
  116. continue
  117. f_url = update_url_query(f_url, query)
  118. format_id = str_or_none(f.get('id'))
  119. if format_id == '10':
  120. formats.extend(self._extract_m3u8_formats(
  121. f_url, video_id, 'mp4', 'm3u8_native',
  122. m3u8_id='hls', fatal=False))
  123. continue
  124. fmt = {
  125. 'format_id': format_id,
  126. 'url': f_url,
  127. 'source_preference': 1,
  128. }
  129. fmt.update(self._FORMATS.get(format_id, {}))
  130. formats.append(fmt)
  131. self._sort_formats(formats, ('height', 'width', 'source_preference', 'tbr', 'ext'))
  132. tags = []
  133. for tag in video_data.get('tags', []):
  134. tag_description = tag.get('description')
  135. if not tag_description:
  136. continue
  137. tags.append(tag_description)
  138. return {
  139. 'id': media_id,
  140. 'title': title,
  141. 'description': clean_html(video_data.get('desMedia')),
  142. 'thumbnail': video_data.get('thumbnail'),
  143. 'duration': int_or_none(video_data.get('durationSeconds')) or parse_duration(video_data.get('duration')),
  144. 'tags': tags,
  145. 'formats': formats,
  146. }