Plex and Jellyfin are the two dominant self-hosted media server platforms, letting you organize, stream, and manage your personal collection of movies, TV shows, music, and photos from a central machine to virtually any device. Plex is a polished, commercial product with a free tier and optional paid Plex Pass features, while Jellyfin is a fully free, open-source fork of Emby with no paywalls whatsoever. The critical mental model for both: they are clientβserver applications β the server indexes and transcodes media on one machine, and clients (apps on phones, TVs, browsers) connect to stream it; the quality of your experience is determined almost entirely by the server's hardware, your network bandwidth, and how well your media files are named. Understanding the difference between direct play, direct stream, and transcode is the single most important concept for tuning performance and hardware choices.
What This Cheat Sheet Covers
This topic spans 16 focused tables and 147 indexed concepts. Below is a complete table-by-table outline of this topic, spanning foundational concepts through advanced details.
Table 1: Core Architecture and Concepts
The fundamental building blocks of both platforms β what each component does and how server, library, client, and cloud account fit together before you configure anything.
| Concept | Example | Description |
|---|---|---|
Installed on a PC/NAS; UI at http://localhost:32400/web | β’ The server software that indexes media, fetches metadata, and handles transcoding β’ must be running on the host machine at all times for clients to stream | |
Sign in at plex.tv and "claim" a server with a claim token | β’ Required to use Plex β the server links to your Plex.tv identity for authentication, relay routing, and remote access β’ no local-only mode without account | |
http://server-ip:8096; no cloud account needed | β’ Fully self-hosted and account-free β no Plex.tv equivalent β’ all auth is local β’ metadata fetched from open internet sources (TMDB, TVDB, MusicBrainz). | |
Movies library β /mnt/media/movies; TV Shows β /mnt/media/tv | β’ Named collection of folders monitored by the server β’ each library has a type (Movies, TV Shows, Music, Photos) that sets which scanner and metadata agent runs | |
Plex Movie agent uses TMDB; Plex TV Series uses TMDB/TVDB | β’ The component that matches files to online databases and pulls in artwork, summaries, ratings, and cast β’ choice of agent affects matching accuracy and data sources | |
Plex app on Roku, Fire TV, iOS, Android, Samsung TV | β’ Thin UI that requests streams from PMS β’ playback decisions (direct play vs. transcode) are negotiated between client capability and server settings |