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.

48 lines
1.9 KiB

  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. import re
  4. from .common import InfoExtractor
  5. class Canal13clIE(InfoExtractor):
  6. _VALID_URL = r'^http://(?:www\.)?13\.cl/(?:[^/?#]+/)*(?P<id>[^/?#]+)'
  7. _TEST = {
  8. 'url': 'http://www.13.cl/t13/nacional/el-circulo-de-hierro-de-michelle-bachelet-en-su-regreso-a-la-moneda',
  9. 'md5': '4cb1fa38adcad8fea88487a078831755',
  10. 'info_dict': {
  11. 'id': '1403022125',
  12. 'display_id': 'el-circulo-de-hierro-de-michelle-bachelet-en-su-regreso-a-la-moneda',
  13. 'ext': 'mp4',
  14. 'title': 'El "círculo de hierro" de Michelle Bachelet en su regreso a La Moneda',
  15. 'description': '(Foto: Agencia Uno) En nueve días más, Michelle Bachelet va a asumir por segunda vez como presidenta de la República. Entre aquellos que la acompañarán hay caras que se repiten y otras que se consolidan en su entorno de colaboradores más cercanos.',
  16. }
  17. }
  18. def _real_extract(self, url):
  19. mobj = re.match(self._VALID_URL, url)
  20. display_id = mobj.group('id')
  21. webpage = self._download_webpage(url, display_id)
  22. title = self._html_search_meta(
  23. 'twitter:title', webpage, 'title', fatal=True)
  24. description = self._html_search_meta(
  25. 'twitter:description', webpage, 'description')
  26. url = self._html_search_regex(
  27. r'articuloVideo = \"(.*?)\"', webpage, 'url')
  28. real_id = self._search_regex(
  29. r'[^0-9]([0-9]{7,})[^0-9]', url, 'id', default=display_id)
  30. thumbnail = self._html_search_regex(
  31. r'articuloImagen = \"(.*?)\"', webpage, 'thumbnail')
  32. return {
  33. 'id': real_id,
  34. 'display_id': display_id,
  35. 'url': url,
  36. 'title': title,
  37. 'description': description,
  38. 'ext': 'mp4',
  39. 'thumbnail': thumbnail,
  40. }