Plex Agents do not read music ratings when importing music files and they don't write back ratings and playlists to disk. This makes sense from a server-side-of-view. You don't want all users to have the same ratings or playlists. Every user should be able to set his / her own ratings and collect his favorite songs in playlists.
This project aims to provide a simple sync tool that synchronizes the track ratings and playlists with a specific PLEX user account and server.
- synchronize: track ratings, playlists (not automatically generated)
- supported local media players: MediaMonkey and local file system
- dry run without applying any changes
- automatically or manually resolve conflicting track ratings
- logging
This application now supports using a local file system directory as a media player source or destination. This allows you to:
- Sync ratings between media files on disk and Plex/MediaMonkey
- Create and manage playlists using standard M3U format
- Read/write ratings directly to media file metadata
- Windows
- MediaMonkey v4.x. v5.0 and above don't work, see #23.
- Plex Media Server (PMS)
- Python 3.6 or higher with packages:
- PlexAPI v4.2.0
- pypiwin32: to use the COM interface
- fuzzywuzzy: for fuzzy string matching
- python-Levenshtein (optional): to improve performance of
fuzzywuzzy
- numpy
- ConfigArgParse
- pandas
- tqdm
- mutagen
- Clone this repository
git clone git@github.com:patzm/plex-music-rating-sync.git
cd plex-music-rating-sync
- Install the package and its dependencies:
pip install .
Optional installations:
- For development tools (linting, type checking):
pip install ".[dev]"
- For improved fuzzy string matching performance:
pip install ".[fuzzy]"
Create a config.ini
file based on the template config.ini.template
:
- ** Required Settings **
source
: Source player ("plex", "mediamonkey" or "filesystem") [default: mediamonkey]destination
: Destination player ("plex", "mediamonkey" or "filesystem") [default: plex]sync
: Items to sync between players, one or more of [tracks, playlists] [default: tracks]
-
** Required Settings **
server
: The name of your Plex Media Serveruser
: Your Plex username
-
token
: Your Plex API token (see Finding a token) -
passwd
The password for the plex user. NOT RECOMMENDED TO USE!
- ** Required Settings **
path
= Path to music directory for filesystem playerplaylist-path
= Path to playlists directory [default: path]
Note: The following settings will, optionally, be written to config.ini
after the first run, if necessary.
-
tag_write_strategy
: Determines how rating tags are written to files.write_all
: Write to all known and configured tags.write_existing
: Only update tags that already exist in the file; if no rating tags exist, write to thedefault_tag
.write_default
: Only write to thedefault_tag
; do not remove other tags.overwrite_default
: Write only to thedefault_tag
and delete all other rating tags.
-
default_tag
: The canonical tag to use for writing when applicable.- Required for
write_default
andoverwrite_default
; used as a fallback inwrite_existing
if no tags exist. - Options: Player values such as
MEDIAMONKEY
,WINDOWSMEDIAPLAYER
,MUSICBEE
,WINAMP
,TEXT
. - Unknown/custom tags (e.g.,
POPM:foobar@example.com
) are also allowed.
- Required for
-
conflict_resolution_strategy
: Determines how to resolve conflicting rating values across tags.prioritized_order
: Use the tag with the highest priority in the list below.highest
: Use the highest numeric rating found.lowest
: Use the lowest numeric rating found.average
: Use the average of all numeric ratings.
-
tag_priority_order
: Ordered list of tag identifiers used for resolving conflicts.- Recognized values: Player values such as
MEDIAMONKEY
,WINDOWSMEDIAPLAYER
,MUSICBEE
,WINAMP
,TEXT
. - Unknown/custom tags (e.g.,
POPM:foobar@example.com
) are also allowed.
- Recognized values: Player values such as
The main file is sync_ratings.py
.
Usage description:
Note: default values of command line arguments can be provided by editing config.ini
usage: sync_ratings.py [-h] [--dry] [--source SOURCE] [--destination DESTINATION]
[--sync [SYNC ...]] [--log LOG] [--passwd PASSWD]
--server SERVER --username USERNAME [--token TOKEN]
Synchronizes ID3 music ratings with a Plex media-server
required arguments:
--source SOURCE Source player (plex, [mediamonkey] or filesystem)
--destination DEST Destination player ([plex], mediamonkey or filesystem)
required Plex arguments:
--server SERVER The name of the plex media server
--username USERNAME The plex username
required File System arguments:
--path PATH Path to music directory for filesystem player
optional arguments:
-h, --help show this help message and exit
--dry Does not apply any changes
--sync [SYNC ...] Selects which items to sync: one or more of [tracks, playlists]
--log LOG Sets the logging level (critical, error, [warning], info, debug)
--passwd PASSWD The password for the plex user. NOT RECOMMENDED TO USE!
--token TOKEN Plex API token. See Plex documentation for details
--playlist-path PLAYLIST_PATH Path to playlists directory for filesystem player
--cache-mode {metadata,matches,matches-only,disabled}
- metadata: In-memory metadata caching only
- matches: Both metadata and persistent match caching
- matches-only: Persistent match caching only
- disabled: No caching
--clear-cache Clear existing cache files before starting
--tag-write-strategy Strategy for writing rating tags to files.
Options: write_all, write_existing, write_default, overwrite_default.
--default-tag Canonical tag to use for writing ratings.
Options: Player values such as MEDIAMONKEY, WINDOWSMEDIAPLAYER, MUSICBEE, WINAMP, TEXT.
--conflict-resolution-strategy
Strategy for resolving conflicting rating values.
Options: prioritized_order, highest, lowest, average.
--tag-priority-order Ordered list of tag identifiers for resolving conflicts.
Options: MEDIAMONKEY, WINDOWSMEDIAPLAYER, MUSICBEE, WINAMP, TEXT.
Start the synchronization:
./sync_ratings.py --server <server_name> --username <my@email.com|user_name>
Using the --dry
flag in combination with --log DEBUG
is recommended to see what changes will be made.
The sync tool supports different caching strategies to optimize performance:
Mode | Caches Metadata | Caches Matches | Persists Between Runs |
---|---|---|---|
metadata | ✅ Yes | ❌ No | ❌ No |
matches | ✅ Yes | ✅ Yes | ✅ Yes |
matches-only | ❌ No | ✅ Yes | ✅ Yes |
disabled | ❌ No | ❌ No | ❌ No |
- metadata: Caches track metadata in memory for faster lookups during sync
- matches: Caches both metadata and track matches, saves matches between runs
- matches-only: Only caches track matches persistently, no metadata caching
- disabled: No caching, all operations performed directly
Cache files are stored in the application directory and can be cleared using --clear-cache
.
- the PlexAPI seems to be only working for the administrator of the PMS.
With the current state I have completed all functionality I desired to have. Consequently I will not continue development unless you request it. I welcome anyone to join the development of this little cmd-line tool. Just open a new issue, post a pull request, or ask me to give you permissions for the repository itself.
These are a few ideas I have for features that would make sense:
- setup routine
- parallelization
- better user-interaction with nicer dialogs
- iTunes synchronization?
PlexAPI simplifies talking to a PMS.
This project uses the MediaMonkey scripting interface using Microsoft COM model. An introduction can be found here. The relevant model documentation is available here.