Advertisement
bman2211

Untitled

Apr 13th, 2024
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.67 KB | None | 0 0
  1. libraries:                      # This is called out once within the config.yml file
  2.   Films:                       # These are names of libraries in your Plex
  3.     collection_files:
  4.       - pmm: basic               # This is a file within PMM's defaults folder
  5.       - pmm: imdb                # This is a file within PMM's defaults folder
  6.       - pmm: oscars
  7.       - file: config/movies.yml
  8.       # see the wiki for how to use local files, folders, URLs, or files from git
  9.     overlay_files:
  10.       - pmm: ratings
  11.         template_variables:
  12.           rating1: critic
  13.           rating2: audience
  14. #          rating3: user
  15.           rating1_image: imdb
  16.           rating2_image: rt_popcorn
  17. #          rating3_image: tmdb
  18.     operations:
  19.       mass_critic_rating_update: imdb
  20.       mass_audience_rating_update: mdb_tomatoesaudience
  21. #      mass_user_rating_update: tmdb
  22.   TV Shows:
  23.     collection_files:
  24.       - pmm: basic               # This is a file within PMM's defaults folder
  25.       - pmm: imdb                # This is a file within PMM's defaults folder
  26. #      - file: config/tv.yml
  27.       # see the wiki for how to use local files, folders, URLs, or files from git
  28.     overlay_files:
  29.       - pmm: ratings
  30.         template_variables:
  31.           rating1: critic
  32.           rating2: audience
  33. #          rating3: user
  34.           rating1_image: imdb
  35.           rating2_image: rt_popcorn
  36. #          rating3_image: tmdb
  37.       - pmm: ratings
  38.         template_variables:
  39.           builder_level: episode
  40.           rating1: critic
  41. #          rating2: audience
  42.           rating1_image: imdb
  43. #          rating2_image: tmdb
  44.     operations:
  45.       mass_critic_rating_update: imdb
  46.       mass_audience_rating_update: mdb_tomatoesaudience
  47. #      mass_user_rating_update: tmdb
  48.       mass_episode_critic_rating_update: imdb
  49. #      mass_episode_audience_rating_update: tmdb
  50. playlist_files:
  51.   - pmm: playlist                # This is a file within PMM's defaults folder
  52.     template_variables:
  53.       libraries: Films, TV Shows   # list of libraries that you want the PMM Defaults playlists to look at
  54.   # see the wiki for how to use local files, folders, URLs, or files from git
  55. settings:
  56.   run_order:
  57.  - operations
  58.   - metadata
  59.   - collections
  60.   - overlays
  61.   cache: true
  62.   cache_expiration: 60
  63.   asset_directory: config/assets
  64.   asset_folders: true
  65.   asset_depth: 0
  66.   create_asset_folders: false
  67.   prioritize_assets: false
  68.   dimensional_asset_rename: false
  69.   download_url_assets: false
  70.   show_missing_season_assets: false
  71.   show_missing_episode_assets: false
  72.   show_asset_not_needed: true
  73.   sync_mode: append
  74.   minimum_items: 1
  75.   default_collection_order:
  76.   delete_below_minimum: true
  77.   delete_not_scheduled: false
  78.   run_again_delay: 2
  79.   missing_only_released: false
  80.   only_filter_missing: false
  81.   show_unmanaged: true
  82.   show_unconfigured: true
  83.   show_filtered: false
  84.   show_options: true
  85.   show_missing: true
  86.   show_missing_assets: true
  87.   save_report: false
  88.   tvdb_language: eng
  89.   ignore_ids:
  90.   ignore_imdb_ids:
  91.   item_refresh_delay: 0
  92.   playlist_sync_to_user: all
  93.   playlist_exclude_users:
  94.   playlist_report: false
  95.   verify_ssl: true
  96.   custom_repo:
  97.   check_nightly: false
  98. webhooks:                       # Can be individually specified per library as well
  99.   error:
  100.   version:
  101.   run_start:
  102.   run_end:
  103.   changes:
  104. plex:                           # Can be individually specified per library as well; REQUIRED for the script to run
  105.   url: http://192.168.1.220:32400
  106.   token: XXXXXX
  107.   timeout: 60
  108.   db_cache:
  109.   clean_bundles: false
  110.   empty_trash: true
  111.   optimize: false
  112. tmdb:                           # REQUIRED for the script to run
  113.   apikey: XXXXXX
  114.   language: en
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement