mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 02:32:33 +01:00
[boosty] extend image URLs with 'signedQuery' (#2387)
This commit is contained in:
parent
8548fc3a70
commit
5b968a0a7c
@ -1508,6 +1508,54 @@ Description
|
||||
Download videos.
|
||||
|
||||
|
||||
extractor.boosty.allowed
|
||||
------------------------
|
||||
Type
|
||||
``bool``
|
||||
Default
|
||||
``true``
|
||||
Description
|
||||
Request only available posts.
|
||||
|
||||
|
||||
extractor.boosty.bought
|
||||
-----------------------
|
||||
Type
|
||||
``bool``
|
||||
Default
|
||||
``false``
|
||||
Description
|
||||
Request only purchased posts for ``feed`` results.
|
||||
|
||||
|
||||
extractor.boosty.metadata
|
||||
-------------------------
|
||||
Type
|
||||
``bool``
|
||||
Default
|
||||
``false``
|
||||
Description
|
||||
Provide detailed ``user`` metadata.
|
||||
|
||||
|
||||
extractor.boosty.videos
|
||||
-----------------------
|
||||
Type
|
||||
* ``bool``
|
||||
* ``list`` of ``strings``
|
||||
Default
|
||||
``true``
|
||||
Example
|
||||
``["full_hd", "high", "medium"]``
|
||||
Description
|
||||
Download videos.
|
||||
|
||||
| If this is a ``list``, it selects which format to try to download.
|
||||
| Possibly available formats are
|
||||
``"quad_hd"``, ``"ultra_hd"``, ``"full_hd"``,
|
||||
``"high"``, ``"medium"``, ``"low"``
|
||||
|
||||
|
||||
extractor.bunkr.tlds
|
||||
--------------------
|
||||
Type
|
||||
|
@ -81,6 +81,8 @@ class BoostyExtractor(Extractor):
|
||||
content.append(c[0])
|
||||
|
||||
elif type == "image":
|
||||
if post["signedQuery"]:
|
||||
block["url"] += post["signedQuery"]
|
||||
files.append(block)
|
||||
|
||||
elif type == "ok_video":
|
||||
|
Loading…
Reference in New Issue
Block a user