Metadata Provider Configuration
Metadata Provider Configuration
Metadata provider settings are configured in the [metadata] section of your config.toml file. These settings control how MediaManager retrieves information about movies and TV shows.
TMDB Settings ([metadata.tmdb])
[metadata.tmdb])TMDB (The Movie Database) is the primary metadata provider for MediaManager. It provides detailed information about movies and TV shows.
tmdb_relay_urlURL of the TMDB relay (MetadataRelay). Default ishttps://metadata-relay.dorninger.co/tmdb. Example:https://your-own-relay.example.com/tmdb.primary_languagesIf the original language of a show/movie is in this list, metadata is fetched in that language. Otherwise,default_languageis used. Default is[]. Example:["no", "de", "es"]. Format: ISO 639-1 (2 letters). Full list: https://en.wikipedia.org/wiki/List_of_ISO_639_language_codesdefault_languageTMDB language parameter used when searching and adding. Default isen. Format: ISO 639-1 (2 letters).
default_language sets the TMDB language parameter when searching and adding TV shows and movies. If TMDB does not find a matching translation, metadata in the original language will be fetched with no option for a fallback language. It is therefore highly advised to only use "broad" languages. For most use cases, the default setting is safest.
TVDB Settings ([metadata.tvdb])
[metadata.tvdb])The TVDB might provide false metadata and doesn't support some features of MediaManager like showing overviews. Therefore, TMDB is the preferred metadata provider.
tvdb_relay_urlURL of the TVDB relay (MetadataRelay). Default ishttps://metadata-relay.dorninger.co/tvdb. Example:https://your-own-relay.example.com/tvdb.
MetadataRelay
The MetadataRelay is a service that provides metadata for MediaManager. It acts as a proxy for TMDB and TVDB, allowing you to use your own API keys if needed, but the default relay means you don't need to create accounts for API keys yourself.
You might want to use your own relay if you want to avoid rate limits, protect your privacy, or for other reasons. If you know Sonarr's Skyhook, this is similar to that.
Where to get API keys
Get a TMDB API key from The Movie Database
Get a TVDB API key from The TVDB
Example Configuration
Here's a complete example of the metadata section in your config.toml:
Last updated