From 07970f3ae299e0ccfc1f1601ce22ad0121666019 Mon Sep 17 00:00:00 2001 From: John Hawkinson Date: Sat, 8 Apr 2017 00:53:23 -0400 Subject: [PATCH] [Kaltura] Skip failing Kaltura_1 test Fails like so: > /Users/jhawk/src/youtube-dl/youtube_dl/extractor/kaltura.py(266)_real_extract() -> data_url = info['dataUrl'] (Pdb) info {u'message': u'Entry id "0_l5ye1133" not found', u'code': u'ENTRY_ID_NOT_FOUND', u'args': {u'ENTRY_ID': u'0_l5ye1133'}, u'objectType': u'KalturaAPIException'} Also note another URL to the same video, which might be helpful in figuring out the right Kaltura entry ID, at least maybe? --- youtube_dl/extractor/kaltura.py | 1 + 1 file changed, 1 insertion(+) diff --git a/youtube_dl/extractor/kaltura.py b/youtube_dl/extractor/kaltura.py index f1e8b25cc..741dd8dc5 100644 --- a/youtube_dl/extractor/kaltura.py +++ b/youtube_dl/extractor/kaltura.py @@ -91,6 +91,7 @@ class KalturaIE(InfoExtractor): }], }, }, + 'skip': 'Gone. Maybe https://www.safaribooksonline.com/library/tutorials/introduction-to-python-anon/3469/', 'params': { 'skip_download': True, },