mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-10-31 22:55:26 +00:00
[pbs] Clarify comment on http formats
This commit is contained in:
parent
542130a5d9
commit
5ec5461e1a
1 changed files with 6 additions and 6 deletions
|
@ -506,12 +506,12 @@ 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)
|
||||||
# lower qualities(150k and 192k) are not available as http formats
|
# Lower qualities (150k and 192k) are not available as HTTP formats (see [1]),
|
||||||
# https://github.com/rg3/youtube-dl/commit/cbc032c8b70a038a69259378c92b4ba97b42d491#commitcomment-17313656
|
# we won't try extracting them.
|
||||||
# we will try to extract any http format higher than than the lowest quality documented in
|
# Since summer 2016 higher quality formats (4500k and 6500k) are also available
|
||||||
# https://projects.pbs.org/confluence/display/coveapi/COVE+Video+Specifications
|
# albeit they are not documented in [2].
|
||||||
# as there also undocumented http formats formats(4500k and 6500k)
|
# 1. https://github.com/rg3/youtube-dl/commit/cbc032c8b70a038a69259378c92b4ba97b42d491#commitcomment-17313656
|
||||||
# http://www.pbs.org/video/2365815229/
|
# 2. https://projects.pbs.org/confluence/display/coveapi/COVE+Video+Specifications
|
||||||
if not bitrate or int(bitrate) < 400:
|
if not bitrate or int(bitrate) < 400:
|
||||||
continue
|
continue
|
||||||
f_url = re.sub(r'\d+k|baseline', bitrate + 'k', http_url)
|
f_url = re.sub(r'\d+k|baseline', bitrate + 'k', http_url)
|
||||||
|
|
Loading…
Reference in a new issue