diff options
author | Filippo Valsorda <[email protected]> | 2013-10-14 18:25:52 -0400 |
---|---|---|
committer | Filippo Valsorda <[email protected]> | 2013-11-25 17:46:33 -0500 |
commit | 00b350d209d5013a4302970a627a4ca10b0ed3a9 (patch) | |
tree | b9a2b4cd59c7ff2bd26b5cfdc9f3662ea0ab3251 /youtube_dl/extractor/cinemassacre.py | |
parent | d8ec4959c824cba4c87af16ad0b25851560fcf57 (diff) | |
download | youtube-dl-rtmp_test.tar.gz youtube-dl-rtmp_test.zip |
[test] tell Travis to install rtmpdump and add initial support to rtmp testingrtmp_test
Diffstat (limited to 'youtube_dl/extractor/cinemassacre.py')
-rw-r--r-- | youtube_dl/extractor/cinemassacre.py | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/youtube_dl/extractor/cinemassacre.py b/youtube_dl/extractor/cinemassacre.py index f0d08cebf..1be11ef77 100644 --- a/youtube_dl/extractor/cinemassacre.py +++ b/youtube_dl/extractor/cinemassacre.py @@ -12,27 +12,21 @@ class CinemassacreIE(InfoExtractor): _TESTS = [{ u'url': u'http://cinemassacre.com/2012/11/10/avgn-the-movie-trailer/', u'file': u'19911.flv', + u'md5': u'f9bb7ede54d1229c9846e197b4737e06', u'info_dict': { u'upload_date': u'20121110', u'title': u'“Angry Video Game Nerd: The Movie” – Trailer', u'description': u'md5:fb87405fcb42a331742a0dce2708560b', - }, - u'params': { - # rtmp download - u'skip_download': True, - }, + } }, { u'url': u'http://cinemassacre.com/2013/10/02/the-mummys-hand-1940', u'file': u'521be8ef82b16.flv', + u'md5': u'9509ee44dcaa7c1068604817c19a9e50', u'info_dict': { u'upload_date': u'20131002', u'title': u'The Mummy’s Hand (1940)', - }, - u'params': { - # rtmp download - u'skip_download': True, - }, + } }] def _real_extract(self, url): |