summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-04-21 12:37:16 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2014-04-21 12:37:16 +0200
commit621f33c9d00a82c2d119046917a8bb628dc38067 (patch)
treed1628453726d00af26aa1be7996ac44dc0aab000
parentf07a9f6f4347facde15a0cca9560119f0b6f8a94 (diff)
downloadyoutube-dl-621f33c9d00a82c2d119046917a8bb628dc38067.tar.gz
youtube-dl-621f33c9d00a82c2d119046917a8bb628dc38067.tar.xz
youtube-dl-621f33c9d00a82c2d119046917a8bb628dc38067.zip
[ted] Extend search for description
-rw-r--r--youtube_dl/extractor/ted.py5
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 {