diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-03-07 23:00:21 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-03-07 23:00:21 +0700 |
commit | b68a812ea839e44148516a34a15193189e58ba77 (patch) | |
tree | 21006582e7b43b6bba770d50b4a578af06634e4e | |
parent | 2e76bdc850ed5d5ffe95578b576b8fb66dcea8f4 (diff) |
[extractor/generic] Add test for brigthcove UUID-like videoPlayer
-rw-r--r-- | youtube_dl/extractor/generic.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/youtube_dl/extractor/generic.py b/youtube_dl/extractor/generic.py index ebab9509d..bc22421ae 100644 --- a/youtube_dl/extractor/generic.py +++ b/youtube_dl/extractor/generic.py @@ -449,6 +449,23 @@ class GenericIE(InfoExtractor): }, }], }, + { + # Brightcove with UUID in videoPlayer + 'url': 'http://www8.hp.com/cn/zh/home.html', + 'info_dict': { + 'id': '5255815316001', + 'ext': 'mp4', + 'title': 'Sprocket Video - China', + 'description': 'Sprocket Video - China', + 'uploader': 'HP-Video Gallery', + 'timestamp': 1482263210, + 'upload_date': '20161220', + 'uploader_id': '1107601872001', + }, + 'params': { + 'skip_download': True, # m3u8 download + }, + }, # ooyala video { 'url': 'http://www.rollingstone.com/music/videos/norwegian-dj-cashmere-cat-goes-spartan-on-with-me-premiere-20131219', |