Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/chrisbenincasa/tunarr/llms.txt

Use this file to discover all available pages before exploring further.

Local Media Sources allow you to schedule media directly from your filesystem without needing a separate media server like Plex, Jellyfin, or Emby. Tunarr traverses your directories to discover media files and their metadata, which can then be added to channels just like content from any other source. Local sources are especially useful if your media is not managed by a server, if you want to include filler content like commercials or bumpers, or if you simply prefer a lightweight setup with no external dependencies.

Generating NFO Metadata

Tunarr uses NFO files — small XML sidecar files stored alongside your media — to read rich metadata such as titles, descriptions, artwork references, genres, and external IDs. If your media does not already have NFO files, many popular tools can generate them for you, including:
  • Jellyfin and Emby — both support writing NFO files for managed libraries
  • Sonarr, Radarr, and other *arr stack applications
Even without NFO files, Tunarr can still scan most library types using filenames and embedded audio/video tags as a fallback. See the individual library type sections below for details.

Ignoring Folders

To exclude a folder from scanning, create an empty file named .tunarrignore inside it. Tunarr also automatically skips any folder or file whose name begins with a ..

Library Types

Tunarr supports five distinct library types for local media. Select the appropriate type when creating the local source so Tunarr knows which directory conventions and metadata formats to expect.
Movie libraries support several directory structures. The recommended approach is one subfolder per movie, with the video file and an NFO file inside.Example directory layout:
movies/
├── The Matrix (1999)/
│   ├── The Matrix (1999).mkv
│   └── movie.nfo

├── The Matrix Reloaded (2003)/
│   ├── The Matrix Reloaded (2003).mkv
│   └── The Matrix Reloaded (2003).nfo

├── The Matrix Revolutions (2003).mkv
└── The Matrix Revolutions (2003).nfo
Movies can also be placed directly in the library root without a subfolder, as shown in the last two entries above.NFO metadata: Tunarr follows the Kodi NFO conventions for movies. For subfolder-organized movies, it looks for movie.nfo. For flat files, it looks for $MOVIE_FILE.nfo where $MOVIE_FILE is the exact video filename without its extension.Artwork: Tunarr scans for poster, fanart, landscape, and banner artwork files alongside each movie entry.Fallback: Without an NFO file, Tunarr parses metadata from the filename itself, including the year and external IDs (IMDb, TMDB), using built-in regex patterns.

Build docs developers (and LLMs) love