[screenwavemedia] Fix HLS extension and test_TeamFour

master
Yen Chi Hsuan 8 years ago
parent 7c38af48b9
commit 809e1857c5

@ -71,7 +71,7 @@ class ScreenwaveMediaIE(InfoExtractor):
formats = [] formats = []
for source in sources: for source in sources:
if source['type'] == 'hls': if source['type'] == 'hls':
formats.extend(self._extract_m3u8_formats(source['file'], video_id)) formats.extend(self._extract_m3u8_formats(source['file'], video_id, ext='mp4'))
else: else:
file_ = source.get('file') file_ = source.get('file')
if not file_: if not file_:
@ -107,7 +107,11 @@ class TeamFourIE(InfoExtractor):
'upload_date': '20130401', 'upload_date': '20130401',
'description': 'Check out this and more on our website: http://teamfourstar.com\nTFS Store: http://sharkrobot.com/team-four-star\nFollow on Twitter: http://twitter.com/teamfourstar\nLike on FB: http://facebook.com/teamfourstar', 'description': 'Check out this and more on our website: http://teamfourstar.com\nTFS Store: http://sharkrobot.com/team-four-star\nFollow on Twitter: http://twitter.com/teamfourstar\nLike on FB: http://facebook.com/teamfourstar',
'title': 'A Moment With TFS Episode 4', 'title': 'A Moment With TFS Episode 4',
} },
'params': {
# m3u8 download
'skip_download': True,
},
} }
def _real_extract(self, url): def _real_extract(self, url):

Loading…
Cancel
Save