nicknsy / jellyscrub

Smooth mouse-over video scrubbing previews for Jellyfin.
MIT License
660 stars 25 forks source link

Deleting all files made by this plugin #138

Open the-flamer opened 5 months ago

the-flamer commented 5 months ago

I have removed the plugin from my system due to its infrequent usage. i was wondering how to delete all relevant data produced by the plugin in order to free up space

MustThinkOfAName commented 5 months ago

You can go to config/metadata/library/ here you should have many folders that look like 1b da c2 bf .... Once there search for every *.bif files and delete them.

As for disk space, to give you an idea of what to expect and wherever it is worth it, I currently have in my library 15 000 bif files related to about 25to of data. All these bif files currently weight around 30go (so, 0.1%). You might not free up that much space by deleting them.

maru801 commented 4 months ago

If you're on a Linux machine, you can use the following list of commands on the system shell/CLI: find <insert-directory-path-here> -type f \( -iname "*.bif" -o -iname "*-manifest.json" \) | sed 's/\(.*\)/"\1"/g' | xargs rm -v