youtube-dl

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

commit f196047832a2da74d5adf75759877b5d95ec5b5b
parent 240ca32e57a027ff8cec8617c154bb7100bead1a
Author: Sergey M․ <dstftw@gmail.com>
Date:   Thu, 13 Aug 2015 01:00:25 +0600

[rtvnh] Make thumbnail optional

Diffstat:
Myoutube_dl/extractor/rtvnh.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/rtvnh.py b/youtube_dl/extractor/rtvnh.py @@ -35,6 +35,6 @@ class RTVNHIE(InfoExtractor): return { 'id': video_id, 'title': meta['title'].strip(), - 'thumbnail': meta['image'], + 'thumbnail': meta.get('image'), 'formats': formats }