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.

65 lines
2.8 KiB

11 years ago
  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. from .common import InfoExtractor
  4. from ..utils import unified_strdate
  5. class ElPaisIE(InfoExtractor):
  6. _VALID_URL = r'https?://(?:[^.]+\.)?elpais\.com/.*/(?P<id>[^/#?]+)\.html(?:$|[?#])'
  7. IE_DESC = 'El País'
  8. _TESTS = [{
  9. 'url': 'http://blogs.elpais.com/la-voz-de-inaki/2014/02/tiempo-nuevo-recetas-viejas.html',
  10. 'md5': '98406f301f19562170ec071b83433d55',
  11. 'info_dict': {
  12. 'id': 'tiempo-nuevo-recetas-viejas',
  13. 'ext': 'mp4',
  14. 'title': 'Tiempo nuevo, recetas viejas',
  15. 'description': 'De lunes a viernes, a partir de las ocho de la mañana, Iñaki Gabilondo nos cuenta su visión de la actualidad nacional e internacional.',
  16. 'upload_date': '20140206',
  17. }
  18. }, {
  19. 'url': 'http://elcomidista.elpais.com/elcomidista/2016/02/24/articulo/1456340311_668921.html#?id_externo_nwl=newsletter_diaria20160303t',
  20. 'md5': '3bd5b09509f3519d7d9e763179b013de',
  21. 'info_dict': {
  22. 'id': '1456340311_668921',
  23. 'ext': 'mp4',
  24. 'title': 'Cómo hacer el mejor café con cafetera italiana',
  25. 'description': 'Que sí, que las cápsulas son cómodas. Pero si le pides algo más a la vida, quizá deberías aprender a usar bien la cafetera italiana. No tienes más que ver este vídeo y seguir sus siete normas básicas.',
  26. 'upload_date': '20160303',
  27. }
  28. }]
  29. def _real_extract(self, url):
  30. video_id = self._match_id(url)
  31. webpage = self._download_webpage(url, video_id)
  32. prefix = self._html_search_regex(
  33. r'var\s+url_cache\s*=\s*"([^"]+)";', webpage, 'URL prefix')
  34. video_suffix = self._search_regex(
  35. r"(?:URLMediaFile|urlVideo_\d+)\s*=\s*url_cache\s*\+\s*'([^']+)'", webpage, 'video URL')
  36. video_url = prefix + video_suffix
  37. thumbnail_suffix = self._search_regex(
  38. r"(?:URLMediaStill|urlFotogramaFijo_\d+)\s*=\s*url_cache\s*\+\s*'([^']+)'",
  39. webpage, 'thumbnail URL', fatal=False)
  40. thumbnail = (
  41. None if thumbnail_suffix is None
  42. else prefix + thumbnail_suffix)
  43. title = self._html_search_regex(
  44. (r"tituloVideo\s*=\s*'([^']+)'", webpage, 'title',
  45. r'<h2 class="entry-header entry-title.*?>(.*?)</h2>'),
  46. webpage, 'title')
  47. upload_date = unified_strdate(self._search_regex(
  48. r'<p class="date-header date-int updated"\s+title="([^"]+)">',
  49. webpage, 'upload date', default=None) or self._html_search_meta(
  50. 'datePublished', webpage, 'timestamp'))
  51. return {
  52. 'id': video_id,
  53. 'url': video_url,
  54. 'title': title,
  55. 'description': self._og_search_description(webpage),
  56. 'thumbnail': thumbnail,
  57. 'upload_date': upload_date,
  58. }