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?
Missing Episodes
Re: Missing Episodes
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:
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:
4.
The {model} just so happens to include a few examples that match your exact use case:
viewtopic.php?t=9814
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}