Allow exporting with no timecode knob

This commit is contained in:
Jiri Sindelar 2023-07-14 15:41:39 +02:00
parent 2175874686
commit 916e9cfa97

View file

@ -955,7 +955,11 @@ class ExporterReviewMov(ExporterReview):
except Exception:
self.log.info("`mov64_codec` knob was not found")
write_node["mov64_write_timecode"].setValue(1)
try:
write_node["mov64_write_timecode"].setValue(1)
except Exception:
self.log.info("`mov64_write_timecode` knob was not found")
write_node["raw"].setValue(1)
# connect
write_node.setInput(0, self.previous_node)