[StreamCZ] Fix extractor (#3789)

Closes #3579
Authored by: dirkf, adamanldo
pull/3821/head
adamanldo 2022-05-20 09:19:13 -04:00 zatwierdzone przez GitHub
rodzic 79c318937b
commit 854b0d325e
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -52,8 +52,8 @@ class StreamCZIE(InfoExtractor):
def _extract_formats(self, spl_url, video): def _extract_formats(self, spl_url, video):
for ext, pref, streams in ( for ext, pref, streams in (
('ts', -1, traverse_obj(video, ('http_stream', 'qualities'))), ('ts', -1, traverse_obj(video, ('http_stream', 'qualities')) or {}),
('mp4', 1, video.get('mp4'))): ('mp4', 1, video.get('mp4') or {})):
for format_id, stream in streams.items(): for format_id, stream in streams.items():
if not stream.get('url'): if not stream.get('url'):
continue continue