From a30d595feeafea3c7458320121a244c4ed949e99 Mon Sep 17 00:00:00 2001 From: Mike Lang Date: Sun, 18 Oct 2020 19:44:44 +1100 Subject: [PATCH] cutter: Use video's custom tags when uploading --- cutter/cutter/main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cutter/cutter/main.py b/cutter/cutter/main.py index c9edbcf..84eb5ce 100644 --- a/cutter/cutter/main.py +++ b/cutter/cutter/main.py @@ -62,6 +62,7 @@ CUT_JOB_PARAMS = [ "video_end", "video_title", "video_description", + "video_tags", "video_channel", "video_quality", ] @@ -380,7 +381,7 @@ class Cutter(object): title=job.video_title, description=job.video_description, # Add category and sheet_name as tags - tags=self.tags + [job.category, job.sheet_name], + tags=self.tags + [job.category, job.sheet_name] + job.video_tags, data=upload_wrapper(), ) except (JobConsistencyError, JobCancelled, UploadError):