Skip to content

luigi311/JellyPlex-Watched

 
 

Repository files navigation

JellyPlex-Watched

Codacy Badge

Sync watched between jellyfin, plex and emby locally

Description

Keep in sync all your users watched history between jellyfin, plex and emby servers locally. This uses file names and provider ids to find the correct episode/movie between the two. This is not perfect but it works for most cases. You can use this for as many servers as you want by entering multiple options in the .env plex/jellyfin section separated by commas.

Features

Plex

  • Match via filenames
  • Match via provider ids
  • Map usernames
  • Use single login
  • One way/multi way sync
  • Sync watched
  • Sync in progress

Jellyfin

  • Match via filenames
  • Match via provider ids
  • Map usernames
  • Use single login
  • One way/multi way sync
  • Sync watched
  • Sync in progress

Emby

  • Match via filenames
  • Match via provider ids
  • Map usernames
  • Use single login
  • One way/multi way sync
  • Sync watched
  • Sync in progress

Configuration

Full list of configuration options can be found in the .env.sample

Installation

Baremetal

  • Setup virtualenv of your choice

  • Install dependencies

      pip install -r requirements.txt
  • Create a .env file similar to .env.sample, uncomment whitelist and blacklist if needed, fill in baseurls and tokens

  • Run

    python main.py

Docker

  • Build docker image

    docker build -t jellyplex-watched .
  • or use pre-built image

    docker pull luigi311/jellyplex-watched:latest

With variables

  • Run

    docker run --rm -it -e PLEX_TOKEN='SuperSecretToken' luigi311/jellyplex-watched:latest

With .env

  • Create a .env file similar to .env.sample and set the variables to match your setup

  • Run

     docker run --rm -it -v "$(pwd)/.env:/app/.env" luigi311/jellyplex-watched:latest

Troubleshooting/Issues

  • Jellyfin

    • Attempt to decode JSON with unexpected mimetype, make sure you enable remote access or add your docker subnet to lan networks in jellyfin settings
  • Configuration

    • Do not use quotes around variables in docker compose

Contributing

I am open to receiving pull requests. If you are submitting a pull request, please make sure run it locally for a day or two to make sure it is working as expected and stable. Make all pull requests against the dev branch and nothing will be merged into the main without going through the lower branches.

License

This is currently under the GNU General Public License v3.0.