No description
Find a file
2024-08-31 16:47:30 +05:30
.github Updated README and bumped version to v2.9.0 2024-08-31 16:47:30 +05:30
assets Updated README and bumped version to v2.9.0 2024-08-31 16:47:30 +05:30
config Updated README and bumped version to v2.9.0 2024-08-31 16:47:30 +05:30
core Added a slight delay before disconnecting from Discord IPC pipe 2024-08-31 16:44:53 +05:30
models Added config option display.statusIcon to facilitate uncropped posters 2024-08-31 16:18:44 +05:30
utils Added additional display configuration fields 2024-08-31 01:40:46 +05:30
.dockerignore Minor cleanup and tweaks 2024-08-30 20:29:02 +05:30
.gitignore Minor cleanup and tweaks 2024-08-30 20:29:02 +05:30
CONTRIBUTING.md Tweaks 2022-09-06 01:22:18 +05:30
Dockerfile Improved automatic installation of dependencies 2024-02-10 20:52:27 +05:30
LICENSE README tweaks 2024-02-06 18:59:01 +05:30
lint.bat Minor cleanup and tweaks 2024-08-30 20:29:02 +05:30
main.py Added additional display configuration fields 2024-08-31 01:40:46 +05:30
NOTICE Convert poster images to JPG before uploading them 2023-11-05 11:43:52 +05:30
pyrightconfig.json Minor cleanup and tweaks 2024-08-30 20:29:02 +05:30
README.md Updated README and bumped version to v2.9.0 2024-08-31 16:47:30 +05:30
requirements.txt Minor cleanup and tweaks 2024-08-30 20:29:02 +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.
    • writeToFile (boolean, default: false) - Writes console output to a console.log file in the data directory.
  • display - Display settings for Rich Presence
    • duration (boolean, default: true) - Displays the total duration.
    • genres (boolean, default: true) - Displays the genre. Applicable to movies only.
    • album (boolean, default: true) - Displays the album name. Applicable to music only.
    • year (boolean, default: true) - Displays the release year.
    • statusIcon (boolean, default: false) - Displays a status icon (playing, paused, buffering) at the bottom-right corner of the poster. Applicable to movies and TV shows only. Posters get cropped to a square if this is enabled (Discord bug/limitation).
    • remainingTime (boolean, default: false) - Displays remaining time instead of elapsed time. This is currently broken due to a Discord bug/limitation.
    • paused (boolean, default: false) - Displays Rich Presence even while media is paused. Timestamp while paused is currently broken due to a Discord bug/limitation.
    • posters
      • enabled (boolean, default: false) - Displays media posters (including album art and artist images). Requires imgurClientID.
      • imgurClientID (string, default: "") - Obtention Instructions
      • maxSize (int, default: 256) - Maximum width and maximum height to use while downscaling posters before uploading them.
    • buttons (list) - Information
      • label (string) - The label to be displayed on the button.
      • url (string) - A web address or a dynamic URL placeholder.
      • mediaTypes (list, optional) - If set, the button is displayed only for the specified media types. Valid media types are movie, episode, live_episode, track and clip.
  • 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 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.
      • ipcPipeNumber (int, optional) - A number in the range of 0-9 to specify the Discord IPC pipe to connect to. Defaults to -1, which specifies that the first existing pipe in the range should be used. When a Discord client is launched, it binds to the first unbound pipe number, which is typically 0.

Obtaining an Imgur client ID

  1. Go to Imgur's application registration page.
  2. Enter any name for the application and pick "OAuth 2 authorization 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. Buttons are visible to only other users and not yourself (Discord bug/limitation).

Dynamic Button Labels

Instances of {title} in button labels will be replaced with the top-level title of the media being played.

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
  • dynamic:thetvdb
  • dynamic:trakt
  • dynamic:letterboxd
  • dynamic:musicbrainz

Example (YAML)

logging:
  debug: true
  writeToFile: false
