Missing Episodes

All your suggestions, requests and ideas for future development
Post Reply
Abyssix
Posts: 7
Joined: 06 Mar 2020, 11:24

Missing Episodes

Post by Abyssix »

Hi Everyone,


I've been thinking of an idea as a feature request, would it be possible to implement a option for example when you drag and drop your series/movies into File Bot and you search for the correct names that it would provide the naming scheme of that episode/movie and it will tell you what episodes are missing of that particular show/season/movie?

And is there an option to tell you that the series has ended? For example I see there is a airdate in the format expressions but no end date?
User avatar
rednoah
The Source
Posts: 23002
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Missing Episodes

Post by rednoah »

1.
There's a script for finding missing episodes:
viewtopic.php?p=19132#p19132


2.
{info.status} will give you the status of the series, e.g. Ended:

Code: Select all

{info.status}

3.
There is no end date in the series metadata, but you can use computed values, e.g. {episodelist.airdate.max()} last airdate of any episode for the given series:

Code: Select all

{episodelist.airdate.max()}

4.
The {model} just so happens to include a few examples that match your exact use case:
viewtopic.php?t=9814

Code: Select all

{n} {model.episode.containsAll(episodelist) ? '[complete]' : '[incomplete]'}/{plex.name}
:idea: Please read the FAQ and How to Request Help.
Post Reply