| Prefix | Field | Example | Description |
|--------|----------------|-------------------------|-------------------------------------------|
| ~ | publication | `~sunny` | Filters subtitles by publication |
| # | series/episode | `#S1E04`, `#S1`, `#E04` | Filter by a series and/or episode number. |
| + | timestamp | `+1m`, `+10m30s` | Filter by timestamp greater than. |
| " | content | `"day man"` | Phrase match |
Examples
day man
- search for any dialog containingday
orman
in any order/location."day man"
- search for any dialog containing the phraseday man
in that order (case insensitive).~sunny day
- search for any dialog from thesunny
publication containingday
.~sunny +1m30s #S3E09 man "day"
- search for dialog from thesunny
publication, season 3 episode 9 occurring after1m30s
and containing the wordman
andday
.
You can page results with the >
operator in a query e.g. >10
.
man >20
- search for dialog containingman
, but skip the first 20 results.~sunny +1m30s #S3E09 man "day" >100
- complex query with the fist 100 results skipped.