You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
2.8 KiB
2.8 KiB
search | ||
---|---|---|
|
Switching from Plex-Meta-Manager to Kometa
You're using Plex-Meta-Manager now and need to switch to Kometa? Here's what you have to do:
???+ danger "Important"
These instructions are assuming that your existing config file is working with a recent [say 1.19 or newer] pre-rebrand Plex-Meta-Manager release.
If you are using Git:
- cd into the directory where you installed Plex-Meta-Manager
- retrieve the new code and reinstall requirements [see below for commands]. This is the same thing you'd do with any upgrade.
- change
plex_meta_manager.py
in any run command you use tokometa.py
. For example:python kometa.py --run
. - You're done.
The commands you need for step 2 are:
git stash
git stash clear
git pull
# activate your venv here if you use one and it is not already active
python -m pip install -r requirements.txt
If you are using Docker:
- change the image you are using from
meisnate12/plex-meta-manager:SOME_TAG
tokometateam/kometa
, You'll change this wherever it's specified in your situation, adocker run
command, a docker compose file, some field in a NAS UI, wherever. - If needed, rebuild the container however that happens in your context.
docker compose up -d
, clicking a button, whatever. - You're done.
If you downloaded it as a zip file:
- uncompress the zip file
- cd into that directory and do the same setup you did initially (create a virtual environment, maybe, then install requirements. There's no way for us to know what you did when you set it up, so we can't give more specific instructions than that)
- copy the config directory from your Plex-Meta-Manager dir into this directory.
- change
plex_meta_manager.py
in any run command you use tokometa.py
. For example:python kometa.py --run
. - You're done.
Other things you can do if you wish:
Neither of these two things are required.
- change
- pmm:
in theconfig.yml
file to- default:
; the docs now use- default:
, but either will work for the foreseeable future, so you do not need to do this. You may want to, and if so go ahead, but you do not have to. - change the name of any directories you are using to "kometa". The app does not care about that part of the path. It only cares about the contents of the config directory, but it can be located anywhere. You do not *have to change
/some/path/to/Plex-Meta-Manager
to/some/path/to/Kometa
. Again, you may want to, and if so go ahead, but you do not have to.
For example, this:
libraries:
Movies:
remove_overlays: false
collection_files:
- pmm: basic
- pmm: imdb
Could, but does not have to, become:
libraries:
Movies:
remove_overlays: false
collection_files:
- default: basic
- default: imdb