fix export edl and upload to kitsu

pull/5/head
ChristopheSeux 2023-10-19 12:08:14 +02:00
parent 30ebe24eae
commit a1d7773165
2 changed files with 2 additions and 2 deletions

View File

@ -176,7 +176,7 @@ class VSETB_OT_export_edl(Operator):
for strip in get_strips(channel='Shots', selected_only=False):
strip_data = {**format_data, **strip.vsetb_strip_settings.format_data}
strip_render_path = project.render_strip_template.format(**strip_data)
strip_render_path = project.render_video_strip_template.format(**strip_data)
clip = Clip(Path(strip_render_path).name)

View File

@ -355,7 +355,7 @@ class VSETB_OT_upload_to_tracker(Operator):
if self.add_preview:
strip_data = {**format_data, **strip_settings.format_data}
preview = project.render_strip_template.format(**strip_data)
preview = project.render_video_strip_template.format(**strip_data)
preview = Path(os.path.abspath(bpy.path.abspath(preview)))
#print(preview)
if not preview.exists():