Jellyfin Forum
Bulk remove tags? - Printable Version

+- Jellyfin Forum (https://forum.jellyfin.org)
+-- Forum: Support (https://forum.jellyfin.org/f-support)
+--- Forum: General Questions (https://forum.jellyfin.org/f-general-questions)
+--- Thread: Bulk remove tags? (/t-bulk-remove-tags)



Bulk remove tags? - Jiří Fiala - 2024-06-02

I have used a 3rd-party script to add Jellyfin tags (not ID3 tags!) to my collection (goal was the ability to search movies by country, which JF lacks). It has gone overboard and I ended up with hundreds of useless tags.

Any way to completely wipe them? I tried the builtin Metadata view in JF but that just spins indefinitely.

Thanks


RE: Bulk remove tags? - TheDreadPirate - 2024-06-02

Try Musicbrainz Picard? I think it should remove and replace the tags.


RE: Bulk remove tags? - Jiří Fiala - 2024-06-02

I meant Jellyfin tags, not ID3 tags. I'll reword the OP.


RE: Bulk remove tags? - paulc - 2024-06-02

Doesn't Tiny Media Manager let you bulk edit? Maybe bulk delete tags with it


RE: Bulk remove tags? - Jiří Fiala - 2024-06-02

I was able to hack it by manually editing the JF sqlite database... thanks all


RE: Bulk remove tags? - pcm - 2024-06-03

(2024-06-02, 09:44 PM)Jiří Fiala Wrote: I was able to hack it by manually editing the JF sqlite database... thanks all

do you mind sharing the SQL queries ? Sounds like a handy thing to have ... I am about to go on a automated tagging-spree myself and doesn't hurt to have something like this handy.


RE: Bulk remove tags? - Jiří Fiala - 2024-06-03

I think it was

DELETE FROM TypedBaseItems
WHERE Tags IS NOT NULL

I had to look up SQL queries on Youtube, I'm not a developer or db guy. But it wasn't so bad. I used SQLiteStudio (free, multiplatform).


RE: Bulk remove tags? - pcm - 2024-06-04

thanks!