flame: debug logging

This commit is contained in:
Jakub Jezek 2022-05-12 15:10:17 +02:00
parent aeff57dab7
commit ce250a6749
No known key found for this signature in database
GPG key ID: 730D7C02726179A7

View file

@ -305,6 +305,11 @@ def create_otio_clip(clip_data):
source_duration = (source_out - source_in + 1)
log.debug("_ source_in: {}".format(source_in))
log.debug("_ source_out: {}".format(source_out))
log.debug("_ speed: {}".format(speed))
log.debug("_ source_duration: {}".format(source_duration))
# secondly check if any change of speed
if source_duration != _clip_record_duration:
retime_speed = source_duration / _clip_record_duration