summary refs log tree commit diff
diff options
context:
space:
mode:
authorremitamine <remitamine@gmail.com>2016-04-30 11:31:09 +0100
committerremitamine <remitamine@gmail.com>2016-04-30 11:32:13 +0100
commit35cd2f4c253fa9d37b6a253f9f63bfe258d8f334 (patch)
treee93f49228a1adeaddf0e4fda6dc7d6e7e9ec391c
parent350d7963db671884acd43f56f41bd499efd8e74a (diff)
downloadyoutube-dl-35cd2f4c253fa9d37b6a253f9f63bfe258d8f334.tar.gz
youtube-dl-35cd2f4c253fa9d37b6a253f9f63bfe258d8f334.tar.xz
youtube-dl-35cd2f4c253fa9d37b6a253f9f63bfe258d8f334.zip
[pbs] 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
-rw-r--r--youtube_dl/extractor/pbs.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/youtube_dl/extractor/pbs.py b/youtube_dl/extractor/pbs.py
index 75c36a621..17c85dd7b 100644
--- a/youtube_dl/extractor/pbs.py
+++ b/youtube_dl/extractor/pbs.py
@@ -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'