JellyWatchWise is a Python application designed to help you manage and enforce watch time limits for users accessing your Jellyfin media server. By integrating with the Jellyfin API, the app monitors users' total watch time and restricts access to media libraries when their defined time limits are exceeded.
|
This project focuses on simplicity and ease of use. The standalone app includes a GUI for quick access to time limit settings, allowing you to adjust values without logging into the Jellyfin server.
- Generate an API Key for JellyWatchWise from your Jellyfin admin account.
- Ensure access to aggregated user statistics with either:
-
having the
Playback Reporting
plugin installed on your Jellyfin server(this is default, no additional configuration needed),
-
access to your
Jellystat
server(put your host address and API key to the configuration file).
-
The easiest way to get started is by using Docker:
- Pull the image
docker pull macjoker/jelly-watch-wise
-
Prepare configuration.
Create a
config
folder with aconfig.yaml
file. The file should include at least:host
- your Jellyfin server addresstoken
- your Jellyfin API key.
See sample config file in the repository for reference.
-
Run the container
docker run -d -v ./config:/app/config -t macjoker/jelly-watch-wise
The app will also store logs and backups of media folder UUIDs in the specified config folder.
To apply time limits, ensure Enable All Folders is not selected for any user you wish to have limits applied. Instead, manually select individual media folders available to each user.
When time limit is exceeded the app unselects all media libraries for the user, effectively revoking access. Media currently playing will continue until the end, but no new media can be accessed.
Immediate playback stop is also possible. The app includes buttons to immediately stop playback by disabling the user's account. All connections of that user are then closed, and no logging in is possible until the account is enabled again.