diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-04-21 12:37:16 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-04-21 12:37:16 +0200 |
commit | 621f33c9d00a82c2d119046917a8bb628dc38067 (patch) | |
tree | d1628453726d00af26aa1be7996ac44dc0aab000 /youtube_dl/extractor/ted.py | |
parent | f07a9f6f4347facde15a0cca9560119f0b6f8a94 (diff) |
[ted] Extend search for description
Diffstat (limited to 'youtube_dl/extractor/ted.py')
-rw-r--r-- | youtube_dl/extractor/ted.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/extractor/ted.py b/youtube_dl/extractor/ted.py index 5b24716d9..abe1c34d3 100644 --- a/youtube_dl/extractor/ted.py +++ b/youtube_dl/extractor/ted.py @@ -178,7 +178,10 @@ class TEDIE(SubtitlesInfoExtractor): title = self._html_search_regex( r"(?s)<h1(?:\s+class='[^']+')?>(.+?)</h1>", webpage, 'title') description = self._html_search_regex( - r'(?s)<h4 class="[^"]+" id="h3--about-this-talk">.*?</h4>(.*?)</div>', + [ + r'(?s)<h4 class="[^"]+" id="h3--about-this-talk">.*?</h4>(.*?)</div>', + r'(?s)<p><strong>About this talk:</strong>\s+(.*?)</p>', + ], webpage, 'description', fatal=False) return { |