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.

82 lines
3.7 KiB

11 years ago
  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. from .common import InfoExtractor
  4. from ..utils import strip_jsonp, 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. 'url': 'http://elpais.com/elpais/2017/01/26/ciencia/1485456786_417876.html',
  30. 'md5': '9c79923a118a067e1a45789e1e0b0f9c',
  31. 'info_dict': {
  32. 'id': '1485456786_417876',
  33. 'ext': 'mp4',
  34. 'title': 'Hallado un barco de la antigua Roma que naufragó en Baleares hace 1.800 años',
  35. 'description': 'La nave portaba cientos de ánforas y se hundió cerca de la isla de Cabrera por razones desconocidas',
  36. 'upload_date': '20170127',
  37. },
  38. }]
  39. def _real_extract(self, url):
  40. video_id = self._match_id(url)
  41. webpage = self._download_webpage(url, video_id)
  42. prefix = self._html_search_regex(
  43. r'var\s+url_cache\s*=\s*"([^"]+)";', webpage, 'URL prefix')
  44. id_multimedia = self._search_regex(
  45. r"id_multimedia\s*=\s*'([^']+)'", webpage, 'ID multimedia', default=None)
  46. if id_multimedia:
  47. url_info = self._download_json(
  48. 'http://elpais.com/vdpep/1/?pepid=' + id_multimedia, video_id, transform_source=strip_jsonp)
  49. video_suffix = url_info['mp4']
  50. else:
  51. video_suffix = self._search_regex(
  52. r"(?:URLMediaFile|urlVideo_\d+)\s*=\s*url_cache\s*\+\s*'([^']+)'", webpage, 'video URL')
  53. video_url = prefix + video_suffix
  54. thumbnail_suffix = self._search_regex(
  55. r"(?:URLMediaStill|urlFotogramaFijo_\d+)\s*=\s*url_cache\s*\+\s*'([^']+)'",
  56. webpage, 'thumbnail URL', fatal=False)
  57. thumbnail = (
  58. None if thumbnail_suffix is None
  59. else prefix + thumbnail_suffix)
  60. title = self._html_search_regex(
  61. (r"tituloVideo\s*=\s*'([^']+)'", webpage, 'title',
  62. r'<h2 class="entry-header entry-title.*?>(.*?)</h2>'),
  63. webpage, 'title')
  64. upload_date = unified_strdate(self._search_regex(
  65. r'<p class="date-header date-int updated"\s+title="([^"]+)">',
  66. webpage, 'upload date', default=None) or self._html_search_meta(
  67. 'datePublished', webpage, 'timestamp'))
  68. return {
  69. 'id': video_id,
  70. 'url': video_url,
  71. 'title': title,
  72. 'description': self._og_search_description(webpage),
  73. 'thumbnail': thumbnail,
  74. 'upload_date': upload_date,
  75. }