mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-03 08:19:57 +01:00
[cinemassacre] Simplify
* Remove some rtmp parameters that are not needed. * Remove the md5 checksums, the video is not downloaded. * Remove the code used before the current format system.
This commit is contained in:
parent
fac6be2dd5
commit
fcc28edb2f
@ -12,7 +12,6 @@ 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',
|
||||
@ -26,7 +25,6 @@ class CinemassacreIE(InfoExtractor):
|
||||
{
|
||||
u'url': u'http://cinemassacre.com/2013/10/02/the-mummys-hand-1940',
|
||||
u'file': u'521be8ef82b16.flv',
|
||||
u'md5': u'91b248e1e2473d5bff55d6010518111f',
|
||||
u'info_dict': {
|
||||
u'upload_date': u'20131002',
|
||||
u'title': u'The Mummy’s Hand (1940)',
|
||||
@ -58,8 +56,6 @@ def _real_extract(self, url):
|
||||
|
||||
playerdata = self._download_webpage(playerdata_url, video_id)
|
||||
url = self._html_search_regex(r'\'streamer\': \'(?P<url>[^\']+)\'', playerdata, u'url')
|
||||
player_url = self._html_search_regex(r'\'flashplayer\': \'(?P<player_url>[^\']+)\'', playerdata, u'player_url')
|
||||
page_url = re.split(r'(?<=[^/])/([^/]|$)', player_url)[0]
|
||||
|
||||
sd_file = self._html_search_regex(r'\'file\': \'(?P<sd_file>[^\']+)\'', playerdata, u'sd_file')
|
||||
hd_file = self._html_search_regex(r'\'?file\'?: "(?P<hd_file>[^"]+)"', playerdata, u'hd_file')
|
||||
@ -68,8 +64,6 @@ def _real_extract(self, url):
|
||||
formats = [
|
||||
{
|
||||
'url': url,
|
||||
'player_url': player_url,
|
||||
'page_url': page_url,
|
||||
'play_path': 'mp4:' + sd_file,
|
||||
'ext': 'flv',
|
||||
'format': 'sd',
|
||||
@ -77,8 +71,6 @@ def _real_extract(self, url):
|
||||
},
|
||||
{
|
||||
'url': url,
|
||||
'player_url': player_url,
|
||||
'page_url': page_url,
|
||||
'play_path': 'mp4:' + hd_file,
|
||||
'ext': 'flv',
|
||||
'format': 'hd',
|
||||
@ -86,7 +78,7 @@ def _real_extract(self, url):
|
||||
},
|
||||
]
|
||||
|
||||
info = {
|
||||
return {
|
||||
'id': video_id,
|
||||
'title': video_title,
|
||||
'formats': formats,
|
||||
@ -94,6 +86,3 @@ def _real_extract(self, url):
|
||||
'upload_date': video_date,
|
||||
'thumbnail': video_thumbnail,
|
||||
}
|
||||
# TODO: Remove when #980 has been merged
|
||||
info.update(formats[-1])
|
||||
return info
|
||||
|
Loading…
Reference in New Issue
Block a user