diff options
author | Ben Rog-Wilhelm <zorba-github@pavlovian.net> | 2021-05-04 14:14:35 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-05 02:14:35 +0700 |
commit | fe05191b8c59538a48b6cbc95f4fe54fc7e6a0ac (patch) | |
tree | 9de69c412b0836b723ba9965d98a4b1c01ee1f88 /youtube_dl/extractor/gdcvault.py | |
parent | 0204838163bd4068fe23b40414573d1307d817ab (diff) |
[kaltura] Improve iframe extraction (#28969)
Co-authored-by: Sergey M. <dstftw@gmail.com>
Diffstat (limited to 'youtube_dl/extractor/gdcvault.py')
-rw-r--r-- | youtube_dl/extractor/gdcvault.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/youtube_dl/extractor/gdcvault.py b/youtube_dl/extractor/gdcvault.py index 2f555c1d4..5ad40ee23 100644 --- a/youtube_dl/extractor/gdcvault.py +++ b/youtube_dl/extractor/gdcvault.py @@ -102,6 +102,21 @@ class GDCVaultIE(InfoExtractor): 'format': 'mp4-408', }, }, + { + # Kaltura embed, whitespace between quote and embedded URL in iframe's src + 'url': 'https://www.gdcvault.com/play/1025699', + 'info_dict': { + 'id': '0_zagynv0a', + 'ext': 'mp4', + 'title': 'Tech Toolbox', + 'upload_date': '20190408', + 'uploader_id': 'joe@blazestreaming.com', + 'timestamp': 1554764629, + }, + 'params': { + 'skip_download': True, + }, + }, ] def _login(self, webpage_url, display_id): |