about summary refs log tree commit diff
path: root/youtube_dl/extractor/npo.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-07-17 00:39:22 +0600
committerSergey M․ <dstftw@gmail.com>2015-07-17 00:39:22 +0600
commit5ba761eb854d6e415b3ab542293cb31c073dc0f3 (patch)
tree8e8278b542b1e6491ec40d8e9099f1b09516b21c /youtube_dl/extractor/npo.py
parent611ac379bb466267aded6726f9c85e79b08168c4 (diff)
downloadyoutube-dl-5ba761eb854d6e415b3ab542293cb31c073dc0f3.tar.gz
youtube-dl-5ba761eb854d6e415b3ab542293cb31c073dc0f3.tar.xz
youtube-dl-5ba761eb854d6e415b3ab542293cb31c073dc0f3.zip
[npo] Prefer aflevering_titel over titel
Diffstat (limited to 'youtube_dl/extractor/npo.py')
-rw-r--r--youtube_dl/extractor/npo.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/youtube_dl/extractor/npo.py b/youtube_dl/extractor/npo.py
index 28d5c90b3..91adb23f0 100644
--- a/youtube_dl/extractor/npo.py
+++ b/youtube_dl/extractor/npo.py
@@ -234,7 +234,9 @@ class NPOIE(NPOBaseIE):
 
         return {
             'id': video_id,
-            'title': metadata['titel'],
+            # prefer aflevering_titel if any since titel may be too generic, e.g.
+            # http://tegenlicht.vpro.nl/afleveringen/2014-2015/access-to-africa.html
+            'title': metadata.get('aflevering_titel') or metadata['titel'],
             'description': metadata['info'],
             'thumbnail': metadata.get('images', [{'url': None}])[-1]['url'],
             'upload_date': unified_strdate(metadata.get('gidsdatum')),
@@ -414,7 +416,7 @@ class VPROIE(NPOIE):
             'info_dict': {
                 'id': 'VPWON_1169289',
                 'ext': 'm4v',
-                'title': 'Tegenlicht',
+                'title': 'De toekomst komt uit Afrika',
                 'description': 'md5:52cf4eefbc96fffcbdc06d024147abea',
                 'upload_date': '20130225',
             },