No description
Find a file
2023-11-05 10:58:41 +05:30
.github/workflows Minor refactor and automatic installation of required packages 2023-11-04 23:43:42 +05:30
config Fixed Discord IPC pipe path for Unix 2023-11-05 10:58:41 +05:30
core Fixed Discord IPC pipe path for Unix 2023-11-05 10:58:41 +05:30
models Added config option to hide media's total duration 2022-09-06 01:05:22 +05:30
utils Minor refactor and improvements 2023-11-05 10:54:45 +05:30
.dockerignore Minor refactor and automatic installation of required packages 2023-11-04 23:43:42 +05:30
.gitignore Dockerisation 2023-10-01 19:11:42 +05:30
CONTRIBUTING.md Tweaks 2022-09-06 01:22:18 +05:30
Dockerfile Minor refactor and improvements 2023-11-05 10:54:45 +05:30
LICENSE README tweaks 2023-02-28 18:05:53 +05:30
main.py Minor refactor and improvements 2023-11-05 10:54:45 +05:30
NOTICE Added support for YAML config file 2023-11-05 01:09:30 +05:30
pyrightconfig.json Fixed issue while running in background 2022-05-22 10:07:09 +05:30
README.md Minor refactor and improvements 2023-11-05 10:54:45 +05:30
requirements.txt Minor refactor and improvements 2023-11-05 10:54:45 +05:30

Discord Rich Presence for Plex

Showcase

Discord Rich Presence for Plex is a Python script which displays your Plex status on Discord using Rich Presence.

Latest Release Build Status

Installation

If you're using a Linux-based operating system, you can run this script with Docker. Otherwise, follow these instructions:

  1. Install Python (version 3.10 or newer) - Make sure to tick "Add Python to PATH" during the installation.
  2. Download the latest release of this script.
  3. Extract the directory contained in the above ZIP file.
  4. Navigate a command-line interface (cmd, PowerShell, bash, etc.) into the above-extracted directory.
  5. Start the script by running python main.py.

When the script runs for the first time, a directory named data will be created in the current working directory along with a config.yaml file inside of it. You will be prompted to complete authentication to allow the script to retrieve an access token for your Plex account.

The script must be running on the same machine as your Discord client.

Configuration

The config file is stored in a directory named data.

Supported Formats

  • YAML - config.yaml / config.yml
  • JSON - config.json

Reference

  • logging
    • debug (boolean, default: true) - Outputs additional debug-helpful information to the console if enabled.
    • writeToFile (boolean, default: false) - Writes console output to a console.log file in the data directory if enabled.
  • display - Display settings for Rich Presence
    • hideTotalTime (boolean, default: false) - Hides the total duration of the media if enabled.
    • useRemainingTime (boolean, default: false) - Displays the media's remaining time instead of elapsed time if enabled.
    • posters
      • enabled (boolean, default: false) - Displays media posters if enabled. Requires imgurClientID.
      • imgurClientID (string, default: "") - Obtention Instructions
    • buttons (list) - Information
      • label (string) - The label to be displayed on the button.
      • url (string) - A web address or a dynamic URL placeholder.
  • users (list)
    • token (string) - An access token associated with your Plex account. (X-Plex-Token, Authenticating with Plex)
    • servers (list)
      • name (string) - Name of the Plex Media Server you wish to connect to.
      • listenForUser (string, optional) - The script reacts to alerts originating only from this username. Defaults to the parent user's username if not set.
      • blacklistedLibraries (list, optional) - Alerts originating from libraries in this list are ignored.
      • whitelistedLibraries (list, optional) - If set, alerts originating from libraries that are not in this list are ignored.

Obtaining an Imgur client ID

  1. Go to Imgur's application registration page.
  2. Enter any name for the application and pick OAuth2 without a callback URL as the authorisation type.
  3. Submit the form to obtain your application's client ID.

Buttons

Discord can display up to 2 buttons in your Rich Presence.

