Filter files with undefined binding
Posted: 20 Aug 2017, 13:17
Hello, I'm trying to list all files which don't have a Release Group (but could be any kind of binding).
This is what I tried, but I'm missing something:
In short I don't understand how to the absence of a binding should be tested.
Thanks.
This is what I tried, but I'm missing something:
Code: Select all
filebot -mediainfo -r 'Season 01' --filter 'file.isVideo() && !group' --format {f}
filebot -mediainfo -r 'Season 01' --filter 'file.isVideo() && group == null' --format {f}
filebot -mediainfo -r 'Season 01' --filter 'file.isVideo() && group == ""' --format {f}
Thanks.