Skip to content

Commit

Permalink
[weverse] add extractors
Browse files Browse the repository at this point in the history
  • Loading branch information
bradenhilton committed Feb 11, 2024
1 parent 4474cea commit a2ad565
Show file tree
Hide file tree
Showing 7 changed files with 859 additions and 0 deletions.
23 changes: 23 additions & 0 deletions docs/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3936,6 +3936,29 @@ Description
Download video files.


extractor.weverse.embeds
------------------------
Type
``bool``
Default
``true``
Description
Control behavior on ``Media`` posts containing YouTube embeds.

* ``true``: Extract embed URLs and download them.
* ``false``: Ignore embeds.


extractor.weverse.videos
------------------------
Type
* ``bool``
Default
``true``
Description
Download video files.


extractor.ytdl.enabled
----------------------
Type
Expand Down
7 changes: 7 additions & 0 deletions docs/gallery-dl.conf
Original file line number Diff line number Diff line change
Expand Up @@ -366,6 +366,13 @@
"retweets": true,
"videos": true
},
"weverse": {
"username": null,
"password": null,
"cookies": null,
"embeds": true,
"videos": true
},
"ytdl":
{
"enabled": false,
Expand Down
6 changes: 6 additions & 0 deletions docs/supportedsites.md
Original file line number Diff line number Diff line change
Expand Up @@ -985,6 +985,12 @@ Consider all listed sites to potentially be NSFW.
<td>Albums, Articles, Feeds, Images from Statuses, User Profiles, Videos</td>
<td></td>
</tr>
<tr>
<td>Weverse</td>
<td>https://weverse.io/</td>
<td>Feed Tab, Artist Tab, Media Files, Media Categories, Media Tabs, Member Profiles, Moments, Posts</td>
<td><a href="https://github.com/mikf/gallery-dl#cookies">Cookies</a></td>
</tr>
<tr>
<td>WikiArt.org</td>
<td>https://www.wikiart.org/</td>
Expand Down
1 change: 1 addition & 0 deletions gallery_dl/extractor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@
"webmshare",
"webtoons",
"weibo",
"weverse",
"wikiart",
"wikifeet",
"wikimedia",
Expand Down
Loading

0 comments on commit a2ad565

Please sign in to comment.