* add chapter statistics and new filler options * refactor playout builder * more refactor prep for filler * rewrite schedulers * refactor collectionkey * add tail filler kind * migrate tail filler to filler preset * optionally show filler * fix playout detail row count * remove duration tail filler options * implement tail and fallback in flood scheduler * implement tail and fallback in one scheduler * implement tail and fallback in multiple scheduler * implement looping fallback filler * more duration tests * start to add post-roll filler to flood * rework playoutitem filler tagging * rework scheduler logging * calculate whether configured filler will fit * implement pre-roll and post-roll duration and count filler * improve duration filler calculation * add minutes to search index * update channel guide to work with new filler * add mid-roll filler * don't clone enumerators for filler calculations * support pre-roll and post-roll pad filler * implement mid-roll pad filler * allow clearing filler selections in schedule editor * fix tests * filler config validation * use consistent time zone for tests
131 lines
4.1 KiB
Markdown
131 lines
4.1 KiB
Markdown
## Search Box
|
|
|
|
Movies, Shows, Episodes, Artists and Music Videos can be searched using the search box next to the ErsatzTV logo.
|
|
|
|

|
|
|
|
## Search Fields
|
|
|
|
The `title` field of all media types is searched by default if no other field is specified.
|
|
|
|
### Movies
|
|
|
|
The following fields are available for searching movies:
|
|
|
|
- `title`: The movie title
|
|
- `genre`: The movie genre
|
|
- `tag`: The movie tag (not available with Plex metadata)
|
|
- `plot`: The movie plot
|
|
- `studio`: The movie studio
|
|
- `actor`: An actor from the movie
|
|
- `director`: A director from the movie
|
|
- `writer`: A writer from the movie
|
|
- `library_name`: The name of the library that contains the movie
|
|
- `content_rating`: The movie content rating (case-sensitive)
|
|
- `language`: The movie audio stream language
|
|
- `release_date`: The movie release date (YYYYMMDD)
|
|
- `minutes`: the rounded-up whole number duration of the movie in minutes
|
|
- `type`: Always `movie`
|
|
|
|
### Shows
|
|
|
|
The following fields are available for searching shows:
|
|
|
|
- `title`: The show title
|
|
- `genre`: The show genre
|
|
- `tag`: The show tag (not available with Plex metadata)
|
|
- `plot`: The show plot
|
|
- `studio`: The show studio
|
|
- `actor`: An actor from the show
|
|
- `library_name`: The name of the library that contains the show
|
|
- `content_rating`: The show content rating (case-sensitive)
|
|
- `language`: The show audio stream language
|
|
- `release_date`: The show release date (YYYYMMDD)
|
|
- `type`: Always `show`
|
|
|
|
### Episodes
|
|
|
|
The following fields are available for searching episodes:
|
|
|
|
- `title`: The episode title
|
|
- `plot`: The episode plot
|
|
- `director`: A director from the episode
|
|
- `writer`: A writer from the episode
|
|
- `library_name`: The name of the library that contains the episode
|
|
- `language`: The episode audio stream language
|
|
- `release_date`: The episode release date (YYYYMMDD)
|
|
- `minutes`: the rounded-up whole number duration of the episode in minutes
|
|
- `type`: Always `episode`
|
|
|
|
### Artists
|
|
|
|
The following fields are available for searching artists:
|
|
|
|
- `title`: The artist name
|
|
- `genre`: The artist genre
|
|
- `style`: The artist style
|
|
- `mood`: The artist mood
|
|
- `library_name`: The name of the library that contains the artist
|
|
- `type`: Always `artist`
|
|
|
|
### Music Videos
|
|
|
|
The following fields are available for searching music videos:
|
|
|
|
- `title`: The music video title
|
|
- `album`: The music video album
|
|
- `genre`: The music video genre
|
|
- `library_name`: The name of the library that contains the music video
|
|
- `language`: The music video audio stream language
|
|
- `release_date`: The music video release date (YYYYMMDD)
|
|
- `minutes`: the rounded-up whole number duration of the music video in minutes
|
|
- `type`: Always `music_video`
|
|
|
|
### Other Videos
|
|
|
|
The following fields are available for searching other videos:
|
|
|
|
- `title`: The filename of the video (without extension)
|
|
- `tag`: All of the video's parent folders
|
|
- `minutes`: the rounded-up whole number duration of the video in minutes
|
|
- `type`: Always `other_video`
|
|
|
|
## Special Search Fields
|
|
|
|
- `released_inthelast`: For any media type that supports `release_date`, `released_inthelast` takes a number and a unit (days, weeks, months, years) and returns items released between the specified time ago and now
|
|
- `released_notinthelast`: For any media type that supports `release_date`, `released_notinthelast` takes a number and a unit (days, weeks, months, years) and returns items released before the specified time ago
|
|
- `released_onthisday`: For any media type that supports `release_date`, `released_onthisday` takes any value (ignored) and will return items released on this month number and day number in previous years
|
|
|
|
## Sample Searches
|
|
|
|
### Christmas
|
|
|
|
`plot:christmas`
|
|
|
|
### Christmas without Horror
|
|
|
|
`plot:christmas NOT genre:horror`
|
|
|
|
### 1970's Movies
|
|
|
|
`type:movie AND release_date:197*`
|
|
|
|
### 1970's-1980's Comedies
|
|
|
|
`genre:comedy AND (release_date:197* OR release_date:198*)`
|
|
|
|
### Lush Music
|
|
|
|
`mood:lush`
|
|
|
|
### Episodes from the past week
|
|
|
|
`type:episode AND released_inthelast:"1 week"`
|
|
|
|
### Episodes older than the past week
|
|
|
|
`type:episode AND released_notinthelast:"1 week"`
|
|
|
|
### Episodes released on this day
|
|
|
|
`type:episode AND released_onthisday:1` |