youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 5ba761eb854d6e415b3ab542293cb31c073dc0f3
parent 611ac379bb466267aded6726f9c85e79b08168c4
Author: Sergey M․ <dstftw@gmail.com>
Date:   Fri, 17 Jul 2015 00:39:22 +0600

[npo] Prefer aflevering_titel over titel

Diffstat:
Myoutube_dl/extractor/npo.py | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git 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', },