Better method for extracting video title
This commit is contained in:
Martín Cerdeira 2017-02-15 19:00:44 -03:00
parent 4ede16b29c
commit 1409f53fa4

View File

@ -63,10 +63,16 @@ class ElPaisIE(InfoExtractor):
thumbnail = ( thumbnail = (
None if thumbnail_suffix is None None if thumbnail_suffix is None
else prefix + thumbnail_suffix) else prefix + thumbnail_suffix)
# This method is better for general porpouses than extracting from javascript as before
title = self._html_search_regex( title = self._html_search_regex(
(r"tituloVideo\s*=\s*'([^']+)'", webpage, 'title', r'<title>\s*(.*)\s*</title>', webpage, 'title')
r'<h2 class="entry-header entry-title.*?>(.*?)</h2>'),
webpage, 'title') # title = self._html_search_regex(
# (r"tituloVideo\s*=\s*'([^']+)'", webpage, 'title',
# r'<h2 class="entry-header entry-title.*?>(.*?)</h2>'),
# webpage, 'title')
upload_date = unified_strdate(self._search_regex( upload_date = unified_strdate(self._search_regex(
r'<p class="date-header date-int updated"\s+title="([^"]+)">', r'<p class="date-header date-int updated"\s+title="([^"]+)">',
webpage, 'upload date', default=None) or self._html_search_meta( webpage, 'upload date', default=None) or self._html_search_meta(