diff options
-rw-r--r-- | jellyfin.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/jellyfin.md b/jellyfin.md new file mode 100644 index 0000000..1bbd277 --- /dev/null +++ b/jellyfin.md @@ -0,0 +1,13 @@ +# Jellyfin media server + +## Setting up as jukebox with Mopidy + +Install `mopidy-jellyfin`, configure in `/etc/mopidy/mopidy.conf`, adding: + + [jellyfin] + hostname = localhost:8096 + username = username + password = password + libraries = Library1, Library2 (Optional: will default to "Music" if left undefined) + albumartistsort = False (Optional: will default to True if left undefined) + album_format = {ProductionYear} - {Name} (Optional: will default to "{Name}" if left undefined) |