Due to a strange Discord bug, these buttons are unresponsive or exhibit strange behaviour towards your own clicks, but other users are able to click on them to open their corresponding URLs.

Dynamic Button URLs

During runtime, the following dynamic URL placeholders will get replaced with real URLs based on the media being played:

  • dynamic:imdb
  • dynamic:tmdb

Example

YAML
logging:
  debug: true
  writeToFile: false
display:
  hideTotalTime: false
  useRemainingTime: false
  posters:
    enabled: true
    imgurClientID: 9e9sf637S8bRp4z
  buttons:
    - label: IMDb Link
      url: dynamic:imdb
    - label: My YouTube Channel
      url: https://www.youtube.com/channel/me
users:
  - token: HPbrz2NhfLRjU888Rrdt
    servers:
      - name: Bob's Home Media Server
      - name: A Friend's Server
        whitelistedLibraries:
          - Movies
JSON
{
  "logging": {
    "debug": true,
    "writeToFile": false
  },
  "display": {
    "hideTotalTime": false,
    "useRemainingTime": false,
    "posters": {
      "enabled": true,
      "imgurClientID": "9e9sf637S8bRp4z"
    },
    "buttons": [
      {
        "label": "IMDb Link",
        "url": "dynamic:imdb"
      },
      {
        "label": "My YouTube Channel",
        "url": "https://www.youtube.com/channel/me"
      }
    ]
  },
  "users": [
    {
      "token": "HPbrz2NhfLRjU888Rrdt",
      "servers": [
        {
          "name": "Bob's Home Media Server"
        },
        {
          "name": "A Friend's Server",
          "listenForUser": "xyz",
          "whitelistedLibraries": [
            "Movies"
          ]
        }
      ]
    }
  ]
}

Configuration - Discord

The "Display current activity as a status message" setting must be enabled in Discord Settings → Activity Settings → Activity Privacy.

Discord Settings

Configuration - Environment Variables

  • PLEX_SERVER_NAME - Name of the Plex Media Server you wish to connect to. Used only during the initial setup (when there are no users in the config) for adding a server to the config after authentication. If this isn't set, in interactive environments, the user is prompted for an input, and in non-interactive environments, "ServerName" is used as a placeholder, which can later be changed by editing the config file and restarting the script.

Run with Docker

Image

ghcr.io/phin05/discord-rich-presence-plex

Volumes

Mount a directory for persistent data (config file, cache file and log file) at /app/data.

The directory where Discord stores its inter-process communication Unix socket file needs to be mounted into the container at /run/app. The path for this would be the first non-null value from the values of the following environment variables: (source)

  • XDG_RUNTIME_DIR
  • TMPDIR
  • TMP
  • TEMP

If all four environment variables aren't set, /tmp is used.

For example, if the environment variable XDG_RUNTIME_DIR is set to /run/user/1000, that would be the directory that needs to be mounted into the container at /run/app. If none of the environment variables are set, you need to mount /tmp into the container at /run/app.

Example

docker run \
  --volume ./data:/app/data \
  --volume /run/user/1000:/run/app:ro \
  --detach \
  --restart unless-stopped \
  --name discord-rich-presence-plex \
  ghcr.io/phin05/discord-rich-presence-plex:latest

If you're running the container for the first time (when there are no users in the config), make sure that the PLEX_SERVER_NAME environment variable is set (see the environment variables section above), and check the container logs for the authentication link.

Docker on Windows and macOS

The container image for this script is based on Linux. Docker uses virtualisation to run Linux containers on Windows and macOS. In such cases, if you want to run this script in a container, you need to run Discord in a container as well, using an image based on Linux, like kasmweb/discord for example. You can mount a designated directory from the host machine into the Discord container at the path where Discord would store its Unix socket file. You can determine this path by checking the environment variables inside the container as per the volumes section above. That same host directory needs to be mounted into the script's container as well at /run/app. This method is not recommended, because depending on the Discord container image you're using, there might be a lot of resource usage overhead or other complications related to containerising interactive desktop applications.