Merge pull request #5305 from dazzlepictures/bugfix/Nuke_allow_no_timecode_for_extract

This commit is contained in:
64qam 2023-08-03 13:41:13 +02:00 committed by GitHub
commit 1386f54792
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -921,7 +921,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)