From e92b692bc5506d6cad074d7542399b95189aafa9 Mon Sep 17 00:00:00 2001 From: thedinz <68015411+thedinz@users.noreply.github.com> Date: Fri, 26 Apr 2024 11:19:49 -0400 Subject: [PATCH] Update settings.md Just adding an example of server_preroll use --- docs/files/settings.md | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/docs/files/settings.md b/docs/files/settings.md index 0ec54db9..a3ffc13e 100644 --- a/docs/files/settings.md +++ b/docs/files/settings.md @@ -57,4 +57,22 @@ An example of using `default_percent` which is used in an external yml file and hdr: true filters: filepath.regex: 'HDR10\+|HDR10P' -``` \ No newline at end of file +``` +An example of using `server_preroll` which is also used in an external yml file and not within config.yml: + +```yml +templates: + preroll: + default: # HERE + location: "\\path\\to\\file" + build_collection: false + schedule: <> + server_preroll: <> +collections: + base: + template: {name: preroll, location: "\\path\\to\\file", schedule: daily} + date1: + template: {name: preroll, location: "\\path\\to\\file", schedule: range(12/01-12/31)} + date2: + template: {name: preroll, location: "\\path\\to\\file2", schedule: range(01/01-01/31)} +```