Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[facebook] add support #5626

Open
wants to merge 27 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
1c9d170
[facebook] add support
zWolfrost May 22, 2024
0146e49
renamed extractors & subcategories
zWolfrost May 22, 2024
edcba3f
better stability, modularity & naming
zWolfrost May 23, 2024
fe6f1bf
added single photo extractor, warnings & retries
zWolfrost May 26, 2024
20ee175
more metadata + extract author followups
zWolfrost May 31, 2024
252c6d6
renamed "album" mentions to "set" for consistency
zWolfrost May 31, 2024
89ba87d
cookies are now only used when necessary
zWolfrost Jun 16, 2024
341a8a0
removed f-strings
zWolfrost Jun 16, 2024
f1d1fb5
added way to continue extraction from where it left off
zWolfrost Jun 17, 2024
22158c0
fixed bug wrong subcategory
zWolfrost Jun 17, 2024
e5364d3
added individual video extraction
zWolfrost Jun 17, 2024
0577df5
extract audio + added ytdl option
zWolfrost Jun 18, 2024
19a2e0c
updated setextract regex
zWolfrost Jun 18, 2024
4a714dc
added option to disable start warning
zWolfrost Jun 23, 2024
a86a70f
fixed description metadata bug
zWolfrost Jul 1, 2024
f7833a8
removed cookie "safeguard" + fixed for private profiles
zWolfrost Jul 1, 2024
b8cac26
Merge branch 'master' into facebook
zWolfrost Aug 2, 2024
9113eca
fixed a few bugs regarding profile parsing
zWolfrost Aug 9, 2024
16c34e0
a few bugfixes
zWolfrost Aug 16, 2024
2f144e8
retrigger checks
zWolfrost Aug 17, 2024
c04224c
Final cleanups
zWolfrost Aug 30, 2024
e89982c
fixed regex
zWolfrost Aug 30, 2024
3d7ae88
trigger checks
zWolfrost Aug 31, 2024
3818d57
fixed livestream playback extraction + bugfixes
zWolfrost Sep 2, 2024
16a4262
fixed regex
zWolfrost Sep 2, 2024
44960de
fixed filename fallback
zWolfrost Sep 2, 2024
c2e9d40
fixed retrying when a photo url is not found
zWolfrost Sep 6, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions docs/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2018,6 +2018,30 @@ Description
* ``"hitomi"``: Download the corresponding gallery from ``hitomi.la``


extractor.facebook.author-followups
-------------------------
Type
``bool``
Default
``false``
description
Extract comments that include photo attachments made by the author of the post.


extractor.facebook.videos
-----------------------
Type
* ``bool``
* ``string``
Default
``true``
Description
Control video download behavior.

* ``true``: Extract and download video & audio separately.
* ``"ytdl"``: Let |ytdl| handle video extraction and download, and merge video & audio streams.


extractor.fanbox.embeds
-----------------------
Type
Expand Down
6 changes: 6 additions & 0 deletions docs/supportedsites.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,12 @@ Consider all listed sites to potentially be NSFW.
<td>Favorites, Galleries, Search Results</td>
<td>Supported</td>
</tr>
<tr>
<td>Facebook</td>
<td>https://www.facebook.com/</td>
<td>Photos, Profiles, Sets, Videos</td>
<td><a href="https://github.com/mikf/gallery-dl#cookies">Cookies</a></td>
</tr>
<tr>
<td>Fanleaks</td>
<td>https://fanleaks.club/</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 @@ -44,6 +44,7 @@
"e621",
"erome",
"exhentai",
"facebook",
"fanbox",
"fanleaks",
"fantia",
Expand Down
Loading
Loading