#New to PMM and not understanding how to set up a collection based upon a Radarr tag.

1 messages ยท Page 1 of 1 (latest)

rough copper
#

I added a trakt list for my wifes Lifetime movie's. In the wiki and on here I see the following to add to the config file, but I'm not understanind if that will label the collection as Lifetime movies.The movies are all tagged with trakt_lifetime_movies from the persons list.

So if I'm reading this correctly the item_label would label the collection as
trakt_lifetime_movies. Is there another entry that I need to this to name it as
Lifetime movies?

From post here and wiki

collections:
Radarr Tag1 and Tag2 Movies:
radarr_taglist: tag1, tag2
item_label: tag1, tag2

So I should use the following?

collections:
Radarr trakt_lifetime_movies Movies:
radarr_taglist: trakt_lifetime_movies
item_label: Lifetime Movies

tropic domeBOT
#

Please complete #938455615741775902 and someone from the community or one of our <@&938443185347244033> members will respond when they're available.

Including the meta.log from the beginning is a huge help use !logs for more information.

brave monolith
#

so the line underneath the collections line will be the title of the collections

#
collections:
  Lifetime Movies:
#

radarr_taglist: tag1, tag2 will generate a collection based on the tags that you've listed

#

and item_label will add "tag1" and "tag2" as labels, but literally the text "tag1" and "tag2", not the tags from the radarr_taglist

#

Actually I think I'm incorrect and I think the above will work

rough copper
#

So my entry should be :

  Lifetime Movies:     
  Radarr trakt_lifetime_movies Movies:
    radarr_taglist: trakt_lifetime_movies
    item_label:Lifetime Movies```
brave monolith
#

remove the third line

#

and add a space after the : in item_label:Lifetime Movies

rough copper
#
  Lifetime Movies:     
    radarr_taglist: trakt_lifetime_movies
    item_label: Lifetime Movies```
brave monolith
#

perfect

rough copper
#

and one final question, do I then add the poster in Plex for the Collection or will it generate a generic poster named Lifetime Movies or do I need to add one?

brave monolith
#

It won't automatically generate one

#

you can add one manually in plex, or you can tell PMM the url of the poster you want:

collections:
  Lifetime Movies:     
    radarr_taglist: trakt_lifetime_movies
    item_label: Lifetime Movies
    url_poster: https://github.com/meisnate12/Plex-Meta-Manager-Images/blob/master/network/Lifetime.jpg?raw=true
#

will give you this poster

rough copper
#

My wife is going to love this. Thank you so much. So in the future I just find the image and add it at the end of the entry.

brave monolith
#

that's one of the ways, yes ๐Ÿ™‚

rough copper
#

I'll stick with that for now until I learn more.

#

Thanks so much for the help

brave monolith
#

No problem!

#

just to be sure

#

do you need item_label: Lifetime Movies?

#

all that will do is add "Lifetime Movies" as a label to the items - if you have a specific need to do that (such as restricting that label from certain users) then that's fine, but generally it's not really something you need to do.

rough copper
#

ok.

brave monolith
#

if all you want is a collection based on the radarr taglist, this is all you need:

collections:
  Lifetime Movies:     
    radarr_taglist: trakt_lifetime_movies
    url_poster: https://github.com/meisnate12/Plex-Meta-Manager-Images/blob/master/network/Lifetime.jpg?raw=true
rough copper
#

I can do that.

#

Thanks again for the help

brave monolith
#

No problem

#

You happy for me to close this thread?

rough copper
#

yep

tropic domeBOT
#

This post has been marked as Resolved and will be closed in one hour.

If you require further assistance on this issue, you can send another message in this post to re-open it.

If you require further support that is unrelated to this post, please start a new post and do not re-open this one.

Thanks for using Plex Meta Manager.

rough copper
#

I must have done something wrong. The only thing that showed up under Lifetime was 4 tv shows.

