[screenwavemedia] Check formats' URLs

pull/8/head
Sergey M․ 2016-02-28 21:46:36 +06:00
rodzic 2b2dfae83e
commit 6dae56384a
1 zmienionych plików z 3 dodań i 1 usunięć
youtube_dl/extractor

Wyświetl plik

@ -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({