Setting "genres" and "tags" in CBZ for use with Kavita #804
-
|
Hi all 👋 I have a fun shell script that talks to the anilist API to fetch genres and tags for a particular manga. I want to write these to the CBZ archive in a way that Kavita can read them. I can correctly tag a single genre comictagger -s -t cr -m "genre=genre1" file.cbzHow do I add multiple genres to the file? And how do I add "tags" to it? This question is subject to the assumption that If there is a way to directly edit |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
I'm rather silly - I can do this:
Since I'm working in a shellscript, this is a perfectly feasible workaround for me. Still curious if/how comictagger allows for the same idea. |
Beta Was this translation helpful? Give feedback.
-
|
I have now also figured it out by going to the release commit and browsing the code there, looking at what python actually expects: comictagger -s -t cr -m "genre=genre1^,genre2^,genre3" file.cbzThe above will add 3 genres that Kavita sees as 3 separate entities! Much nicer than my above 5-step-zip-shenanigans. |
Beta Was this translation helpful? Give feedback.
I have now also figured it out by going to the release commit and browsing the code there, looking at what python actually expects:
comictagger -s -t cr -m "genre=genre1^,genre2^,genre3" file.cbzThe above will add 3 genres that Kavita sees as 3 separate entities! Much nicer than my above 5-step-zip-shenanigans.