#
  Movies:                                       # Each library must match the Plex library name
    metadata_path:
    - file: config/Movies/Movies.yml                   # This is a local file on the system
    - folder: config/Movies/                    # This is a local directory on the system
    - pmm: basic                                # This is a file within the defaults folder in the Repository
    - pmm: imdb                                 # This is a file within the defaults folder in the Repository

    collections:
      Lifetime Movies:
       radarr_taglist: trakt_lifetime_movies
       url_poster: https://github.com/meisnate12/Plex-Meta-Manager-Images/blob/master/network/Lifetime.jpg?raw=true

#    overlay_path:
#    - remove_overlays: false                    # Set this to true to remove all overlays
#    - file: config/Overlays.yml                 # This is a local file on the system
#    - pmm: ribbon                               # This is a file within the defaults folder in the Repository```
brave monolith
#

That's concerning if you're running on a Movies library ๐Ÿคฃ

#

oh, right

rough copper
#

right?

brave monolith
#

so you're not using it correctly

rough copper
#

this is a better view

brave monolith
#

config.yml is effectively an index, you point it to external files (such as - pmm: imdb) which contains your collections.

rough copper
brave monolith
#

so you would take this

collections:
  Lifetime Movies:     
    radarr_taglist: trakt_lifetime_movies
    url_poster: https://github.com/meisnate12/Plex-Meta-Manager-Images/blob/master/network/Lifetime.jpg?raw=true

and save it as "lifetime.yml" or whatever you want to call it

#

Place it next to your config.yml and then in your config.yml you would put:

libraries:
  Movies:
    metadata_path:
    - file: config/lifetime.yml  # HERE
rough copper
#

ok so contents of lifetime.yml

brave monolith
#

yup

rough copper
#

updated config.yml

brave monolith
#

if you don't have these files, just delete them from your config.yml

#

those are just placeholders ๐Ÿ™‚

rough copper
#

I have a collection for holidays in that folder

#

would this work also?

brave monolith
#

what folder is this sorry?

rough copper
#

adjusting this line

#

Movies

brave monolith
#

if lifetime.yml is already in the Movies folder then you don't need to call the file individually

#

since it's covered under the "folder" entry

#

you should get rid of this line though:

rough copper
#
  • file: config/Movies/lifetime.yml
brave monolith
#

- folder: config/Movies/ is going to run ALL .yml files within the Movies folder

#

so don't call anything individually within that folder as well

rough copper
#

that makes sense

#

so this

brave monolith
#
libraries:
  Movies:
    metadata_path:
    - folder: config/Movies/
#

that's all you need

#

as well as any - pmm: ones

rough copper
brave monolith
#

perfect

rough copper
#

ok, off to a work meeting. I will re-run it in about 1/2 an hour

#

running it now, may update in a bit

brave monolith
#

๐Ÿ‘

rough copper
#

I hate it when work gets in the way of Plexing

rough copper
#

today has been nothing but teams meetings

#

I still have a weird collection in TV

lunar spindle
#

What's weird about it?

rough copper
#

I just deleted it and will rerun

#

It wasn't really Lifetime shows. It have You in it

#

I'm sure it was from being misconfigured.

lunar spindle
#

Would have to see the collection definition and maybe the log to offer much.

rough copper
#

I'm rerunning PMM to see if it gets recreated

#

and it came back.

lunar spindle
#

the answer will be in the log.

rough copper
#

I refreshed the browser and it's not there.

brave monolith
#

Lifetime is part of - pmm: network

#

So you may be seeing that if you are using that file on your TV library

#

Whereas Lifetime Movies is the one we created in this thread

rough copper
#

The collection doesn't show in the search list anymore. I just had to refresh the browser.

#

should it be listed in the collections tab?

#

It does show in the alpha list under L

brave monolith
#

So the PMM Defaults have a special sorting title which pushes them to the top

#

If you check the sort title of one of those collections you will see how it's set up

#

You can copy the sort title format to your collection so that it is moved up too

rough copper
#

like this

#

!01_Newly Released

brave monolith
#

Yup

#

So you could do !01_Lifetime and see where it's placed

#

Or !02 etc

rough copper
#

That's pretty cool

#

ok lets call this closed again. You are awesome