mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-14 14:28:00 +09:00
[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
This commit is contained in:
parent
350d7963db
commit
35cd2f4c25
@ -512,7 +512,9 @@ class PBSIE(InfoExtractor):
|
|||||||
if http_url:
|
if http_url:
|
||||||
for m3u8_format in m3u8_formats:
|
for m3u8_format in m3u8_formats:
|
||||||
bitrate = self._search_regex(r'(\d+k)', m3u8_format['url'], 'bitrate', default=None)
|
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
|
continue
|
||||||
if bitrate == '192k':
|
if bitrate == '192k':
|
||||||
bitrate = 'baseline'
|
bitrate = 'baseline'
|
||||||
|
Loading…
Reference in New Issue
Block a user