Improvement to Furaffinity Extractor -- Artist Name added to file or directory #5922
Closed
NoviceOtter
started this conversation in
Ideas
Replies: 1 comment 1 reply
-
{
"extractor": {
"furaffinity": {
"favorite": {
"directory": ["{category}", "{user!l}", "{artist}"],
"filename": "{artist} {id}{title:? //}.{extension}"
}
}
}
} If you already have |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I was using gallery-dl to make an archival copy of my favourites from furaffinity. The naming convention for the files makes it a bit tricky to get the artists sorted once they download. I don't want to break the code of the project as I'm not super familiar with python, but it looks like someone is parsing the data needed out already. At the part where the directory format and or file name is stored i think it should be possible to add {artist} to either the directory or filename. Example below,
directory_fmt = ("{category}", "{user!l}", "{artist}")
or
filename_fmt = "{artist}{id}{title:? //}.{extension}"
If someone could let me know if that would work or if they can do a pull request to add this in. I don't have the confidence to do it myself and I don't want to break it like I said. If this would be possible to do just from the config file please let me know as I cant seem to figure it out.
Beta Was this translation helpful? Give feedback.
All reactions