summary refs log tree commit diff
diff options
context:
space:
mode:
authorremitamine <remitamine@gmail.com>2016-04-30 12:57:30 +0100
committerremitamine <remitamine@gmail.com>2016-04-30 12:57:30 +0100
commit7691184a3128bd46544ff49e264322d5e9187fdc (patch)
tree95f10ebec8612bbe6ee62511fb92a9e8e3cb390b
parent35cd2f4c253fa9d37b6a253f9f63bfe258d8f334 (diff)
downloadyoutube-dl-7691184a3128bd46544ff49e264322d5e9187fdc.tar.gz
youtube-dl-7691184a3128bd46544ff49e264322d5e9187fdc.tar.xz
youtube-dl-7691184a3128bd46544ff49e264322d5e9187fdc.zip
[pbs] remove duplicate format
-rw-r--r--youtube_dl/extractor/pbs.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/youtube_dl/extractor/pbs.py b/youtube_dl/extractor/pbs.py
index 17c85dd7b..35fb1798d 100644
--- a/youtube_dl/extractor/pbs.py
+++ b/youtube_dl/extractor/pbs.py
@@ -514,10 +514,8 @@ class PBSIE(InfoExtractor):
                 bitrate = self._search_regex(r'(\d+k)', m3u8_format['url'], 'bitrate', default=None)
                 # 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'):
+                if not bitrate or bitrate not in ('400k', '800k', '1200k', '2500k'):
                     continue
-                if bitrate == '192k':
-                    bitrate = 'baseline'
                 f = m3u8_format.copy()
                 f.update({
                     'url': re.sub(r'\d+k|baseline', bitrate, http_url),