Skip to content

Commit

Permalink
Merge pull request #1 from apetrynet/imgseq_available_range
Browse files Browse the repository at this point in the history
Make sure available_range is zero based to reflect source_range.
  • Loading branch information
apetrynet authored Mar 9, 2021
2 parents 5b4cee7 + 9494537 commit f448905
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Python/Startup/otioexporter/OTIOExportTask.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def get_clip_ranges(self, trackitem):
available_range = None
if hiero_clip.mediaSource().isMediaPresent():
start_time = otio.opentime.RationalTime(
hiero_clip.mediaSource().startTime(),
0,
source_rate
)
duration = otio.opentime.RationalTime(
Expand Down

0 comments on commit f448905

Please sign in to comment.