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.

143 lines
4.9 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': 1080,
  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. }
  80. def _real_extract(self, url):
  81. video_id = self._match_id(url)
  82. media_id = None
  83. if video_id.isdigit():
  84. media_id = video_id
  85. if not media_id:
  86. embed_page = self._download_webpage(
  87. 'https://jsuol.com.br/c/tv/uol/embed/?params=[embed,%s]' % video_id,
  88. video_id, 'Downloading embed page', fatal=False)
  89. if embed_page:
  90. media_id = self._search_regex(
  91. (r'uol\.com\.br/(\d+)', r'mediaId=(\d+)'),
  92. embed_page, 'media id', default=None)
  93. if not media_id:
  94. webpage = self._download_webpage(url, video_id)
  95. media_id = self._search_regex(r'mediaId=(\d+)', webpage, 'media id')
  96. video_data = self._download_json(
  97. 'http://mais.uol.com.br/apiuol/v3/player/getMedia/%s.json' % media_id,
  98. media_id)['item']
  99. title = video_data['title']
  100. query = {
  101. 'ver': video_data.get('numRevision', 2),
  102. 'r': 'http://mais.uol.com.br',
  103. }
  104. formats = []
  105. for f in video_data.get('formats', []):
  106. f_url = f.get('url') or f.get('secureUrl')
  107. if not f_url:
  108. continue
  109. format_id = str_or_none(f.get('id'))
  110. fmt = {
  111. 'format_id': format_id,
  112. 'url': update_url_query(f_url, query),
  113. }
  114. fmt.update(self._FORMATS.get(format_id, {}))
  115. formats.append(fmt)
  116. self._sort_formats(formats)
  117. tags = []
  118. for tag in video_data.get('tags', []):
  119. tag_description = tag.get('description')
  120. if not tag_description:
  121. continue
  122. tags.append(tag_description)
  123. return {
  124. 'id': media_id,
  125. 'title': title,
  126. 'description': clean_html(video_data.get('desMedia')),
  127. 'thumbnail': video_data.get('thumbnail'),
  128. 'duration': int_or_none(video_data.get('durationSeconds')) or parse_duration(video_data.get('duration')),
  129. 'tags': tags,
  130. 'formats': formats,
  131. }