Metadata#
Metadata-related configuration for Radarr is defined here.
Optionally, Radarr can be configured to create metadata files alongside your media files in a variety of formats, to suit the media player you intend to use.
radarr:
  settings:
    metadata:
      certification_country: us
      emby_legacy:
        ...
      kodi_emby:
        ...
      roksbox:
        ...
      wdtv:
        ...
Multiple of these can be configured at a time.
          certification_country: LowerCaseNonEmptyStr = 'us'
  
  
      class-attribute
      instance-attribute
  
#
  The country to use for movie certifications in Radarr.
Use the two-letter ICAO country code, e.g. us for the United States.
Emby (Legacy)#
Output metadata files in the legacy Emby metadata format.
radarr:
  settings:
    metadata:
      emby_legacy:
        enable: true
        movie_metadata: true
          enable: bool = False
  
  
      class-attribute
      instance-attribute
  
#
  When set to true, enables creating metadata files in this format.
          movie_metadata: bool = True
  
  
      class-attribute
      instance-attribute
  
#
  Create metadata file.
Kodi (XBMC) / Emby#
Output metadata files in a format suitable for Kodi (XBMC) or Emby.
radarr:
  settings:
    metadata:
      kodi_emby:
        enable: true
        movie_metadata: true
        movie_metadata_url: true
        movie_metadata_language: english
        movie_images: true
        use_movie_nfo: true
        add_collection_name: true
          enable: bool = False
  
  
      class-attribute
      instance-attribute
  
#
  When set to true, enables creating metadata files in this format.
          movie_metadata: bool = True
  
  
      class-attribute
      instance-attribute
  
#
  Create metadata file.
          movie_metadata_url: bool = False
  
  
      class-attribute
      instance-attribute
  
#
  Add the TMDB/IMDB URL to the written metadata file.
No effect if movie_metadata is false.
          movie_metadata_language: NonEmptyStr = 'english'
  
  
      class-attribute
      instance-attribute
  
#
  Write the metadata in the selected language (if available).
When using a dialect of a language (e.g. Brazilian Portuguese),
add the dialect type to the end, separated with a hypen, e.g. portuguese-brazil.
original can be selected to use the original language of the media.
          movie_images: bool = False
  
  
      class-attribute
      instance-attribute
  
#
  Save movie images.
          use_movie_nfo: bool = False
  
  
      class-attribute
      instance-attribute
  
#
  Write movie metadata to movie.nfo, instead of the default <movie-filename>.nfo.
          add_collection_name: bool = False
  
  
      class-attribute
      instance-attribute
  
#
  Write the collection name to the movie metadata.
Roksbox#
Output metadata files in a format suitable for Roksbox.
radarr:
  settings:
    metadata:
      roksbox:
        enable: true
        movie_metadata: true
        movie_images: true
          enable: bool = False
  
  
      class-attribute
      instance-attribute
  
#
  When set to true, enables creating metadata files in this format.
WDTV#
Output metadata files in a format suitable for WDTV.
radarr:
  settings:
    metadata:
      wdtv:
        enable: true
        movie_metadata: true
        movie_images: true
          enable: bool = False
  
  
      class-attribute
      instance-attribute
  
#
  When set to true, enables creating metadata files in this format.