e.g. find short video files:
Shell: Select all
filebot -find --filter "f.video && minutes < 15"
e.g. find short videos and then scp them to a remote server with new shell-friendly file names:
Shell: Select all
filebot -find --filter "f.video && minutes < 15" -exec scp {f} "user@host:/volume1/videos/{fn.ascii().clean().space('_')}.{ext}"
{fn} ... file name without extension
.ascii() ... transliterate to ASCII
.clean() ... remove brackets
.space('_') ... replace whitespace with underscore
{ext} ... file extension

