Search found 4 matches

by nuchdog
15 Apr 2017, 04:01
Forum: Ubuntu & Desktop Linux
Topic: [Fedora 25] Error Loading MediaInfo
Replies: 3
Views: 3740

Re: [Fedora 25] Error Loading MediaInfo

for me, it was as simple as:

Code: Select all

sudo apt-get install libmediainfo-dev
by nuchdog
27 Dec 2016, 06:44
Forum: Feature Requests and Bug Reports
Topic: filter timespamp doesn't work with 4.7.5
Replies: 11
Views: 6609

Re: filter timespamp doesn't work with 4.7.5

Awesome, I will give it a shot and see if I can force the issue again. Otherwise

Code: Select all

any{ age < 5 }{ airdate ? true : false }
appears like it should work, or at least give filebot a shot at correctly matching the episode.
by nuchdog
27 Dec 2016, 05:05
Forum: Feature Requests and Bug Reports
Topic: filter timespamp doesn't work with 4.7.5
Replies: 11
Views: 6609

Re: filter timespamp doesn't work with 4.7.5

Getting closer. Also should answer your issue ZeroByDivide. I have been having some luck using the "?" Ternary operator. expression ? "if true or exists" : "if not true or does not exist" see: http://groovy-lang.org/operators.html Thus we can filter out episodes more than 5 days old and specials by ...
by nuchdog
26 Dec 2016, 20:43
Forum: Feature Requests and Bug Reports
Topic: filter timespamp doesn't work with 4.7.5
Replies: 11
Views: 6609

Re: filter timespamp doesn't work with 4.7.5

Is there a way to limit the time frame for future episodes? any{ age < 5}{true} returns all future episodes. With timeStamp I could filter down to only episodes in the next few days. Specifically, some episodes hit my machine before midnight in my timezone and thus show as technically not having ...