Support for more or arbitrary orderings

All your suggestions, requests and ideas for future development
Post Reply
laharah
Power User
Posts: 13
Joined: 22 Oct 2014, 10:06

Support for more or arbitrary orderings

Post by laharah »

thetvdb supports several ordering values for some shows besides just DVD, ABS, and AIRDATE.

I ran into this issue while trying to sort my Futurama Episodes. As you can see Futurama has all of the above as well as "streaming order" and "production order" (production order is called `Regional Order` in the api):

https://thetvdb.com/series/futurama#seasons

Unfortunately my files are in production order, which is wildly different from either broadcast or dvd order which makes it a major pain to sort. It's not a huge deal since I don't believe this kind of problem comes up often (Futurama had a notoriously turbulant development, and was also in that time where fox was randomly re-arranging show orders for broadcast).

Anyways it'd be nice if the cli would allow "arbitrary" orderings for certain sources, where the user could enter a supported ordering for a particular show.
User avatar
rednoah
The Source
Posts: 23002
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Support for more or arbitrary orderings

Post by rednoah »

You could try these:

Shell: Select all

--order Digital

Shell: Select all

--order Production


:idea: FileBot currently maps your --order value to TheTVDB orders like so:

Groovy: Select all

switch (order) {
	case Absolute:
		return "absolute";
	case DVD:
		return "dvd";
	case Digital:
		return "alternate";
	case Production:
		return "official";
	default:
		return "default";
}
:idea: Please read the FAQ and How to Request Help.
User avatar
rednoah
The Source
Posts: 23002
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Support for more or arbitrary orderings

Post by rednoah »

laharah wrote: 09 Nov 2023, 07:48 Unfortunately my files are in production order, which is wildly different from either broadcast or dvd order which makes it a major pain to sort.
Please include sample file paths as text so that we can see your file names too.
:idea: Please read the FAQ and How to Request Help.
Post Reply