From: Jaime Marquínez Ferrándiz Date: Mon, 24 Feb 2014 13:35:26 +0000 (+0100) Subject: [cinemassacre] Fix extraction X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=47610c4d3e6f8b7f3c70974c3287988db68c891a;p=youtube-dl [cinemassacre] Fix extraction Now we download over http, we don't need rtmpdump. --- diff --git a/youtube_dl/extractor/cinemassacre.py b/youtube_dl/extractor/cinemassacre.py index f0d08cebf..acc18dbe2 100644 --- a/youtube_dl/extractor/cinemassacre.py +++ b/youtube_dl/extractor/cinemassacre.py @@ -11,28 +11,22 @@ class CinemassacreIE(InfoExtractor): _VALID_URL = r'(?:http://)?(?:www\.)?(?Pcinemassacre\.com/(?P[0-9]{4})/(?P[0-9]{2})/(?P[0-9]{2})/.+?)(?:[/?].*)?' _TESTS = [{ u'url': u'http://cinemassacre.com/2012/11/10/avgn-the-movie-trailer/', - u'file': u'19911.flv', + u'file': u'19911.mp4', + u'md5': u'fde81fbafaee331785f58cd6c0d46190', 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'file': u'521be8ef82b16.mp4', + u'md5': u'd72f10cd39eac4215048f62ab477a511', 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): @@ -55,26 +49,21 @@ class CinemassacreIE(InfoExtractor): video_description = None playerdata = self._download_webpage(playerdata_url, video_id) - url = self._html_search_regex(r'\'streamer\': \'(?P[^\']+)\'', playerdata, u'url') - sd_file = self._html_search_regex(r'\'file\': \'(?P[^\']+)\'', playerdata, u'sd_file') - hd_file = self._html_search_regex(r'\'?file\'?: "(?P[^"]+)"', playerdata, u'hd_file') - video_thumbnail = self._html_search_regex(r'\'image\': \'(?P[^\']+)\'', playerdata, u'thumbnail', fatal=False) + sd_url = self._html_search_regex(r'file: \'(?P[^\']+)\', label: \'SD\'', playerdata, u'sd_file') + hd_url= self._html_search_regex(r'file: \'(?P[^\']+)\', label: \'HD\'', playerdata, u'hd_file') + video_thumbnail = self._html_search_regex(r'image: \'(?P[^\']+)\'', playerdata, u'thumbnail', fatal=False) formats = [ { - 'url': url, - 'play_path': 'mp4:' + sd_file, - 'rtmp_live': True, # workaround - 'ext': 'flv', + 'url': sd_url, + 'ext': 'mp4', 'format': 'sd', 'format_id': 'sd', }, { - 'url': url, - 'play_path': 'mp4:' + hd_file, - 'rtmp_live': True, # workaround - 'ext': 'flv', + 'url': hd_url, + 'ext': 'mp4', 'format': 'hd', 'format_id': 'hd', },