Radarr

261 readers
8 users here now

Welcome to the Sonarr community.

Feel free to post anything related to Sonarr.

Radarr website

Radarr Dockerhub

Trash Guides

Sonarr community

founded 2 years ago
MODERATORS
1
 
 

Managarr - A TUI and CLI to help you manage your Servarrs.

Thanks to everyone who contributed to this release, be that in code, issues, or enhancement suggestions! You all help fuel my passion for working on this and it doesn't go unappreciated! ๐Ÿ˜„

As always, you can try out the changes yourself via the Managarr Demo Site

Breaking Changes

  • Managarr now supports multiple instances of the same Servarr with custom names and ordering. (See Features below) To accommodate this, configuration files must be updated so that all Servarrs listed beneath radarr, sonarr, etc., be updated to be lists, not individual Servarrs. For example: to migrate from the following config:

    radarr:
      host: 192.168.0.78
      port: 7878
      api_token: someApiToken1234
    sonarr:
      host: 192.168.0.89
      port: 8989
      api_token: someApiToken1234
    

    You would change the above configuration to the following:

    radarr:
      - host: 192.168.0.78
        port: 7878
        api_token: someApiToken1234
    sonarr:
      - host: 192.168.0.89
        port: 8989
        api_token: someApiToken1234
    
  • The --config flag has been renamed to --config-fileto make it more clear what it does.

Features

  • Users can now specify multiple instances of the same type of Servarr and give them custom names and ordering. This allows users to manage multiple instances of the same Servarr, such as an Anime and TV Show instance of Sonarr. To configure, add a list of Servarrs under the respective type (e.g. radarr, sonarr, etc.). (#17)

    • You can specify ordering of your Servarrs and how they will appear in the UI via the weight field. The lower the weight, the further to the left the Servarr will appear in the UI.
    • You can also name your Servarrs whatever you wish. This name will be displayed in the UI. For example, to name your Sonarr instances:
      sonarr:
        - name: Anime
          host: 192.168.0.89
          api_token: someApiToken
      
        - name: TV Shows
          host: 192.168.0.88
          api_token: someOtherApiToken
      
    • This change also required the introduction of a new CLI flag to specify which Servarr you wish to interact with: --servarr-name. This corresponds directly to the value of the name field in your configuration. If you did not specify a name in the configuration, then default names are provided for you corresponding to the Servarr; For example, if you defined two Radarr instances with no names, they will be named Radarr 1 and Radarr 2, respectively.
    • Omitting the --servarr-name flag with multi-instance configurations will default to using the first instance that appears in your config. For example, for the following configuration:
      sonarr:
        - host: 192.168.0.89
          api_token: someApiToken
      
        - host: 192.168.0.88
          api_token: someOtherApiToken
      
      Running managarr sonarr list series will default to interacting with the Sonarr instance at 192.168.0.89. This is the same as running managarr sonarr list series --servarr-name 'Sonarr 1'.
  • API tokens can now be fetched from files instead of needing to be hardcoded (#31). The following is an example config that loads the API token from a file:

    radarr:
      - host: 192.168.0.78
        api_token_file: /home/root/.config/radarr_token
    
  • Configurations now interpolate environment variables (#23). This allows you to load sensitive information from environment variables. For example, to load the API token from an environment variable, you can do the following:

    radarr:
      - host: 192.168.0.78
        api_token: ${MY_RADARR_API_TOKEN_ENV_VAR}
    

    This is available for all fields in the configuration file.

Security Updates

Miscellaneous

2
 
 

cross-posted from: https://lemmy.world/post/11276786

I just went to watch a movie and my server said it wasn't there, so I went and check the PC folders and all of my movies are gone. Not in any of the recycling bins, not anywhere, just gone. What would have caused this? How do I stop it from happening again? It's been working fine for months then this just happened.

Here's a link to the last few logs from Radarr.

https://drive.google.com/drive/folders/1-XXanIlVfbpry3Qopf_Gtw3KrjsVLavY

3
4
 
 

cross-posted from: https://lemmy.ml/post/4149178

My Current setup is something like this

{Movie.CleanTitle}.({Release Year}).{Edition.Tags}.{{Quality.Title}.{MediaInfo.VideoCodec}.{MediaInfo.VideoBitDepth}bit.{MediaInfo.VideoDynamicRange}.{MediaInfo.AudioCodec}.{MediaInfo.AudioChannels}{.MediaInfo.AudioLanguages}{-Release.Group}}

Because of this if there is a file with Russian audio as default and English as secondary I get a name like this

Avengers.Infinity.War.(2018).{Remux-2160p.HEVC.10bit.HDR.AC3.5.1.[RU+EN]-ExKinoRay}.mkv

I'd instead like to have the name of the file reflect similar to this

Zootopia.(2016).{Remux-2160p.x265.10bit.HDR.AC3.5.1.TrueHD Atmos.7.1.[RU+EN]-seleZen}.mkv

In this AC3 is the audio format for RU and TrueHD is the audio format for EN.

Is this setup possible via Radarr? I've tried {MediaInfo.AudioCodec:EN+RU} but it still gives me only the RU audio codec. I'm currently using version 4.5.2.7388

5
 
 

Seeing as the only place I found this was on "the place that shall not be named" before the black out, I hope this question can help start the new repository of collective knowledge here in the Fediverse.

I have set up a separate instance or radarr to maintain copies of RiffTrax. The two main questions I have that I can not find answers for on trash's guide or elsewhere, is setting up a custom format that will pull files with "rifftrax" in the title. I found in trash's guide how to exclude with

      {
      "name": "RiffTrax",
      "implementation": "ReleaseGroupSpecification",
      "negate": false,
      "required": false,
      "fields": {
        "value": "^(Rifftrax)$"
      }

and I have been able to create a custom filter that helps when manually searching.

I have two questions:

  1. how to modify the above to help me?

  2. how do I use my current library on my main radarr instance to help the RiffTrax instance search and pull movies? If that is even possible.

6
6
submitted 2 years ago by nosut to c/radarr
 
 

This is a community for all things Radarr. Be it updates, guides, questions, or setups feel free to post it all!