diff options
author | Remita Amine <remitamine@gmail.com> | 2018-11-18 16:13:46 +0100 |
---|---|---|
committer | Remita Amine <remitamine@gmail.com> | 2018-11-18 16:15:27 +0100 |
commit | 9b27a78a881bceb9d62f3364399d7572e8e2be24 (patch) | |
tree | c4eeec7674557a7b1f186981b1705bbbb909a7ce | |
parent | 964b989dc88c37b027481fb01de835b1e796ba5e (diff) |
[kaltura] limit requested MediaEntry fields
-rw-r--r-- | youtube_dl/extractor/kaltura.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/youtube_dl/extractor/kaltura.py b/youtube_dl/extractor/kaltura.py index 04f68fce4..fdf7f5bbc 100644 --- a/youtube_dl/extractor/kaltura.py +++ b/youtube_dl/extractor/kaltura.py @@ -192,6 +192,8 @@ class KalturaIE(InfoExtractor): 'entryId': video_id, 'service': 'baseentry', 'ks': '{1:result:ks}', + 'responseProfile:fields': 'createdAt,dataUrl,duration,name,plays,thumbnailUrl,userId', + 'responseProfile:type': 1, }, { 'action': 'getbyentryid', |