No description
Find a file
aunefyren 7dd36748aa New favicon
Based on gift SVG
2021-10-24 19:19:42 +02:00
.idea Cache reuse of server-wide stats, fixed footer, trimming string 2021-04-20 11:55:11 +02:00
admin CSS tweaks and Timezone is not prefilled 2021-10-13 17:37:19 +02:00
api Streamlined JSON response & privacy 2021-10-24 18:08:22 +02:00
assets New favicon 2021-10-24 19:19:42 +02:00
caching Custom intro-text, timebug fixed, timezone value updates 2021-10-12 14:38:54 +02:00
config Re-adding config files 2021-05-16 22:00:40 +02:00
.gitattributes Initial commit 2020-12-19 17:04:43 +01:00
.gitignore Username support & Sensitive info warning in README 2021-10-04 14:26:50 +02:00
admin.js No vertical scrollbar on textarea 2021-10-17 13:47:58 +02:00
caching.js New folder structure, HTTP response, <a> css & more 2021-10-11 14:25:19 +02:00
CODE_OF_CONDUCT.md Added code of conduct 2021-03-10 00:50:23 +01:00
get_config.js Custom intro-text, timebug fixed, timezone value updates 2021-10-12 14:38:54 +02:00
get_functions.js New folder structure, HTTP response, <a> css & more 2021-10-11 14:25:19 +02:00
get_stats.js Streamlined JSON response & privacy 2021-10-24 18:08:22 +02:00
index.html New folder structure, HTTP response, <a> css & more 2021-10-11 14:25:19 +02:00
index.js Streamlined JSON response & privacy 2021-10-24 18:08:22 +02:00
README.md Added new function to README 2021-10-12 15:02:19 +02:00
set_config.js Custom intro-text, timebug fixed, timezone value updates 2021-10-12 14:38:54 +02:00

Plex Wrapped

Introduction

A website-based platform and API for collecting Plex user stats within a set timeframe using Tautulli. The data is displayed as a stat-summary, sort of like Spotify Wrapped. Yes, you need Tautulli to have been running beforehand and currently for this to work.

alt text

Features

  • Custom timeframes
  • Custom introduction
  • Movies, shows & music
  • Caching of results
  • Friendly, dynamic display for statistics with nice illustrations
  • Email and username search
  • Admin page with authentication for settings
  • Pre-caching of data

alt text

Credit

alt text

Instructions

This is a web-based platform. Place it in a webserver like Apache or Nginx and make sure it processes PHP content.

There are multiple settings you must configure! They will be stored in config/config.json, but can be configured easily at your-domain-or-ip/admin through the interface.

PHP will have issues with this API based on the data available in Tautulli and your settings. If you have a large time frame for your wrapped period (like a full year), and there are a huge amount of Tautulli entries, you can have multiple issues. Pre-caching deals with a lot of these problems, so make sure you have it enabled, but configuring PHP might still be necessary. In your php.ini file you may have to change:

  • max_execution_time=enough seconds for the script to finish. The longer the timeframe and the less info that is cached, the more execution time. Every unique date in your timeframe is a new Tautulli API call.
  • memory_limit=enough M for the script to handle JSON data. If there is a lot of data, PHP needs to have enough memory to manage it without crashing. This still applies if caching is on, as PHP needs to be able to read the cache without crashing.
  • max_input_time=enough seconds for the script to parse JSON data. You might not need to change this, depending on Tautulli connection speed.

You need to give PHP permission to read and write to files in the directory called config!

  • The config directory contains sensitive information that must be accessed by the PHP scripts! There is an .htaccess file included that is effective with Apache, but if you are using Nginx you must add a directory deny in your Nginx configuration!
  • The cache is stored in config/cache.json, but can be cleared using the admin menu previously mentioned.
  • Your password is hashed and stored in the config/config.json.

If you visit your-domain-or-ip/caching you can do a pre-caching. This is very useful if you want to prepare for a lot of traffic and have a large timeframe with entries. I recommend setting up the platform at the admin page and then running a pre-cache immediately. The cache is updated automatically if new data in the timeframe is available.

Need help?

If you have any issues feel free to contact me. I am always trying to improve the project. If I can't, many people on several forums (including /r/plex) might be able to assist you.

Goodybye.