Don't list master m3u8 playlists in format list (closes #12832)
[youtube-dl] / youtube_dl / extractor / pbs.py
index 3e51b4dd746d88ead54bc9ca469113f1f3cf14d2..6166dc2adf41a431c79244e01256ab94f0dcb704 100644 (file)
@@ -515,7 +515,7 @@ class PBSIE(InfoExtractor):
                     http_url = format_url
         self._remove_duplicate_formats(formats)
         m3u8_formats = list(filter(
-            lambda f: f.get('protocol') == 'm3u8' and f.get('vcodec') != 'none' and f.get('resolution') != 'multiple',
+            lambda f: f.get('protocol') == 'm3u8' and f.get('vcodec') != 'none',
             formats))
         if http_url:
             for m3u8_format in m3u8_formats: