1
0
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:
Mike Fährmann 2024-10-03 20:09:22 +02:00
parent 8548fc3a70
commit 5b968a0a7c
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88
2 changed files with 50 additions and 0 deletions

View File

@ -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

View File

@ -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":