aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/channel9.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-10-15 01:57:59 +0600
committerSergey M․ <dstftw@gmail.com>2015-10-15 01:57:59 +0600
commita13d06de420f6968425d48030c37e1150ff9ed6a (patch)
tree824f3358282c9ffdeec48fd1d895c68fbfe5c200 /youtube_dl/extractor/channel9.py
parent1db82381e38181aafbd78c65c58f005ad84cc08a (diff)
downloadyoutube-dl-a13d06de420f6968425d48030c37e1150ff9ed6a.tar.xz
[channel9] Add test for low quality mp4
Diffstat (limited to 'youtube_dl/extractor/channel9.py')
-rw-r--r--youtube_dl/extractor/channel9.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/youtube_dl/extractor/channel9.py b/youtube_dl/extractor/channel9.py
index 3a88181d8..554399787 100644
--- a/youtube_dl/extractor/channel9.py
+++ b/youtube_dl/extractor/channel9.py
@@ -51,6 +51,21 @@ class Channel9IE(InfoExtractor):
'thumbnail': 'http://video.ch9.ms/ch9/87e1/0300391f-a455-4c72-bec3-4422f19287e1/selfservicenuk_512.jpg',
'authors': ['Mike Wilmot'],
},
+ },
+ {
+ # low quality mp4 is best
+ 'url': 'https://channel9.msdn.com/Events/CPP/CppCon-2015/Ranges-for-the-Standard-Library',
+ 'info_dict': {
+ 'id': 'Events/CPP/CppCon-2015/Ranges-for-the-Standard-Library',
+ 'ext': 'mp4',
+ 'title': 'Ranges for the Standard Library',
+ 'description': 'md5:2e6b4917677af3728c5f6d63784c4c5d',
+ 'duration': 5646,
+ 'thumbnail': 're:http://.*\.jpg',
+ },
+ 'params': {
+ 'skip_download': True,
+ },
}
]