Skip to content

Instantly share code, notes, and snippets.

View cleverdevil's full-sized avatar

Jonathan LaCour cleverdevil

View GitHub Profile
@cleverdevil
cleverdevil / dovi_tagger.py
Last active April 2, 2026 13:15
Dolby Vision Tagger for Plex
'''
Dolby Vision Tagger for Plex
============================
This script walks your Plex server's libraries and tags Dolby Vision Profile
and Enhancement Layer details by attaching a label. The label will be of
format:
Dolby Vision P{profile number} {enhancement layer}
@cleverdevil
cleverdevil / jellyfin.py
Created March 5, 2025 18:02
Script to replicate collections and poster art from Plex to Jellyfin
import requests
import json
import logging
from base64 import b64encode
# Configure logging
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
logger = logging.getLogger(__name__)
class JellyfinClient: