Lidarr-extended ((link)) -
Lidarr-extended is a specialized Docker image that integrates the standard music management application with a powerful set of "Extended Scripts"
to fully automate the music discovery and downloading process.
While standard Lidarr typically relies on torrents and Usenet, the "Extended" version—largely developed by RandomNinjaAtk on GitHub
—uses these scripts to fetch music directly from online streaming sources like Core Features Fully Automated Downloads
: It automates the process of finding and downloading missing tracks or albums from your Lidarr "Wanted" list using online sources. Source Integration : Specifically designed to work with tools like (for Deezer) to grab high-quality FLAC or MP3 files. Playlist Syncing
: Allows users to import and sync playlists from services like directly into their local library. Music Organization lidarr-extended
: Like standard Lidarr, it automatically sorts, renames, and moves your music into media servers like Key Technical Aspects Base Image : Built on the stable LinuxServer.io Lidarr image, ensuring compatibility and regular updates. Setup Requirements : Users typically need to provide an ARL (Authentication Token)
from a service like Deezer to allow the scripts to access and download content. Configuration : Managed via Docker parameters such as (to target specific Lidarr lists) and Concurrency (to set the number of simultaneous downloads). Common Use Cases The "Spotify Experience"
: Many users use it to recreate a streaming-like experience on their own server by combining Lidarr-extended with a player like or Navidrome. Filling Gaps
: It is highly effective for finding niche or rare albums that are often unavailable or unseeded on traditional trackers. Docker Compose snippet to see how to deploy Lidarr-extended on your server? RandomNinjaAtk/docker-lidarr-extended - GitHub 12 Jul 2023 —
Lidarr-extended is an automated script and Docker container suite designed to expand the capabilities of the standard What It Is NOT
music manager. While the default Lidarr is primarily built for managing existing libraries and searching Usenet/BitTorrent indexers, Lidarr-extended introduces the ability to download high-quality audio directly from streaming services like and manages music video acquisition. Key Features of Lidarr-extended
The "extended" version functions as a middleman that interprets Lidarr's "missing" or "cutoff" lists to trigger downloads through third-party scripts. Streaming Downloads : Supports direct downloading from
in various formats including FLAC (lossless), MP3 (320/128), and AAC. Music Video Automation
: Automatically searches for and downloads music videos for artists in your Lidarr library, saving them in MKV format with metadata for , Kodi, or Jellyfin. Library Expansion
: Can automatically discover and add new artists to your library based on "Related Artists" from online streaming services. Enhanced Metadata : Pre-matches and tags files using Beets, adds ReplayGain Not an official Lidarr release branch
tags, and ensures cover art is included before Lidarr even sees the files. Post-Processing
: Can convert FLAC files to preferred bitrates/formats before they are imported into Lidarr. Core Functionality & Configuration
Lidarr-extended operates differently than standard plugins; it typically runs as a script that monitors your Lidarr database. Lidarr (Standard) Lidarr-extended Primary Sources Usenet & BitTorrent Tidal, Deezer, & YouTube Video Support No native automation Automated Music Video downloads Artist Discovery Manual or RSS Automated "Related Artist" adding Download Client QBittorrent, Sabnzbd, etc. Internal scripts (Deezer-dl, etc.) Installation Overview Most users deploy Lidarr-extended using . The setup requires: RandomNinjaAtk *arr-extended docker containers
What It Is NOT
- Not an official Lidarr release branch.
- Not a separate standalone app – generally a set of scripts, custom Docker images, or Lidarr post-import webhooks.
Installation (Docker Compose)
The easiest way to run Lidarr-Extended is via Docker. The image is typically hosted on GitHub Container Registry (ghcr.io) or Docker Hub, usually maintained by community developers (like hotio or randomblock1).
Here is a sample docker-compose.yml:
version: "3.8"
services:
lidarr-extended:
image: randomblock1/lidarr-extended:latest
container_name: lidarr-extended
environment:
- PUID=1000
- PGID=1000
- TZ=America/New_York
volumes:
- /path/to/config:/config
- /path/to/music:/music
- /path/to/downloads:/downloads
ports:
- 8686:8686
restart: unless-stopped
Volume Mapping Notes:
/config: Stores database and configuration files./music: Your destination music library (hardlinks recommended)./downloads: Where your download client places completed files.
Where to Find Lidarr Extended Tools
- Scripts repo: GitHub – Lidarr-Community-Scripts (search “extended”)
- Trash Guides: Custom Formats for Lidarr
- Reddit: r/Lidarr – search “extended” or “live albums”
- Discord: Lidarr official + servarr Discord (ask in #lidarr-extended channel)
Step 1: Enable Advanced Settings
Toggle the "Show Advanced" switch at the top. This reveals the "Extended" options.