diff --git a/docs/home/guides/default-collections.png b/docs/home/guides/default-collections.png new file mode 100644 index 00000000..a2ec8129 Binary files /dev/null and b/docs/home/guides/default-collections.png differ diff --git a/docs/home/guides/docker.md b/docs/home/guides/docker.md index 80999673..ee0c8356 100644 --- a/docs/home/guides/docker.md +++ b/docs/home/guides/docker.md @@ -36,17 +36,16 @@ something like this That’s a command you’re going to type or paste into your terminal (OSX or Linux) or Powershell (Windows). -**IMPORTANT NOTES:** +IMPORTANT NOTE: +This walkthrough is going to be pretty pedantic. I’m assuming you’re reading it because you have no idea how to get a Docker container going, so I’m proceeding from the assumption that you want to be walked through every little detail. You’re going to deliberately cause errors and then fix them as you go through it. This is to help you understand what exactly is going on behind the scenes so that when you see these sorts of problems in the wild you will have some background to understand what’s happening. If I only give you the happy path walkthrough, then when you make a typo later on you’ll have no idea where that typo might be or why it’s breaking things. -1. This walkthrough is going to be pretty pedantic. I’m assuming you’re reading it because you have no idea how to get a Docker container going, so I’m proceeding from the assumption that you want to be walked through every little detail. You’re going to deliberately cause errors and then fix them as you go through it. This is to help you understand what exactly is going on behind the scenes so that when you see these sorts of problems in the wild you will have some background to understand what’s happening. If I only give you the happy path walkthrough, then when you make a typo later on you’ll have no idea where that typo might be or why it’s breaking things. +I am assuming you do not have any of these tools already installed. When writing this up I started with a brand new Windows 10 install. -2. I am assuming you do not have any of these tools already installed. When writing this up I started with a brand new Windows 10 install. +I'm also assuming you are doing this on a computer, not through a NAS interface or the like. You can do all this through something like the Synology NAS UI or Portainer or the like, but those aren't documented here. This uses the docker command line because it works the same on all platforms. -3. I'm also assuming you are doing this on a computer, not through a NAS interface or the like. You can do all this through something like the Synology NAS UI or Portainer or the like, but those aren't documented here. This uses the docker command line because it works the same on all platforms. +You may want to take an hour to get familiar with Docker fundamentals with the [official tutorial](https://www.docker.com/101-tutorial/). -4. You may want to take an hour to get familiar with Docker fundamentals with the [official tutorial](https://www.docker.com/101-tutorial/). - -5. DO NOT MAKE ANY CHANGES BELOW if you want this to just work. Don't change the docker image [`linuxserver.io` will not work for this, for example]; don't change the paths, etc. +DO NOT MAKE ANY CHANGES BELOW if you want this to just work. Don't change the docker image [`linuxserver.io` will not work for this, for example]; don't change the paths, etc. ### Installing Docker. @@ -57,13 +56,17 @@ The Docker install is discussed here: [Installing Docker](https://docs.docker.co Once you have Docker installed, test it at the command line with: [type this into your terminal] + ``` docker run --rm hello-world ``` + You should see something that starts with: + ``` Hello from Docker! This message shows that your installation appears to be working correctly. + ... ``` @@ -73,7 +76,7 @@ If that doesn't work, stop here until you fix that. Diagnoing and repairing Doc #### Important note on Docker images -This tutorial uses the official image, and you should, too. Don't change `meisnate12/plex-meta-manager` to the `linuxserver.io` image or any other; the lsio image specifically has [idiosyncracies](images.md) that will prevent this walkthrough from working. The official image *will* behave exactly as documented below. Others very possibly won't. +This tutorial uses the official image, and you should, too. Don't change `meisnate12/plex-meta-manager` to the `linuxserver.io` image or any other; other images may have [idiosyncracies](images.md) that will prevent this walkthrough from working. The official image *will* behave exactly as documented below. Others very possibly won't. The great thing about Docker is that all the setup you'd have to do to run PMM is already done inside the docker image. @@ -140,55 +143,82 @@ pwd This will display a full path: ````{tab} Linux +
+ ``` /home/YOURUSERNAME/plex-meta-manager ``` +
```` -````{tab} OS X +````{tab} OS X: +
+ ``` /Users/YOURUSERNAME/plex-meta-manager ``` +
```` -````{tab} Windows +````{tab} Windows: +
+ ``` C:\Users\YOURUSERNAME\plex-meta-manager ``` +
```` Add "config" onto the end of that to get the host path to your config directory, for example: ````{tab} Linux +
+ ``` /home/YOURUSERNAME/plex-meta-manager/config ``` +
```` -````{tab} OS X +````{tab} OS X: +
+ ``` /Users/YOURUSERNAME/plex-meta-manager/config ``` +
```` -````{tab} Windows +````{tab} Windows: +
+ ``` C:\Users\YOURUSERNAME\plex-meta-manager\config ``` +
```` You'll need to add this to the docker command every time you run it, like this: ````{tab} Linux +
+ ``` docker run --rm -it -v "/home/YOURUSERNAME/plex-meta-manager/config:/config:rw" meisnate12/plex-meta-manager ``` +
```` -````{tab} OS X +````{tab} OS X: +
+ ``` docker run --rm -it -v "/Users/YOURUSERNAME/plex-meta-manager/config:/config:rw" meisnate12/plex-meta-manager ``` +
```` -````{tab} Windows +````{tab} Windows: +
+ ``` docker run --rm -it -v "C:\Users\YOURUSERNAME\plex-meta-manager\config:/config:rw" meisnate12/plex-meta-manager ``` +
```` If you run that command now it will display a similar error to before, but without all the image loading: @@ -202,6 +232,7 @@ Note that I show the example path there.
Why did we create that `config' directory? +
This was done so that from here on in the instructions match between this walkthrough and the [Local walkthrough](local) are the same. @@ -215,27 +246,36 @@ The default config file contains a reference to a directory that will show an er We'll create it here so the error doesn't show up later. ````{tab} Linux +
[type this into your terminal] + ``` mkdir config/assets ``` +
```` -````{tab} OS X +````{tab} OS X: +
[type this into your terminal] + ``` mkdir config/assets ``` +
```` -````{tab} Windows +````{tab} Windows: +
[type this into your terminal] + ``` mkdir config\assets ``` +
```` ### Setting up the initial config file -```{include} wt/wt-01.md +```{include} wt/wt-01-basic-config.md ``` #### Editing the config template @@ -243,22 +283,30 @@ mkdir config\assets First, make a copy of the template: ````{tab} Linux +
Get a copy of the template to edit [type this into your terminal]: + ``` curl -fLvo config/config.yml https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager/master/config/config.yml.template ``` +
```` -````{tab} OS X +````{tab} OS X: +
Get a copy of the template to edit [type this into your terminal]: + ``` curl -fLvo config/config.yml https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager/master/config/config.yml.template ``` ```` -````{tab} Windows +````{tab} Windows: +
Go to [this URL](https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager/master/config/config.yml.template) using a web browser; choose the "Save" command, then save the file at: + ``` C:\Users\YOURUSERNAME\plex-meta-manager\config\config.yml ``` +
```` Now open the copy in an editor: @@ -266,7 +314,7 @@ Now open the copy in an editor: ```{include} wt/wt-editor.md ``` -```{include} wt/wt-02.md +```{include} wt/wt-02-config-bad-library.md ``` #### Testing the config file @@ -281,7 +329,27 @@ Then run the script again: ```{include} wt/wt-run-docker.md ``` -```{include} wt/wt-03.md +```{include} wt/wt-03-lib-err-and-fix.md +``` + + +### Creating a few sample collections. + +```{include} wt/wt-04-default-intro.md +``` + +So let's run the script and see this happen: + + +```{include} wt/wt-run-docker.md +``` + +```{include} wt/wt-04b-default-after.md +``` + +### Setting up a metadata file and creating a few sample collections. + +```{include} wt/wt-05-local-file.md ``` Save the file: @@ -294,12 +362,12 @@ Then run the script again: ```{include} wt/wt-run-docker.md ``` -```{include} wt/wt-04.md +```{include} wt/wt-06-local-after.md ``` -### Setting up a metadata file and creating a few sample collections. +### Adding Overlays to movies. -```{include} wt/wt-05.md +```{include} wt/wt-07-overlay-add.md ``` Save the file: @@ -309,12 +377,16 @@ Save the file: Then run the script again: -```{include} wt/wt-run-docker.md +```{include} wt/wt-run-shell.md +``` + +```{include} wt/wt-08-overlay-after.md ``` -```{include} wt/wt-06.md +```{include} wt/wt-09-next-steps.md ``` + ### Running the container in the background: The docker commands in this article are creating and deleting containers. @@ -333,3 +405,41 @@ docker run -d \ That will create a container that will run in the background until you explicitly stop it, surviving reboots, and waking up every morning at 5AM to process collections. There are of course [other flags you can add](../environmental), but this is the minimal command to create this container. + +There are [other ways you could schedule](scheduling.md) the `docker run` command used here if you don't want to use PMM's built-in scheduler and leave the container running all the time. + +## Other Topics + +### I want to use the develop branch + +Add the `develop` tag to the image name in your run command [or wherever you specify the image in your environment] + +``` +docker run --rm -it -v "PMM_PATH_GOES_HERE:/config:rw" meisnate12/plex-meta-manager:develop --run + ^^^^^^^ +``` + +This may not work if you are not using the official image; for example, it does not work with the lsio image. + +### I want to use the nightly branch + +Add the `nightly` tag to the image name in your run command [or wherever you specify the image in your environment] + +``` +docker run --rm -it -v "PMM_PATH_GOES_HERE:/config:rw" meisnate12/plex-meta-manager:nightly --run + ^^^^^^^ +``` + +This may not work if you are not using the official image; for example, it does not work with the lsio image. + +### I want to ensure IO amy using the master branch + +Add the `latest` tag to the image name in your run command [or wherever you specify the image in your environment] + +``` +docker run --rm -it -v "PMM_PATH_GOES_HERE:/config:rw" meisnate12/plex-meta-manager:latest --run + ^^^^^^ +``` + +This is the only version tag supplied by the lsio image. + diff --git a/docs/home/guides/finished.png b/docs/home/guides/finished.png index 7200d63b..8f1ff731 100644 Binary files a/docs/home/guides/finished.png and b/docs/home/guides/finished.png differ diff --git a/docs/home/guides/local.md b/docs/home/guides/local.md index 90d7eea4..f6bf30d8 100644 --- a/docs/home/guides/local.md +++ b/docs/home/guides/local.md @@ -45,23 +45,45 @@ This walkthrough involves typing commands into a command window. On Mac OS X or IMPORTANT: This walkthrough is assuming you are doing the entire process on the same platform; i.e. you're installing PMM and editing its config files on a single Linux, Windows, or OS X machine. It doesn't account for situations like running PMM on a Linux machine while editing the config files on your Windows box. +### Prepare a small test library + +While going through this process, Plex-Meta-Manager is going to load the movies in your library, create some collections, and apply some overlays. If you have a large library, this will be very time-consuming. + +For learning and testing, you would be well-advised to create a small test library of a reasonable size, where reasonable it probably below a thousand. + +The author has a small library of 10 movies that is used for fast tests. + +For best results, your test library will contain: + +At least two comedy movies released since 2012. +At least two movies from the IMDB top 250. +At least two movies from IMDB's Popular list. +At least two movies from IMDB's Lowest Rated. +A couple different resolutions among the movies. + +That will ensure there's something to go into each of the example collections that will be created. + ### Starting up your terminal. Since most of this is typing commands into a terminal, you'll need to have a terminal open. ````{tab} Linux +
If your Linux system is remote to your computer, connect to it via SSH. That SSH session is the terminal you will be using, so leave it open. If you are running this on a desktop Linux machine, start up the Terminal application. That window will be the terminal you will type commands into throughout this walkthrough, so leave it open. +
```` -````{tab} OS X +````{tab} OS X: Open the Terminal app; this window will be the place you type commands throughout this walkthrough, so leave it open. The Terminal app is in Applications -> Utilities. You can also use iTerm or some other terminal app if you wish. If you don't know what that means, use Terminal. +
```` -````{tab} Windows +````{tab} Windows: Use the Start menu to open PowerShell. This will be the window into which you type commands throughout this walkthrough, so leave it open. +
```` ### Installing Python. @@ -72,39 +94,33 @@ First let's check if it's installed already [type this into your terminal]: ``` python3 --version -python --version ``` -If one of these doesn't return `3.7.0` or higher, you'll need to get Python 3 installed. +If this doesn't return `3.7.0` or higher, you'll need to get Python 3 installed. ````{tab} Linux +
Describing a python install for any arbitrary linux is out of scope here, but if you're using Ubuntu, [this](https://techviewleo.com/how-to-install-python-on-ubuntu-linux/) might be useful. +
```` -````{tab} OS X +````{tab} OS X: Follow the instructions here: [Installing Python 3 on Mac OS X](https://docs.python-guide.org/starting/install3/osx/) +
```` -````{tab} Windows -Go to http://www.python.org/download and download one less than the latest version of Python for Windows in 32 or 64-bit as appropriate for your system [probably 64-bit]. As this is written, that's 3.10. The latest version of Python is 3.11, and there is one piece of PMM that is not ready for 3.11. It will be some time soon, but that isn't under PMM control, so to be safe, grab one back from the latest. +````{tab} Windows: +Go to http://www.python.org/download and download the latest version of Python for Windows in 32 or 64-bit as appropriate for your system [probably 64-bit]. As this is written, that's 3.10.4. Once downloaded, run the installer. Tick “Add to path” checkbox at the bottom and click “Install Now”. For Windows 10, you will need to enable scripts in PowerShell. Follow the instructions [here](https://windowsloop.com/enable-powershell-scripts-execution-windows-10) to do so. If you skip this step you're going to hit a hard stop in a little bit. +
```` -Once you've completed the install, verify that will will work on the command line. Close the terminal or Powershell window and open a new one, then type this into your terminal: - -``` -python3 --version -python --version -``` - -If one of these doesn't return the version you just downloaded and installed, back up and check your work above. - --- ### Installing git -To copy the Plex-Meta-Manager code to your machine, we'll be using git. This may be installed on Mac or Linux, and probably is not in Windows. +To copy the Plex-Meta-Manager code to your machine, we'll be using git. This may be installed on Mac or Linux, and probably isn't in Windows. First let's check if it's installed already [type this into your terminal]: @@ -115,12 +131,17 @@ git --version If this doesn't return a version number, you'll need to get git installed. ````{tab} Linux +
The git install is discussed here: [Download for Linux and Unix](https://git-scm.com/download/linux) +
```` -````{tab} OS X +````{tab} OS X: +
The git install is discussed here: [Git - Downloading Package](https://git-scm.com/download/mac) +
```` -````{tab} Windows +````{tab} Windows: +
Download the installer from [here](https://git-scm.com/download/windows) Run the install; you can probably just accept the defaults and click through except for the step that asks you to choose an editor; you probably want to choose something other than the default there: @@ -128,16 +149,9 @@ Run the install; you can probably just accept the defaults and click through exc ![Git Install](git-install.png) This install comes with its own command line interface. **Do not use this interface in this walkthrough**. Continue to do everything here in Powershell. +
```` -Once you've completed the install, verify that will will work on the command line. Close the terminal or Powershell window and open a new one, then type this into your terminal: - -``` -git --version -``` - -If that doesn't return the version you just downloaded and installed, back up and check your work above. - --- ### Retrieving the Plex-Meta-Manager code @@ -167,38 +181,53 @@ There are parts of the code that are assuming and expecting that you will be in
What did that do? +
``` cd ~ ``` + This changes to your home directory, which will be something like `/home/yourname` or `/Users/yourname` or `C:\Users\YourName` depending on the platform. + ``` git clone https://github.com/meisnate12/Plex-Meta-Manager ``` + This uses `git` to make a copy of (`clone`) the PMM code from where it is stored on `github`. + ``` cd Plex-Meta-Manager ``` + This moves into the directory that was created by the `clone` command. + +
Later on you can move it elsewhere if you want, but for now put it there. This will ensure that everything to follow works just like it says here. Presumably you’re reading this because the other docs are unclear to you. Don’t make unilateral changes to my assumptions while doing this.
Why use git instead of downloading the release ZIP? +
Retrieving the code with `git` makes updating simpler. When you want to update to the newest version, you can go into this directory and type: + ``` git pull ``` + No need to download a new ZIP, uncompress it, etc. + Also, if you are asked to [or want to] switch to the latest develop or nightly code, you can do so with: + ``` git checkout develop ``` + ``` git checkout nightly ``` +
--- @@ -208,46 +237,67 @@ Later on you can move it elsewhere if you want, but for now put it there. This This walkthrough is going to use a "virtual environment", since that provides a simple way to keep the requirements for a given thing self-contained; think of it as a "sandbox" for this script. It also provides a clean way to recover from mistakes, and keeps the host system clean. ````{tab} Linux +
[type this into your terminal] + ``` python3 -m venv pmm-venv ``` + If you see an error like: + ``` Error: Command '['/home/mroche/Plex-Meta-Manager/pmm-venv/bin/python3', '-Im', 'ensurepip', '--upgrade', '--default-pip']' returned non-zero exit status 1. ``` You probably need to make sure the Python 3.9-specific virtualenv support library is installed: + [type this into your terminal] + ``` sudo apt-get install python3.9-venv ``` + Then try the original venv command above again. +
```` -````{tab} OS X +````{tab} OS X: +
[type this into your terminal] + ``` python3 -m venv pmm-venv ``` + +
```` -````{tab} Windows +````{tab} Windows: +
[type this into your terminal] + ``` python -m venv pmm-venv ``` + If you see: + ``` Python was not found; run without arguments to install from the Microsoft Store, or disable this shortcut from Settings > Manage App Execution Aliases. ``` + You apparently didn't check the “Add to path” checkbox above under [installing Python](#installing-python). "Repair" your Python install and check "add python to environment variables". +
````
What did that do? +
``` python3 -m venv pmm-venv ``` + This tells Python3 to use the `venv` module to create a virtual environment called `pmm-venv`. The only visible effect will be the creation of a `pmm-venv` directory. +
That command will not produce any output if it works; it will display an error if a problem occurs. If everything is fine, you will be looking at something like this: @@ -262,23 +312,32 @@ If you aren't looking at an error, you're ready to move on. That will create the virtual environment, and then you need to activate it: ````{tab} Linux +
[type this into your terminal] + ``` source pmm-venv/bin/activate ``` +
```` -````{tab} OS X +````{tab} OS X: +
[type this into your terminal] + ``` source pmm-venv/bin/activate ``` +
```` -````{tab} Windows +````{tab} Windows: +
[type this into your terminal] + ``` .\pmm-venv\Scripts\activate ``` If you see something like this: + ```powershell .\pmm-venv\Scripts\activate : File C:\Users\mroche\Plex-Meta-Manager\pmm-venv\Scripts\Activate.ps1 cannot be loaded because running scripts is disabled on this system. For more information, see about_Execution_Policies at https:/go.microsoft.com/fwlink LinkID=135170. At line:1 char:1 @@ -287,11 +346,13 @@ At line:1 char:1 + CategoryInfo : SecurityError: (:) [], PSSecurityException + FullyQualifiedErrorId : UnauthorizedAccess ``` + You apparently skipped the "enable scripts in Powershell" step above under [installing Python](#installing-python) for Windows. You will need to take care of that before moving on. Follow the instructions [here](https://windowsloop.com/enable-powershell-scripts-execution-windows-10). Once you have done that, try the activation step again. +
```` That command will not produce any output if it works; it will display an error if a problem occurs. @@ -307,8 +368,10 @@ Note that the prompt now shows the name of the virtual environment. You may not
What did that do? +
This tells Python to make the virtual environment "active", which means to use the copy of python that is available there, install all support libraries there, etc. This keeps the PMM code and its runtime environment totally separate from your host machine's environment. +
An advantage of doing this in a virtual environment is that in the event something goes wrong with this part of the setup, you can delete that pmm-venv directory and do the setup again. @@ -316,22 +379,31 @@ An advantage of doing this in a virtual environment is that in the event somethi **IMPORTANT: In the future, when you want to run the script, you will need to do this "activation" step every time. Not the venv creation, just the activation**: ````{tab} Linux +
[type this into your terminal] + ``` source pmm-venv/bin/activate ``` +
```` -````{tab} OS X +````{tab} OS X: +
[type this into your terminal] + ``` source pmm-venv/bin/activate ``` +
```` -````{tab} Windows +````{tab} Windows: +
[type this into your terminal] + ``` .\pmm-venv\Scripts\activate ``` +
```` ### Installing requirements @@ -365,8 +437,10 @@ Don't worry about the WARNING about `pip version thus-and-such` if it comes up.
What did that do? +
This told Python to use the `pip` module to install some libraries that PMM needs. +
Let’s make sure it’s working so far. @@ -391,27 +465,36 @@ The default config file contains a reference to a directory that will show an er We'll create it here so the error doesn't show up later. ````{tab} Linux +
[type this into your terminal] + ``` mkdir config/assets ``` +
```` -````{tab} OS X +````{tab} OS X: +
[type this into your terminal] + ``` mkdir config/assets ``` +
```` -````{tab} Windows +````{tab} Windows: +
[type this into your terminal] + ``` mkdir config\assets ``` +
```` ### Setting up the initial config file -```{include} wt/wt-01.md +```{include} wt/wt-01-basic-config.md ``` #### Editing the config template @@ -419,22 +502,31 @@ mkdir config\assets First, make a copy of the template. This is going to create a copy of the base template that you can then edit. You only need to do this once. ````{tab} Linux +
[type this into your terminal] + ``` cp config/config.yml.template config/config.yml ``` +
```` -````{tab} OS X +````{tab} OS X: +
[type this into your terminal] + ``` cp config/config.yml.template config/config.yml ``` +
```` -````{tab} Windows +````{tab} Windows: +
[type this into your terminal] + ``` copy .\config\config.yml.template .\config\config.yml ``` +
```` Now open the copy in an editor: @@ -442,7 +534,7 @@ Now open the copy in an editor: ```{include} wt/wt-editor.md ``` -```{include} wt/wt-02.md +```{include} wt/wt-02-config-bad-library.md ``` #### Testing the config file @@ -457,7 +549,27 @@ Then run the script again: ```{include} wt/wt-run-shell.md ``` -```{include} wt/wt-03.md +```{include} wt/wt-03-lib-err-and-fix.md +``` + + +### Creating a few sample collections. + +```{include} wt/wt-04-default-intro.md +``` + +So let's run the script and see this happen: + + +```{include} wt/wt-run-shell.md +``` + +```{include} wt/wt-04b-default-after.md +``` + +### Setting up a metadata file and creating a sample collection. + +```{include} wt/wt-05-local-file.md ``` Save the file: @@ -470,12 +582,12 @@ Then run the script again: ```{include} wt/wt-run-shell.md ``` -```{include} wt/wt-04.md +```{include} wt/wt-06-local-after.md ``` -### Setting up a metadata file and creating a few sample collections. +### Adding Overlays to movies. -```{include} wt/wt-05.md +```{include} wt/wt-07-overlay-add.md ``` Save the file: @@ -488,7 +600,10 @@ Then run the script again: ```{include} wt/wt-run-shell.md ``` -```{include} wt/wt-06.md +```{include} wt/wt-08-overlay-after.md +``` + +```{include} wt/wt-09-next-steps.md ``` When you are done, deactivate the virtual environment: @@ -499,42 +614,54 @@ When you are done, deactivate the virtual environment: deactivate ``` + ## Other Topics ### I want to update to the latest version of PMM ````{tab} Linux +
[type this into your terminal] + ``` cd ~/Plex-Meta-Manager git pull source pmm-venv/bin/activate python -m pip install -r requirements.txt ``` +
```` -````{tab} OS X +````{tab} OS X: +
[type this into your terminal] + ``` cd ~/Plex-Meta-Manager git pull source pmm-venv/bin/activate python -m pip install -r requirements.txt ``` +
```` -````{tab} Windows +````{tab} Windows: +
[type this into your terminal] + ``` cd ~\Plex-Meta-Manager git pull .\pmm-venv\Scripts\activate python -m pip install -r requirements.txt ``` +
```` ### I want to use the develop branch ````{tab} Linux +
[type this into your terminal] + ``` cd ~/Plex-Meta-Manager git checkout develop @@ -542,9 +669,12 @@ git pull source pmm-venv/bin/activate python -m pip install -r requirements.txt ``` +
```` -````{tab} OS X +````{tab} OS X: +
[type this into your terminal] + ``` cd ~/Plex-Meta-Manager git checkout develop @@ -552,9 +682,12 @@ git pull source pmm-venv/bin/activate python -m pip install -r requirements.txt ``` +
```` -````{tab} Windows +````{tab} Windows: +
[type this into your terminal] + ``` cd ~/Plex-Meta-Manager git checkout develop @@ -562,6 +695,7 @@ git pull .\pmm-venv\Scripts\activate python -m pip install -r requirements.txt ``` +
```` ### I want to use the nightly branch diff --git a/docs/home/guides/overlays.png b/docs/home/guides/overlays.png new file mode 100644 index 00000000..5f2ae8d3 Binary files /dev/null and b/docs/home/guides/overlays.png differ diff --git a/docs/home/guides/wt/wt-01-basic-config.md b/docs/home/guides/wt/wt-01-basic-config.md new file mode 100644 index 00000000..7ba571b1 --- /dev/null +++ b/docs/home/guides/wt/wt-01-basic-config.md @@ -0,0 +1,34 @@ +Next you’ll set up the config file. This tells PMM how to connect to Plex and a variety of other services. + +Before you do this you’ll need: + +1. TMDb API key. They’re free. +1. Plex URL and Token + +There are a bunch of other services you *can* configure in the config file, but these two are the bare minimum. + +#### Getting a TMDb API Key + +Note that if you already have an API key, you can use that one. You don’t need another. + +Go to https://www.themoviedb.org/. Log into your account [or create one if you don’t have one already], then go to “Settings” under your account menu. + +In the sidebar menu on the left, select “API”. + +Click to generate a new API key under "Request an API Key". If there is already one there, copy it and go to the next step. + +There will be a form to fill out; the answers are arbitrary. The URL can be your personal website, or probably even google.com or the like. + +Once you’ve done that there should be an API Key available on this screen. + +Copy that value, you’ll need it for the config file. + +#### Getting a Plex URL and Token + +The Plex URL is whatever URL you’d use **from this machine** to connect directly to your Plex server [i.e. NOT app.plex.tv]. + +As with the TMDb API Key, if you already have a Plex Token, you can use that one. + +This article will describe how to get a token: [Finding an authentication token](https://support.plex.tv/articles/204059436-finding-an-authentication-token-x-plex-token/) + + diff --git a/docs/home/guides/wt/wt-02-config-bad-library.md b/docs/home/guides/wt/wt-02-config-bad-library.md new file mode 100644 index 00000000..186eedc3 --- /dev/null +++ b/docs/home/guides/wt/wt-02-config-bad-library.md @@ -0,0 +1,66 @@ + +--- + +Scroll down a bit and update the three things you just collected; Plex URL, Plex Token, and TMDb API Key. + +```yaml +plex: # Can be individually specified per library as well + url: http://bing.bang.boing <<< ENTER YOUR PLEX URL HERE + token: XXXXXXXXXXXXXXXXXXXX <<< ENTER YOUR PLEX TOKEN HERE + timeout: 60 + clean_bundles: false + empty_trash: false + optimize: false +tmdb: + apikey: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX <<< ENTER YOUR TMDb API KEY HERE + language: en +``` + +Now scroll up and look at the top section: + +```yaml +## This file is a template remove the .template to use the file + +libraries: # This is called out once within the config.yml file + Movies: # Each library must match the Plex library name + metadata_path: + - pmm: basic # This is a file within the defaults folder in the Repository + - pmm: imdb # This is a file within the defaults folder in the Repository + # see the wiki for how to use local files, folders, URLs, or files from git + overlay_path: + - remove_overlays: false # Set this to true to remove all overlays + - pmm: ribbon # This is a file within the defaults folder in the Repository + # see the wiki for how to use local files, folders, URLs, or files from git + TV Shows: + metadata_path: + - pmm: basic # This is a file within the defaults folder in the Repository + - pmm: imdb # This is a file within the defaults folder in the Repository + # see the wiki for how to use local files, folders, URLs, or files from git + overlay_path: + - remove_overlays: false # Set this to true to remove all overlays + - pmm: ribbon # This is a file within the defaults folder in the Repository + # see the wiki for how to use local files, folders, URLs, or files from git + Anime: + metadata_path: + - pmm: basic # This is a file within the defaults folder in the Repository + - pmm: anilist # This is a file within the defaults folder in the Repository + # see the wiki for how to use local files, folders, URLs, or files from git + Music: + metadata_path: + - file: config/Music.yml # This is a local file THAT YOU MIGHT CREATE +``` + +You will ultimately need an entry here for each of the libraries on which you want PMM to act. Those top-level elements [Movies, TV Shows, Anime, Music] are names of libraries on your Plex server. + +For now, delete the “TV Shows”, “Anime”, and "Music" sections and change the name of the “Movies” section to “Movies-NOSUCHLIBRARY": + +```yaml +libraries: + Movies-NOSUCHLIBRARY: ## <<< CHANGE THIS LINE + metadata_path: + - pmm: basic # This is a file within the defaults folder in the Repository + - pmm: imdb # This is a file within the defaults folder in the Repository + # see the wiki for how to use local files, folders, URLs, or files from git +``` + +This is intended to cause an error for illustration that you will then fix. diff --git a/docs/home/guides/wt/wt-03-lib-err-and-fix.md b/docs/home/guides/wt/wt-03-lib-err-and-fix.md new file mode 100644 index 00000000..244cac85 --- /dev/null +++ b/docs/home/guides/wt/wt-03-lib-err-and-fix.md @@ -0,0 +1,38 @@ +I’ve removed some of the lines for space, but have left the important bits: + +``` +... +| Starting Run| +... +| Locating config... +| +| Using /Users/mroche/Plex-Meta-Manager/config/config.yml as config +... +| Connecting to TMDb... +| TMDb Connection Successful +... +| Connecting to Plex Libraries... +... +| Connecting to Movies-NOSUCHLIBRARY Library... | +... +| Plex Error: Plex Library Movies-NOSUCHLIBRARY not found | +| Movies-NOSUCHLIBRARY Library Connection Failed | +|====================================================================================================| +| Plex Error: No Plex libraries were connected to | +... +``` + +You can see there that PMM found its config file, was able to connect to TMDb, was able to connect to Plex, and then failed trying to read the “Movies-NOSUCHLIBRARY" library, which of course doesn’t exist. + +Open the config file again and change "Movies-NOSUCHLIBRARY" to reflect *your own* Movie library in Plex. + +My Movies library is called “Main Movies", so mine looks like this: + +```yaml +libraries: + Main Movies: ## <<< CHANGE THIS LINE + metadata_path: + - pmm: basic # This is a file within the defaults folder in the Repository + - pmm: imdb # This is a file within the defaults folder in the Repository + # see the wiki for how to use local files, folders, URLs, or files from git +``` diff --git a/docs/home/guides/wt/wt-04-default-intro.md b/docs/home/guides/wt/wt-04-default-intro.md new file mode 100644 index 00000000..ffb75d7a --- /dev/null +++ b/docs/home/guides/wt/wt-04-default-intro.md @@ -0,0 +1,21 @@ +Plex-Meta-Manager provides an extensive collection of "default" metadata files. + +These files provide a simple way for you to create collections based on franchises or awards or actors, etc. + +The default config links to two of them: + +``` + - pmm: basic + - pmm: imdb +``` + +The first will create: + + Newly Released + New Episodes + +The second will create: + + IMDb Popular + IMDb Top 250 + IMDb Lowest Rated diff --git a/docs/home/guides/wt/wt-04b-default-after.md b/docs/home/guides/wt/wt-04b-default-after.md new file mode 100644 index 00000000..f2e56a4c --- /dev/null +++ b/docs/home/guides/wt/wt-04b-default-after.md @@ -0,0 +1,9 @@ +Depending on the size of the library, this may take a while. + +As it builds the collections, you should see a fair amount of logging about which movies are being added and which ones aren’t found. Once it completes, go to Plex, go to your Movies library, and click “Collections” at the top. + +On my test library, this created four collections. You may see fewer depending on what specific movies are in that library. + +![default-collections](default-collections.png) + +Perhaps you can do everything you want with the defaults. You can investigate what they can provide under the "Defaults" heading at the top. diff --git a/docs/home/guides/wt/wt-05-local-file.md b/docs/home/guides/wt/wt-05-local-file.md new file mode 100644 index 00000000..868fad43 --- /dev/null +++ b/docs/home/guides/wt/wt-05-local-file.md @@ -0,0 +1,64 @@ +If the default metadata files do not allow you to create the collections you want, you can define your own collections in your own metadata files to do whatever you like within the capabilities of PMM. We will create a simple collection that will contain 20 comedy movies since 2012. + +First, open the metadata file [this will create the file if it doesn't already exist]: + +````{tab} Linux +
+[type this into your terminal] + +``` +nano "config/Movies.yml" +``` +
+```` +````{tab} OS X: +
+[type this into your terminal] + +``` +nano "config/Movies.yml" +``` +
+```` +````{tab} Windows: +
+[type this into your terminal] + +``` +notepad "config\Movies.yml" +``` +
+```` + +In this file, add the following, exactly as it is shown here: + +```yaml +collections: + Recent Comedy: + plex_search: + all: + genre: Comedy + year.gte: 2012 + limit: 20 +``` + +Save the file: + +```{include} wt/wt-save.md +``` + +Next, add a reference to this file to your config file. + +Open the config file again and add the last line shown below: + +```yaml +libraries: + Main Movies: ## <<< CHANGE THIS LINE + metadata_path: + - pmm: basic # This is a file within the defaults folder in the Repository + - pmm: imdb # This is a file within the defaults folder in the Repository + # see the wiki for how to use local files, folders, URLs, or files from git + - file: config/Movies.yml +``` + +That line needs to match the path you used when you created the file a moment ago. \ No newline at end of file diff --git a/docs/home/guides/wt/wt-06-local-after.md b/docs/home/guides/wt/wt-06-local-after.md new file mode 100644 index 00000000..4ccda43d --- /dev/null +++ b/docs/home/guides/wt/wt-06-local-after.md @@ -0,0 +1,16 @@ +You should see that the metadata file gets loaded: + +``` +| Loading Metadata File: config/Movies.yml +| Metadata File Loaded Successfully +``` + +As it builds the collection, you should see a fair amount of logging about which movies are being added and which ones aren’t found. Once it completes, go to Plex, go to your Movies library, and click “Collections” at the top. + +You should see the new collection: + +![Finished Collections](finished.png) + +When you click into each, you’ll see the movies that PMM added to each collection. + +Each time you run the script, new movies that match the collection definitions will be added. For example, if you don’t have “The ShawShank Redemption” now, when you download it and run PMM again it will be added to the IMDB 250 collection. diff --git a/docs/home/guides/wt/wt-07-overlay-add.md b/docs/home/guides/wt/wt-07-overlay-add.md new file mode 100644 index 00000000..70767e5b --- /dev/null +++ b/docs/home/guides/wt/wt-07-overlay-add.md @@ -0,0 +1,18 @@ +The default metadata files include a set of overlays you can add to your posters. + +We'll add resolution overlays to the movies in this library as an example. + +Open the config file again and add the last three lines shown below: + +```yaml +libraries: + Main Movies: ## <<< CHANGE THIS LINE + metadata_path: + - pmm: basic # This is a file within the defaults folder in the Repository + - pmm: imdb # This is a file within the defaults folder in the Repository + # see the wiki for how to use local files, folders, URLs, or files from git + - file: config/Movies.yml + overlay_path: + - remove_overlays: false + - pmm: resolution +``` diff --git a/docs/home/guides/wt/wt-08-overlay-after.md b/docs/home/guides/wt/wt-08-overlay-after.md new file mode 100644 index 00000000..71ae9e68 --- /dev/null +++ b/docs/home/guides/wt/wt-08-overlay-after.md @@ -0,0 +1,23 @@ +While it runs this time you should see the previous collections go by pretty quickly, since they aren't changing, and then a lot of logging as PMM decides which overlays apply to which movies. + +This may take quite a while depending on the size of this library. + +Eventually, you'll see it start applying overlays to all your movies: + +``` +|=========================================================| +| Applying Overlays for the Movies - 4K Library | +|=========================================================| +| | +| 10 Cloverfield Lane | Overlays Applied: 4K-HDR | +| 10 Minutes Gone | Overlays Applied: 4K-HDR | +| 10 Things I Hate About You | Overlays Applied: 4K-HDR | +| 12 Mighty Orphans | Overlays Applied: 4K-HDR | +| 12 Monkeys | Overlays Applied: 4K-DV | +| 12 Strong | Overlays Applied: 4K-HDR | +... +``` + +When it finishes, go to the Library tab in this library in Plex: + +![Overlaid posters](overlays.png) diff --git a/docs/home/guides/wt/wt-09-next-steps.md b/docs/home/guides/wt/wt-09-next-steps.md new file mode 100644 index 00000000..7c2656cc --- /dev/null +++ b/docs/home/guides/wt/wt-09-next-steps.md @@ -0,0 +1,39 @@ +### What comes next: + +If you want to remove those overlays, open the config file, change the value of `remove_overlays` to `true`, and rerun PMM. + +``` + overlay_path: + - remove_overlays: true + - pmm: resolution +``` + +If you want to remove those collections, open the config file, remove or comment out [add `#` to the beginning] any or all of those lines under `metadata_path`, and delete the collections manually from Plex. + +```yaml +libraries: + Main Movies: + metadata_path: + # - pmm: basic # This is a file within the defaults folder in the Repository + # - pmm: imdb # This is a file within the defaults folder in the Repository + # see the wiki for how to use local files, folders, URLs, or files from git + # - file: config/Movies.yml + overlay_path: + - remove_overlays: false + - pmm: resolution +``` + +Edit `Movies.yml` to reflect the actions you want PMM to perform on *your* libraries. + +TV Shows and other libraries work the same way as you've seen above. Create a section under `Libraries:` in the config.yml, refer to default files or create a metadata file, define collections, run the script. + +Investigate the rest of the wiki to learn about everything Plex-Meta-Manager can do for you. + +### Runtime and Environment Flags + +The command in this walkthrough will run all collections and libraries immediately. If you want to modify that behavior to run just one or some collections, or just one library, or just overlays or the like, review the [Run Commands & Environment Variables](../../environmental.md). + +### Creating Collections, Overlays, Playlists, etc. + +These things are all generally defined in metadata files that are referred to in the config file. The starting point for creating these files is [here](../../../metadata/metadata.md). + diff --git a/docs/home/guides/wt/wt-editor.md b/docs/home/guides/wt/wt-editor.md index 2184c632..fd0097d7 100644 --- a/docs/home/guides/wt/wt-editor.md +++ b/docs/home/guides/wt/wt-editor.md @@ -1,4 +1,5 @@ ````{tab} Linux +
[type this into your terminal] ``` @@ -22,8 +23,10 @@ sudo apt install nano ``` You can use any other text editor you wish, provided it saves files as PLAIN TEXT. `vi`, `emacs`, etc. +
```` -````{tab} OS X +````{tab} OS X: +
[type this into your terminal] ``` @@ -33,14 +36,17 @@ nano config/config.yml I’m using `nano` here simply because it’s built into OSX. You can use any other text editor you wish, provided it saves files as PLAIN TEXT. BBedit, TextMate, VSCode, etc. A common mistake is using TextEdit.app, which saves files as RTF by default. +
```` -````{tab} Windows +````{tab} Windows: +
[type this into your terminal] ``` notepad .\config\config.yml ``` I’m using `notepad` here simply because it’s built into Windows. You can use any other text editor you wish, provided it saves files as PLAIN TEXT. +
```` From here on in, when this walkthrough says "open the config file", I mean this `nano` or `notepad` command. **Don't copy the template again**. diff --git a/docs/home/guides/wt/wt-save.md b/docs/home/guides/wt/wt-save.md index da5c6f0d..a3f847c9 100644 --- a/docs/home/guides/wt/wt-save.md +++ b/docs/home/guides/wt/wt-save.md @@ -1,9 +1,14 @@ ````{tab} Linux +
If you're using `nano`, type control-`x`, then `y`, then the enter key. +
```` -````{tab} OS X +````{tab} OS X: +
If you're using `nano`, type control-`x`, then `y`, then the enter key.
```` -````{tab} Windows +````{tab} Windows: +
If you're using `notepad`, type alt-`s` or choose `Save` from the `File` menu. +
````