Plex-Meta-Manager/docs/files/builders/mdblist.md

73 lines
3.9 KiB
Markdown
Raw Normal View History

2024-05-01 16:17:46 +00:00
# MDBList Builders
2022-03-08 08:06:22 +00:00
2024-05-01 16:17:46 +00:00
You can find items using the features of [MDBList.com](https://mdblist.com/) (MDBList).
2022-03-08 08:06:22 +00:00
2023-12-13 21:44:44 +00:00
| Attribute | Description | Works with Movies | Works with Shows | Works with Playlists and Custom Sort |
|:--------------------------------|:--------------------------------------------------------------------------|:------------------------------------------:|:------------------------------------------:|:------------------------------------------:|
2024-05-01 16:17:46 +00:00
| [`mdblist_list`](#mdblist-list) | Gets every movie/show in a [MDBList List](https://mdblist.com/toplists/). | :fontawesome-solid-circle-check:{ .green } | :fontawesome-solid-circle-check:{ .green } | :fontawesome-solid-circle-check:{ .green } |
2022-03-08 08:06:22 +00:00
???+ tip "Note on `mdb` sources"
MDBList is not a live reflection of third-party sites such as CommonSense and Trakt. The data on MDBList is often days, weeks and months out of date as it is only periodically refreshed. As such, the data that Kometa fetches and applies from MDBList may not be the same as you see if you visit those third-party sources directly.
2024-05-01 16:17:46 +00:00
## MDBList List
2022-03-08 08:06:22 +00:00
2024-05-01 16:17:46 +00:00
Finds every item in a [MDBList List](https://mdblist.com/toplists/).
2022-03-08 08:06:22 +00:00
2024-05-01 16:17:46 +00:00
The expected input is an MDBList List URL. Multiple values are supported as a list only a comma-separated string will not work.
2022-03-08 08:06:22 +00:00
2023-12-31 16:45:00 +00:00
The `sync_mode: sync` and `collection_order: custom` Setting are recommended since the lists are continuously updated and in a specific order.
2022-03-08 08:06:22 +00:00
```yaml
collections:
Top Movies of The Week:
mdblist_list: https://mdblist.com/lists/linaspurinis/top-watched-movies-of-the-week
collection_order: custom
sync_mode: sync
```
You can also limit the number of items to search for by using the `limit` and `url` attributes under `mdblist_list`.
```yaml
collections:
Top 10 Movies of The Week:
mdblist_list:
url: https://mdblist.com/lists/linaspurinis/top-watched-movies-of-the-week
limit: 10
collection_order: custom
sync_mode: sync
```
You can also sort the items by using the `sort_by` and `url` attributes under `mdblist_list`.
2022-04-19 15:46:11 +00:00
The default `sort_by` when it's not specified is `rank.asc`.
2022-03-08 08:06:22 +00:00
### Sort Options
| Option | Description |
|:----------------------------------------------|:-------------------------------|
2024-05-01 16:17:46 +00:00
| `rank.asc`<br>`rank.desc` | Sort by MDBList Rank |
| `score.asc`<br>`score.desc` | Sort by MDBList Score |
| `score_average.asc`<br>`score_average.desc` | Sort by MDBList Average Score |
| `released.asc`<br>`released.desc` | Sort by Release Date |
| `imdbrating.asc`<br>`imdbrating.desc` | Sort by IMDb Rating |
| `imdbvotes.asc`<br>`imdbvotes.desc` | Sort by IMDb Votes |
| `imdbpopular.asc`<br>`imdbpopular.desc` | Sort by IMDb Popular |
| `tmdbpopular.asc`<br>`tmdbpopular.desc` | Sort by TMDb Popular |
| `rogerebert.asc`<br>`rogerebert.desc` | Sort by RogerEvert Score |
| `rtomatoes.asc`<br>`rtomatoes.desc` | Sort by Rotten Tomatoes Score |
| `metacritic.asc`<br>`metacritic.desc` | Sort by Metacritic Score |
| `myanimelist.asc`<br>`myanimelist.desc` | Sort by MyAnimeList Score |
| `budget.asc`<br>`budget.desc` | Sort by Budget |
| `revenue.asc`<br>`revenue.desc` | Sort by Revenue |
| `added.asc`<br>`added.desc` | Sort by Date Added |
2022-03-08 08:06:22 +00:00
For these sorts to be reflected in your collection you must use `collection_order: custom`.
```yaml
collections:
Top 10 Movies of The Week:
mdblist_list:
url: https://mdblist.com/lists/linaspurinis/top-watched-movies-of-the-week
sort_by: imdbrating.desc
collection_order: custom
sync_mode: sync
```