mastodon reblog file name with original poster and texts posts? #7794
Answered
by
mikf
traplover4200
asked this question in
Q&A
-
|
how/can i have gallery-dl name the files from reblog with original poster username_reposter username_post id |
Beta Was this translation helpful? Give feedback.
Answered by
mikf
Jul 8, 2025
Replies: 1 comment
-
Conditional
{
"extractor": {
"mastodon": {
"reblogs": true,
"text-posts": true,
"filename": {
"reblog": "{reblog['account']['acct']} {account['acct']} {id}_{num}.{extension}",
"" : "{account['acct']} {id}_{num}.{extension}"
},
"postprocessors": {
"name": "metadata",
"event": "post",
"filename": "{id}.txt",
"format": "{content}\n{reblog[content]:?/\n/}"
}
}
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
traplover4200
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Conditional
filenameformat stringsmetadatapostprocessor with"event": "post"{ "extractor": { "mastodon": { "reblogs": true, "text-posts": true, "filename": { "reblog": "{reblog['account']['acct']} {account['acct']} {id}_{num}.{extension}", "" : "{account['acct']} {id}_{num}.{extension}" }, "postprocessors": { "name": "metadata", "event": "post", "filename": "{id}.txt", "format": "{content}\n{r…