[pbs] remove duplicate format
authorremitamine <remitamine@gmail.com>
Sat, 30 Apr 2016 11:57:30 +0000 (12:57 +0100)
committerremitamine <remitamine@gmail.com>
Sat, 30 Apr 2016 11:57:30 +0000 (12:57 +0100)
youtube_dl/extractor/pbs.py

index 17c85dd7b98acf79a947ee2086742416237b5b4f..35fb1798da94f6b6e0297cb26a873482771cd598 100644 (file)
@@ -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),