fix export edl and upload to kitsu
parent
30ebe24eae
commit
a1d7773165
|
@ -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)
|
||||
|
||||
|
|
|
@ -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():
|
||||
|
|
Loading…
Reference in New Issue