mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-27 19:25:40 +02:00
Change all URLs containing maxid.me to dorninger.co
This commit is contained in:
@@ -14,7 +14,7 @@ TMDB (The Movie Database) is the primary metadata provider for MediaManager. It
|
|||||||
|
|
||||||
If you want to use your own TMDB relay service, set this to the URL of your own MetadataRelay. Otherwise, use the default relay.
|
If you want to use your own TMDB relay service, set this to the URL of your own MetadataRelay. Otherwise, use the default relay.
|
||||||
|
|
||||||
- **Default:** `https://metadata-relay.maxid.me/tmdb`
|
- **Default:** `https://metadata-relay.dorninger.co/tmdb`
|
||||||
- **Example:** `https://your-own-relay.example.com/tmdb`
|
- **Example:** `https://your-own-relay.example.com/tmdb`
|
||||||
|
|
||||||
## TVDB Settings (`[metadata.tvdb]`)
|
## TVDB Settings (`[metadata.tvdb]`)
|
||||||
@@ -27,7 +27,7 @@ If you want to use your own TMDB relay service, set this to the URL of your own
|
|||||||
|
|
||||||
If you want to use your own TVDB relay service, set this to the URL of your own MetadataRelay. Otherwise, use the default relay.
|
If you want to use your own TVDB relay service, set this to the URL of your own MetadataRelay. Otherwise, use the default relay.
|
||||||
|
|
||||||
- **Default:** `https://metadata-relay.maxid.me/tvdb`
|
- **Default:** `https://metadata-relay.dorninger.co/tvdb`
|
||||||
- **Example:** `https://your-own-relay.example.com/tvdb`
|
- **Example:** `https://your-own-relay.example.com/tvdb`
|
||||||
|
|
||||||
## MetadataRelay
|
## MetadataRelay
|
||||||
@@ -57,11 +57,11 @@ Here's a complete example of the metadata section in your `config.toml`:
|
|||||||
[metadata]
|
[metadata]
|
||||||
# TMDB configuration
|
# TMDB configuration
|
||||||
[metadata.tmdb]
|
[metadata.tmdb]
|
||||||
tmdb_relay_url = "https://metadata-relay.maxid.me/tmdb"
|
tmdb_relay_url = "https://metadata-relay.dorninger.co/tmdb"
|
||||||
|
|
||||||
# TVDB configuration
|
# TVDB configuration
|
||||||
[metadata.tvdb]
|
[metadata.tvdb]
|
||||||
tvdb_relay_url = "https://metadata-relay.maxid.me/tvdb"
|
tvdb_relay_url = "https://metadata-relay.dorninger.co/tvdb"
|
||||||
```
|
```
|
||||||
|
|
||||||
<note>
|
<note>
|
||||||
|
|||||||
@@ -167,7 +167,7 @@ rule_names = ["prefer_h265", "avoid_cam", "reject_non_freeleech"]
|
|||||||
# its very unlikely that you need to change this
|
# its very unlikely that you need to change this
|
||||||
[metadata]
|
[metadata]
|
||||||
[metadata.tmdb]
|
[metadata.tmdb]
|
||||||
tmdb_relay_url = "https://metadata-relay.maxid.me/tmdb"
|
tmdb_relay_url = "https://metadata-relay.dorninger.co/tmdb"
|
||||||
|
|
||||||
[metadata.tvdb]
|
[metadata.tvdb]
|
||||||
tvdb_relay_url = "https://metadata-relay.maxid.me/tvdb"
|
tvdb_relay_url = "https://metadata-relay.dorninger.co/tvdb"
|
||||||
@@ -167,7 +167,7 @@ rule_names = ["prefer_h265", "avoid_cam", "reject_non_freeleech"]
|
|||||||
# its very unlikely that you need to change this
|
# its very unlikely that you need to change this
|
||||||
[metadata]
|
[metadata]
|
||||||
[metadata.tmdb]
|
[metadata.tmdb]
|
||||||
tmdb_relay_url = "https://metadata-relay.maxid.me/tmdb"
|
tmdb_relay_url = "https://metadata-relay.dorninger.co/tmdb"
|
||||||
|
|
||||||
[metadata.tvdb]
|
[metadata.tvdb]
|
||||||
tvdb_relay_url = "https://metadata-relay.maxid.me/tvdb"
|
tvdb_relay_url = "https://metadata-relay.dorninger.co/tvdb"
|
||||||
@@ -2,11 +2,11 @@ from pydantic_settings import BaseSettings
|
|||||||
|
|
||||||
|
|
||||||
class TmdbConfig(BaseSettings):
|
class TmdbConfig(BaseSettings):
|
||||||
tmdb_relay_url: str = "https://metadata-relay.maxid.me/tmdb"
|
tmdb_relay_url: str = "https://metadata-relay.dorninger.co/tmdb"
|
||||||
|
|
||||||
|
|
||||||
class TvdbConfig(BaseSettings):
|
class TvdbConfig(BaseSettings):
|
||||||
tvdb_relay_url: str = "https://metadata-relay.maxid.me/tvdb"
|
tvdb_relay_url: str = "https://metadata-relay.dorninger.co/tvdb"
|
||||||
|
|
||||||
|
|
||||||
class MetadataProviderConfig(BaseSettings):
|
class MetadataProviderConfig(BaseSettings):
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
This is a service that provides metadata for movies and TV shows. It caches the metadata to not overload the TMDB and
|
This is a service that provides metadata for movies and TV shows. It caches the metadata to not overload the TMDB and
|
||||||
TVDB APIs. This service is used by MediaManager to fetch metadata for movies and TV shows. I (the developer) run a
|
TVDB APIs. This service is used by MediaManager to fetch metadata for movies and TV shows. I (the developer) run a
|
||||||
public instance of this service at https://metadata-relay.maxid.me, but you can also run your
|
public instance of this service at https://metadata-relay.dorninger.co, but you can also run your
|
||||||
own instance.
|
own instance.
|
||||||
|
|
||||||
## Example Docker Compose Configuration
|
## Example Docker Compose Configuration
|
||||||
|
|||||||
Reference in New Issue
Block a user