This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''' | |
| 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} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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: |
OlderNewer