Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions lidarr/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,15 +169,14 @@ As of Lidarr v2, Authentication is Mandatory.

- Artists that do not show up in search may be added by searching for `lidarr:mbid` where `mbid` is the Musicbrainz ID of the artist.

## How can I find a MusicBrainz ID?
## How can I find a MusicBrainz ID

1. [Search for your desired artist or album](https://musicbrainz.org/search) (use `Release Group` type for albums)
2. The MusicBrainz ID can be found under the "Details" tab:
2. The MusicBrainz ID can be found under the "Details" tab:
![musicbrainz_id_detail_tab.png](/images/musicbrainz_id_detail_tab.png)
3. Or at the end of the URL:
![musicbrainz_id_url.png](/images/musicbrainz_id_url.png)


## Lidarr matched an album with too many tracks. How can I change the Album to the correct Release

- Open the Album details page and select the Edit Icon in the top nav. There you can find a dropdown of all releases tied to that Album.
Expand Down
7 changes: 2 additions & 5 deletions radarr/tips-and-tricks.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,8 @@ If you need to clean up empty directories, this command will do that:
Alternatively in Windows you can run the following script in Powershell to iterate over each file in a directory, and move it to a folder with the same name.

```powershell
Get-ChildItem -File
| ForEach-Object {
$dir = New-Item -ItemType Directory -Name $_.BaseName -Force
$_ | Move-Item -Destination $dir
}
Get-ChildItem -File | ForEach-Object {$dir = New-Item -ItemType Directory -Name $_.BaseName -Force
$_ | Move-Item -Destination $dir}
```

# Configuring Radarr to Auto-Remove Completed Torrents
Expand Down