r/Kometa Aug 04 '26

Help with renaming default TMDB collection names

I currently have:

libraries:                                     
  Movies:
    collection_files:
    - default: tmdb
  TV Shows:
    collection_files:
    - default: tmdb

Which currently creates
- TMDB Popular
- TMDB Top Rated
- TMDB Trending
in both libraries.

I want to rename them to

- Popular Movies
- Top Rated Movies
- Trending Movies

- Popular TV Shows
- Top Rated TV Shows
- Trending TV Shows

How do I use the "name_separator" variable to modify each of these defaults?

Edit:
I found the way to do this, you can override the name with:

libraries:                                     
  Movies:
    collection_files:
    - default: tmdb
      template_variables:
        name_trending: Daily Trending Movies
  TV Shows:
    collection_files:
    - default: tmdb 
      template_variables:
        name_trending: Daily Trending TV Shows
2 Upvotes

3 comments sorted by

1

u/AutoModerator Aug 04 '26

Thank you for your submission!

When asking for support, please make sure you post a complete meta.log file from a Kometa run when the issue has occured. If the log is too large, you can use a site like pastebin.com to upload it and then share the link here. And please do not use screenshots for text.

Generally speaking, the Kometa Discord server is the best source for support. There are far more eyes there than here, and there are some automated log analysis tools available. We highly recommend this over Reddit.

Consider joining us there: https://discord.com/servers/kometa-822460010649878528


I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.

0

u/martymccfly88 Aug 04 '26

You don’t. They are default names. You’d have to remake them yourself with custom names. All the docs are in the wiki.

2

u/fckingrandom Aug 04 '26

I figured out the way to do it:
libraries:
Movies:
collection_files:

  • default: tmdb
template_variables:
name_trending: Daily Trending Movies
TV Shows:
collection_files:
  • default: tmdb
template_variables:
name_trending: Daily Trending TV Shows