display:
  duration: true
  genres: true
  album: true
  year: true
  remainingTime: false
  paused: false
  posters:
    enabled: true
    imgurClientID: 9e9sf637S8bRp4z
    maxSize: 256
  buttons:
    - label: '{title} on IMDb'
      url: dynamic:imdb
    - label: Music Stats
      url: https://github.com
      mediaTypes:
        - track
users:
  - token: HPbrz2NhfLRjU888Rrdt
    servers:
      - name: Bob's Home Media Server
      - name: A Friend's Server
        whitelistedLibraries:
          - Movies

Configuration - Discord

The "Share your detected activities with others" setting must be enabled in Discord Settings → Activity Settings → Activity Privacy.

Discord Activity Privacy

Configuration - Environment Variables

  • DRPP_PLEX_SERVER_NAME_INPUT - This is used only during the initial setup (when there are no users in the config) as the name of the Plex server to be added to the config file after user 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.
  • DRPP_NO_PIP_INSTALL - Set this to true to skip automatic invocation of pip on script startup to install missing dependencies.

Run with Docker

Image

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

Images are available for the following platforms:

  • linux/amd64
  • linux/arm64
  • linux/386
  • linux/arm/v7

Volumes

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

The runtime 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 in the environment Discord is running in: (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 runtime 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.

UID and GID

The environment variables DRPP_UID and DRPP_GID can be used to specify the UID and GID of the user Discord is running as. You can determine these by running id in your terminal as such user.

If both of the above environment variables are set, the script will change the ownership of /run/app and its contents to be in line with the specified UID and GID to prevent issues caused due to insufficient permissions. To skip this ownership change, set the environment variable DRPP_NO_RUNTIME_DIR_CHOWN to true. Skipping this is necessary only in cases where the runtime directory isn't exclusively dedicated for a single user.

The ownership of /app and its contents will be changed as well. If both of the above environment variables are set, they will determine the ownership. Otherwise, the existing ownership information of /run/app will be used.

Other Info

If you're running the container for the first time (when there are no users in the config), set the DRPP_PLEX_SERVER_NAME_INPUT environment variable to the name of the Plex server to be added to the config file after user authentication, and check the container logs for the authentication link.

Docker Compose example

services:
  drpp:
    container_name: drpp
    image: ghcr.io/phin05/discord-rich-presence-plex:latest
    restart: unless-stopped
    environment:
      DRPP_UID: 1000
      DRPP_GID: 1000
    volumes:
      - ./data:/app/data
      - /run/user/1000:/run/app

Containerised Discord

If you wish to run Discord in a container as well, you need to mount a designated directory from the host machine into your 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, or you can set one of the environment variables yourself. That same host directory needs to be mounted into this script's container at /run/app. Ensure that the designated directory being mounted into the containers is owned by the user the containerised Discord process is running as.

Depending on the Discord container image you're using, there might be a lot of resource usage overhead and other complications.

Docker Compose example using kasmweb/discord

services:
  kasmcord:
    container_name: kasmcord
    image: kasmweb/discord:1.14.0
    restart: unless-stopped
    ports:
      - 127.0.0.1:6901:6901
    shm_size: 512m
    environment:
      VNC_PW: password
      XDG_RUNTIME_DIR: /run/user/1000
    volumes:
      - ./kasmcord:/run/user/1000
    user: "0"
    entrypoint: sh -c "chmod 700 /run/user/1000 && chown -R kasm-user:kasm-user /run/user/1000 && su kasm-user -c '/dockerstartup/kasm_default_profile.sh /dockerstartup/vnc_startup.sh /dockerstartup/kasm_startup.sh'"
  drpp:
    container_name: drpp
    image: ghcr.io/phin05/discord-rich-presence-plex:latest
    restart: unless-stopped
    volumes:
      - ./drpp:/app/data
      - ./kasmcord:/run/app:ro
    depends_on:
      - kasmcord

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's container, you need to run Discord in a Linux container as well, as per the instructions above.