projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ef41434
)
[pinterest] reduce the number of HLS format requests
author
Remita Amine
<remitamine@gmail.com>
Fri, 12 Mar 2021 17:11:11 +0000
(18:11 +0100)
committer
Remita Amine
<remitamine@gmail.com>
Fri, 12 Mar 2021 17:11:11 +0000
(18:11 +0100)
youtube_dl/extractor/pinterest.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/pinterest.py
b/youtube_dl/extractor/pinterest.py
index b249c9eda87988fc629af40c431d723a2850a91e..42528d74693ae702fd026618d16d1aedf528ad66 100644
(file)
--- a/
youtube_dl/extractor/pinterest.py
+++ b/
youtube_dl/extractor/pinterest.py
@@
-31,6
+31,7
@@
class PinterestBaseIE(InfoExtractor):
title = (data.get('title') or data.get('grid_title') or video_id).strip()
+ urls = []
formats = []
duration = None
if extract_formats:
@@
-38,8
+39,9
@@
class PinterestBaseIE(InfoExtractor):
if not isinstance(format_dict, dict):
continue
format_url = url_or_none(format_dict.get('url'))
- if not format_url:
+ if not format_url
or format_url in urls
:
continue
+ urls.append(format_url)
duration = float_or_none(format_dict.get('duration'), scale=1000)
ext = determine_ext(format_url)
if 'hls' in format_id.lower() or ext == 'm3u8':