Get sub_paths with a loop

This commit is contained in:
David Pedersen 2019-07-11 13:15:37 +02:00
parent 3ee59f9423
commit 2872ea4494

View File

@ -312,11 +312,7 @@ class TVPlayIE(InfoExtractor):
# TODO: webvtt in m3u8 # TODO: webvtt in m3u8
subtitles = {} subtitles = {}
sub_paths = [ sub_paths = [video.get(key) for key in ['sami_path', 'subtitles_webvtt', 'subtitles_for_hearing_impaired']]
video.get('sami_path'),
video.get('subtitles_webvtt'),
video.get('subtitles_for_hearing_impaired'),
]
for path in sub_paths: for path in sub_paths:
if path: if path:
lang = self._search_regex( lang = self._search_regex(