#Collection based on dolby vision content
1 messages · Page 1 of 1 (latest)
https://metamanager.wiki/en/latest/metadata/filters.html#boolean-filters
collections:
DV Movies:
plex_all: true
filters:
has_dolby_vision: true
Thank you! To make the same collection with hdr content, do I just change to has_hdr: true ?
collections:
HDR Movies:
plex_search:
all:
hdr: true
These three filters are available in this context.
And the last one for today, collections for atmos and dtsX content? - tried atmos: true with no luck. Thanks for your help so far 🙂👍
Plex doesn't output atmos and dts-x in the same way that it outputs HDR and DV, so those are a bit more complicated
Assuming you are using the trash naming scheme:
collections:
ATMOS:
plex_all: true
filters:
- audio_track_title.regex: (?i)\batmos(\b|\d)
- filepath.regex: (?i)\batmos(\b|\d)
DTS-X:
plex_all: true
filters:
- audio_track_title.regex: (?i)\bdts[ ._-]?x\b
- filepath.regex: (?i)\bdts[ ._-]?x\b
I haven't tested these
you may need to wrap the values in quotation marks, I'm not sure, give what I've put a go first 🙂
There are examples of a lot of these things in the defaults files.
it's worth noting that you have a few different versions of atmos, which I haven't catered for.
TrueHD Atmos
Dolby Digital+ Atmos
I give it a try, will post the results👍
you can look at the regex strings in this file:
https://github.com/meisnate12/Plex-Meta-Manager/blob/master/defaults/overlays/audio_codec.yml
For example, the list of available audio codec overlays in on this page:
https://metamanager.wiki/en/latest/defaults/overlays/audio_codec.html
Since that default file allows that list, you can surmise that a way to extract items that match will be found in the default yml files, as linked just above.
Some concept for any of the other defaults.
Remember that these are just some predone defaults, not catalogs of everything that's possible.
it worked perfect. I tried to make a collection containing atmos and vision content, by combining the filters - but this does not work? is this not an option?
What specifically did you try?
collections:
ATMOS+DV:
plex_all: true
filters:
has_dolby_vision: true
- audio_track_title.regex: (?i)\batmos(\b|\d)
- filepath.regex: (?i)\batmos(\b|\d)
And what was the result?
That formatting looks wrong. What are you hoping to include in this collection?
Things that match any of those criteria? All of those criteria? Something else?
At a minimum you'll want:
collections:
ATMOS+DV:
plex_all: true
filters:
- has_dolby_vision: true
- audio_track_title.regex: (?i)\batmos(\b|\d)
- filepath.regex: (?i)\batmos(\b|\d)
If you want DV movies that match either of those regex:
collections:
ATMOS+DV:
plex_all: true
filters:
- has_dolby_vision: true
audio_track_title.regex: (?i)\batmos(\b|\d)
- has_dolby_vision: true
filepath.regex: (?i)\batmos(\b|\d)
I want to collect only movies in vision and atmos.