youtube-dl

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

commit 26e40542dd730b1a18f9d7eebe241972b77810cf
parent 99a0baf370c7652f6103cff71f878872229b4129
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sat, 28 Jan 2017 17:50:56 +0700

[kaltura] Improve uploader_id extraction

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

diff --git a/youtube_dl/extractor/kaltura.py b/youtube_dl/extractor/kaltura.py @@ -319,6 +319,6 @@ class KalturaIE(InfoExtractor): 'thumbnail': info.get('thumbnailUrl'), 'duration': info.get('duration'), 'timestamp': info.get('createdAt'), - 'uploader_id': info.get('userId'), + 'uploader_id': info.get('userId') if info.get('userId') != 'None' else None, 'view_count': info.get('plays'), }