Movie and TV ymls? #114
-
Do I need separate ymls for Movies and Shows? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
yes you have to have separate ones. By default it will look for a yml file named the same as your library. so say you have a libraries:
Movies:
library_type: movie
TV Shows:
library_type: show the script would look for a Alternatively, You can specify exactly what you want the metadata file by using libraries:
Movies:
library_type: movie
metadata_path: /path/to/file/MyMovieConfig.yml
TV Shows:
library_type: show |
Beta Was this translation helpful? Give feedback.
yes you have to have separate ones. By default it will look for a yml file named the same as your library. so say you have a
Movies
library and aTV Shows
library and your config looked like this:the script would look for a
Movies.yml
file and aTV Shows.yml
file in the same directory as yourconfig.yml
Alternatively, You can specify exactly what you want the metadata file by using
metadata_path
under the specific library.