[screenwavemedia] Check formats' URLs

This commit is contained in:
Sergey M․ 2016-02-28 21:46:36 +06:00
parent 2b2dfae83e
commit 6dae56384a
1 changed files with 3 additions and 1 deletions

View File

@ -76,9 +76,11 @@ class ScreenwaveMediaIE(InfoExtractor):
if source.get('type') == 'hls':
formats.extend(self._extract_m3u8_formats(file_, video_id, ext='mp4'))
else:
format_label = source.get('label')
format_id = self._search_regex(
r'_(.+?)\.[^.]+$', file_, 'format id', default=None)
if not self._is_valid_url(file_, video_id, format_id or 'video'):
continue
format_label = source.get('label')
height = int_or_none(self._search_regex(
r'^(\d+)[pP]', format_label, 'height', default=None))
formats.append({