Search
The search looks up full words in Itemnames (name), Tags (tag), Artist (artist), Album (album) and Title (title) without giving special search commands in the search string.
Search-Fields
The useful search fields depend on the item type. Therefore some fields are given twice or more in the different type depending lists.
General search fields
- rel_path (TEXT):
- name (TEXT):
- type (TEXT):
- favourite_of (KEYWORD):
- datetime (DATETIME):
- size (NUMERIC):
- tag (KEYWORD):
Image
- exposure_program (TEXT):
- exposure_time (NUMERIC):
- flash (TEXT):
- f_number (NUMERIC):
- focal_length (NUMERIC):
- lon (NUMERIC):
- lat (NUMERIC):
- height (NUMERIC):
- iso (NUMERIC):
- camera (TEXT):
- orientation (NUMERIC):
- width (NUMERIC):
Audio
- album (TEXT):
- artist (TEXT):
- bitrate (NUMERIC):
- duration (NUMERIC):
- genre (TEXT):
- title (TEXT):
- track (NUMERIC):
- year (NUMERIC):
Video
- ratio (NUMERIC):
Search syntax (Whoosh)
Logic operators
- AND
- Example: "foo AND bar" - Search will find all items with foo and bar.
- OR
- Example: "foo OR bar" - Search will find all items with foo, bar or with foo and bar.
- NOT
- Example: "foo NOT bar" - Search will find all items with foo and no bar.
Search in specific fields
A search pattern like foo:bar does look for bar in the field named foo.
This search pattern can also be combined with other search text via logical operators.
Search for specific content
- Wildcards:
- Range:
- From To:
- Above:
- Below:
- Named constants:
- now: Current date
- -[num]y: Current date minus [num] years
- ...
Examples
- type:video AND datetime:2018 gives results with all videos in year 2018.
- datetime:[-2y to now] gives results with all item of the last two years.
- rel_path:2018* gives results with all item having 2018 in their path.
- tag:Test gives results with all item having Test in their tags.
- datetime:2016 AND favourite_of:* gives results with all item having 2018 in their tags or path and are favourite of someone.









