Bases: ContextPlugin
Inject the current working context into publish context
Source code in client/ayon_flame/plugins/publish/collect_timeline_otio.py
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36 | class CollecTimelineOTIO(pyblish.api.ContextPlugin):
"""Inject the current working context into publish context"""
label = "Collect Timeline OTIO"
order = pyblish.api.CollectorOrder - 0.491
def process(self, context):
# main
project = ayfapi.get_current_project()
sequence = ayfapi.get_current_sequence(ayfapi.CTX.selection)
segments = ayfapi.get_sequence_segments(sequence)
# adding otio timeline to context
otio_timeline = flame_export.create_otio_timeline(sequence)
# update context with main project attributes
timeline_data = {
"flameProject": project,
"flameSequence": sequence,
"otioTimeline": otio_timeline,
"currentFile": "Flame/{}/{}".format(
project.name, sequence.name.get_value()
),
"flameSegments": segments,
"fps": float(str(sequence.frame_rate)[:-4])
}
self.log.debug(f">>> Timeline data: {pformat(timeline_data)}")
context.data.update(timeline_data)
|