[pbs] extract only the formats that we know that they will be available as http format
authorremitamine <remitamine@gmail.com>
Sat, 30 Apr 2016 10:31:09 +0000 (11:31 +0100)
committerremitamine <remitamine@gmail.com>
Sat, 30 Apr 2016 10:32:13 +0000 (11:32 +0100)
https://projects.pbs.org/confluence/display/coveapi/COVE+Video+Specifications

youtube_dl/extractor/pbs.py

index 75c36a621dd873aab5690587796d2eb903e09fee..17c85dd7b98acf79a947ee2086742416237b5b4f 100644 (file)
@@ -512,7 +512,9 @@ class PBSIE(InfoExtractor):
         if http_url:
             for m3u8_format in m3u8_formats:
                 bitrate = self._search_regex(r'(\d+k)', m3u8_format['url'], 'bitrate', default=None)
-                if not bitrate:
+                # extract only the formats that we know that they will be available as http format.
+                # https://projects.pbs.org/confluence/display/coveapi/COVE+Video+Specifications
+                if not bitrate or bitrate not in ('192k', '400k', '800k', '1200k', '2500k'):
                     continue
                 if bitrate == '192k':
                     bitrate = 'baseline'