summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-09-28 10:49:12 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2014-09-28 10:49:12 +0200
commitc121a75b368a0c75de7416cbb36d9b9f40a7f1a7 (patch)
treeab467d2ee8d70db217d64b2b4a19bb7e99a6a492
parent5a8b77551d930d4672159a015f553e64be111492 (diff)
downloadyoutube-dl-c121a75b368a0c75de7416cbb36d9b9f40a7f1a7.tar.gz
youtube-dl-c121a75b368a0c75de7416cbb36d9b9f40a7f1a7.tar.xz
youtube-dl-c121a75b368a0c75de7416cbb36d9b9f40a7f1a7.zip
[heise] Add support for description
-rw-r--r--youtube_dl/extractor/heise.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/youtube_dl/extractor/heise.py b/youtube_dl/extractor/heise.py
index 05d4efb8c..f97b1e085 100644
--- a/youtube_dl/extractor/heise.py
+++ b/youtube_dl/extractor/heise.py
@@ -27,6 +27,7 @@ class HeiseIE(InfoExtractor):
             'format_id': 'mp4_720',
             'timestamp': 1411812600,
             'upload_date': '20140927',
+            'description': 'In uplink-Episode 3.3 geht es darum, wie man sich von Cloud-Anbietern emanzipieren kann, worauf man beim Kauf einer Tastatur achten sollte und was Smartphones über uns verraten.',
         }
     }
 
@@ -42,6 +43,7 @@ class HeiseIE(InfoExtractor):
             'id': video_id,
             'thumbnail': config.get('poster'),
             'timestamp': parse_iso8601(get_meta_content('date', webpage)),
+            'description': self._og_search_description(webpage),
         }
 
         title = get_meta_content('fulltitle', webpage)