Tags on picture
#7037
Replies: 1 comment 1 reply
-
The
What is that supposed to mean? |
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
-
Hello, I would like to acknowledge that there is a topic similar to this "#5680" what I want if possible a bit more of explanation of how to run it. so basically after download the tags as txt file --write-tags "" I want it to directly implemented in the image.
he used a power shell code to run it but I have no clue as how to implement it. i tried to save the last code and saved it as .bat after clicking twice or throwing it in powershell still nothing happened. i changed the directory and kept everything the same
1- how do I run it alone without first running the gallery-dl?
2- how to have it automatically run like he said with .bat after the gallery-dl. (do i write below the command of the gallery-dl -i "url"
how does it open the powershell after a cmd
-this is my config:
"pixiv": {
"archive": "base/directory/of/gallery-dl.config",
"filename": "{id}_p{num}.{extension}",
"tags": "translated",
"image-filter": ["x_restrict"],
"directory": ["Pixiv", "{user[account]} {user[id]}", "{title}"],
}
-this is the .bat
gallery-dl --write-tags -i "txtfile/location"
#$directory = "exactly/as/base/directory/of/gallery-dl.config"
Get-ChildItem -Path $directory -Recurse -Filter ".png.txt", ".jpg.txt" | ForEach-Object {$txtFile -replace '.txt$ ', ''
$txtFile = $_.FullName
$imgFile =
}
Beta Was this translation helpful? Give feedback.
All reactions