#Collection based on dolby vision content

1 messages · Page 1 of 1 (latest)

solid lance
#

I would like to make a collection based on dolby vision content in my library. Any suggestions how to get this done?

dire wraith
solid lance
#

Thank you! To make the same collection with hdr content, do I just change to has_hdr: true ?

hoary sand
#
collections:
  HDR Movies:
    plex_search:
      all:
        hdr: true
dire wraith
solid lance
#

And the last one for today, collections for atmos and dtsX content? - tried atmos: true with no luck. Thanks for your help so far 🙂👍

hoary sand
#

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 🙂

dire wraith
#

There are examples of a lot of these things in the defaults files.

hoary sand
#

it's worth noting that you have a few different versions of atmos, which I haven't catered for.

#

TrueHD Atmos
Dolby Digital+ Atmos

solid lance
#

I give it a try, will post the results👍

hoary sand
dire wraith
#

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.

solid lance
#

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?

dire wraith
#

What specifically did you try?

solid lance
dire wraith
#

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)
solid lance
#

I want to collect only movies in vision and atmos.

dire wraith
#

So probably that second example.

#

The first will be things that match any of those three, so DV OR Atmos.
If you want only items that are DV AND Atmos, you want the second.