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.

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