Skip to content

Commit

Permalink
update imdb search
Browse files Browse the repository at this point in the history
  • Loading branch information
joryirving committed Apr 30, 2024
1 parent ef5258d commit e9d9fc0
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ collections:
- https://www.imdb.com/list/ls000099714
- https://www.imdb.com/list/ls000058693
imdb_search:
- https://www.imdb.com/search/title/?genres=horror&keywords=haunted-house&sort=moviemeter,asc
genre: horror
keyword: haunted-hous
sort_by: popularity.asc
tmdb_collection:
- 91361 # Halloween Collection
- 8581 # A Nightmare on Elm Street Collection
Expand Down
24 changes: 20 additions & 4 deletions kubernetes/main/apps/media/plex/kometa/custom/Movies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,12 @@ templates:
votes_min: 50000
limit: 100
imdb_search:
url: https://www.imdb.com/search/title/?title_type=<<type>>,&genres=<<genre>>,&release_date=<<year_min>>-01-01,&user_rating=<<rating_min>>,10&num_votes=<<votes_min>>,&sort=user_rating,desc
type: <<type>>
genre: <<genre>>
release.after: <<year_min>>-01-01
rating.gte: <<rating_min>>
votes.gte: <<votes_min>>
sort_by: rating.desc
limit: <<limit>>
sort_title: "!08_<<collection_name>>"
sync_mode: sync
Expand All @@ -76,7 +81,10 @@ templates:
votes_min: 50000
limit: 100
imdb_search:
url: https://www.imdb.com/search/keyword/?keywords=<<keyword>>&title_type=<<type>>,&release_date=<<year_min>>-01-01,&user_rating=<<rating_min>>,10&num_votes=<<votes_min>>,&sort=user_rating,desc
type: <<type>>
release.after: <<year_min>>-01-01
rating.gte: <<rating_min>>
votes.gte: <<votes_min>>
limit: <<limit>>
sort_title: "!09_<<collection_name>>"
sync_mode: sync
Expand Down Expand Up @@ -160,9 +168,13 @@ collections:
IMDb Most Popular:
template: {name: Charts}
imdb_chart: popular_movies
collection_order: custom
sync_mode: sync
IMDb Top 250:
template: {name: Charts}
imdb_search: https://www.imdb.com/search/title/?title_type=feature&groups=top_250&sort=user_rating,desc
imdb_chart: top_movies
collection_order: custom
sync_mode: sync
TMDb Most Popular:
template: {name: Charts}
tmdb_popular: 30
Expand Down Expand Up @@ -481,7 +493,11 @@ collections:
Documentary:
template: {name: IMDb Genres, genre: documentary}
imdb_search:
url: https://www.imdb.com/search/title/?genres=documentary,&release_date=1990-01-01,&user_rating=7,10&num_votes=50000,&sort=user_rating,desc
genres: documentary
release.after: 1990-01-01
rating.gte: 7
votes.gte: 50000
sort_by: rating.desc
limit: 100
summary: A collection of documentary movies from 1990 to now, with a minimum rating of 7 and at least 50000 votes from IMDb.
Drama:
Expand Down
17 changes: 14 additions & 3 deletions kubernetes/main/apps/media/plex/kometa/custom/TV Shows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,12 @@ templates:
votes_min: 50000
limit: 100
imdb_search:
url: https://www.imdb.com/search/title/?title_type=<<type>>,&genres=<<genre>>,&release_date=<<year_min>>-01-01,&user_rating=<<rating_min>>,10&num_votes=<<votes_min>>,&sort=user_rating,desc
type: <<type>>
genre: <<genre>>
release.after: <<year_min>>-01-01
rating.gte: <<rating_min>>
votes.gte: <<votes_min>>
sort_by: rating.desc
limit: <<limit>>
sort_title: "!08_<<collection_name>>"
sync_mode: sync
Expand All @@ -76,7 +81,11 @@ templates:
votes_min: 50000
limit: 100
imdb_search:
url: https://www.imdb.com/search/keyword/?keywords=<<keyword>>&title_type=<<type>>,&release_date=<<year_min>>-01-01,&user_rating=<<rating_min>>,10&num_votes=<<votes_min>>,&sort=user_rating,desc
type: <<type>>
release.after: <<year_min>>-01-01
rating.gte: <<rating_min>>
votes.gte: <<votes_min>>
sort_by: rating.desc
limit: <<limit>>
sort_title: "!09_<<collection_name>>"
sync_mode: sync
Expand Down Expand Up @@ -162,7 +171,9 @@ collections:
imdb_chart: popular_shows
IMDb Top 250:
template: {name: Charts}
imdb_list: https://www.imdb.com/search/title/?title_type=tv_series,tv_miniseries&num_votes=50000,&sort=user_rating,desc
imdb_search:
type: tv_series,tv_miniseries
votes.gte: 50000
limit: 250
TMDb Most Popular:
template: {name: Charts}
Expand Down

0 comments on commit e9d9fc0

Please sign in to comment.