aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/pbs.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-08-13 22:50:18 +0700
committerSergey M․ <dstftw@gmail.com>2016-08-13 22:50:18 +0700
commit5ec5461e1a805595c5fef4ae482e86d7d7872d8b (patch)
tree57020b6fad2225017ebc655a1e760ef513a33cdc /youtube_dl/extractor/pbs.py
parent542130a5d914e5f02acb872c88866194c66a612d (diff)
downloadyoutube-dl-5ec5461e1a805595c5fef4ae482e86d7d7872d8b.tar.xz
[pbs] Clarify comment on http formats
Diffstat (limited to 'youtube_dl/extractor/pbs.py')
-rw-r--r--youtube_dl/extractor/pbs.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/youtube_dl/extractor/pbs.py b/youtube_dl/extractor/pbs.py
index 09aef7fb9..b490ef74c 100644
--- a/youtube_dl/extractor/pbs.py
+++ b/youtube_dl/extractor/pbs.py
@@ -506,12 +506,12 @@ 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)
- # lower qualities(150k and 192k) are not available as http formats
- # https://github.com/rg3/youtube-dl/commit/cbc032c8b70a038a69259378c92b4ba97b42d491#commitcomment-17313656
- # we will try to extract any http format higher than than the lowest quality documented in
- # https://projects.pbs.org/confluence/display/coveapi/COVE+Video+Specifications
- # as there also undocumented http formats formats(4500k and 6500k)
- # http://www.pbs.org/video/2365815229/
+ # Lower qualities (150k and 192k) are not available as HTTP formats (see [1]),
+ # we won't try extracting them.
+ # Since summer 2016 higher quality formats (4500k and 6500k) are also available
+ # albeit they are not documented in [2].
+ # 1. https://github.com/rg3/youtube-dl/commit/cbc032c8b70a038a69259378c92b4ba97b42d491#commitcomment-17313656
+ # 2. https://projects.pbs.org/confluence/display/coveapi/COVE+Video+Specifications
if not bitrate or int(bitrate) < 400:
continue
f_url = re.sub(r'\d+k|baseline', bitrate + 'k', http_url)