Skip to content

Commit

Permalink
Address feedback from PR.
Browse files Browse the repository at this point in the history
  • Loading branch information
robin-ynput committed Oct 29, 2024
1 parent 693cece commit 12322ea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions client/ayon_hiero/api/otio/hiero_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def create_otio_reference(clip):
# get file info for path and start frame
file_info = media_source.fileinfos().pop()
start_frame = file_info.startFrame()
frame_start = media_source.timecodeStart()
timecode_start = media_source.timecodeStart()
path = file_info.filename()

# get padding and other file infos
Expand Down Expand Up @@ -174,7 +174,7 @@ def create_otio_reference(clip):
frame_zero_padding=padding,
rate=fps,
available_range=create_otio_time_range(
frame_start,
timecode_start,
frame_duration,
fps
)
Expand All @@ -188,7 +188,7 @@ def create_otio_reference(clip):
otio_ex_ref_item = otio.schema.ExternalReference(
target_url=reformat_path,
available_range=create_otio_time_range(
frame_start,
timecode_start,
frame_duration,
fps
)
Expand Down

0 comments on commit 12322ea

Please sign in to comment.