Skip to content

extract_sequence

ExtractSequence

Bases: InstancePlugin

Source code in client/ayon_tvpaint/plugins/publish/extract_sequence.py
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
class ExtractSequence(pyblish.api.InstancePlugin):
    label = "Extract Sequence"
    order = pyblish.api.ExtractorOrder
    hosts = ["tvpaint"]
    families = ["review", "render"]

    settings_category = "tvpaint"

    # Modifiable with settings
    review_bg = [255, 255, 255, 1.0]

    def process(self, instance):
        if instance.data.get("farm"):
            return

        self.log.info(
            "* Processing instance \"{}\"".format(instance.data["label"])
        )

        # Get all layers and filter out not visible
        layers = instance.data["layers"]
        filtered_layers = [
            layer
            for layer in layers
            if layer["visible"]
        ]
        layer_names = [str(layer["name"]) for layer in filtered_layers]
        if not layer_names:
            self.log.info(
                "None of the layers from the instance"
                " are visible. Extraction skipped."
            )
            return

        joined_layer_names = ", ".join(
            ["\"{}\"".format(name) for name in layer_names]
        )
        self.log.debug(
            "Instance has {} layers with names: {}".format(
                len(layer_names), joined_layer_names
            )
        )

        ignore_layers_transparency = instance.data.get(
            "ignoreLayersTransparency", False
        )

        mark_in = instance.context.data["sceneMarkIn"]
        mark_out = instance.context.data["sceneMarkOut"]

        # Change scene Start Frame to 0 to prevent frame index issues
        #   - issue is that TVPaint versions deal with frame indexes in a
        #     different way when Start Frame is not `0`
        # NOTE It will be set back after rendering
        scene_start_frame = instance.context.data["sceneStartFrame"]
        execute_george("tv_startframe 0")

        # Frame start/end may be stored as float
        frame_start = int(instance.data["frameStart"])

        # Handles are not stored per instance but on Context
        handle_start = instance.context.data["handleStart"]

        scene_bg_color = instance.context.data["sceneBgColor"]

        # Prepare output frames
        output_frame_start = frame_start - handle_start

        # Change output frame start to 0 if handles cause it's negative number
        if output_frame_start < 0:
            self.log.warning((
                "Frame start with handles has negative value."
                " Changed to \"0\". Frames start: {}, Handle Start: {}"
            ).format(frame_start, handle_start))
            output_frame_start = 0

        # Calculate frame end
        output_frame_end = output_frame_start + (mark_out - mark_in)

        # Save to staging dir
        output_dir = instance.data.get("stagingDir")
        if not output_dir:
            # Create temp folder if staging dir is not set
            output_dir = (
                tempfile.mkdtemp(prefix="tvpaint_render_")
            ).replace("\\", "/")
            instance.data["stagingDir"] = output_dir

        self.log.debug(
            "Files will be rendered to folder: {}".format(output_dir)
        )

        if instance.data["productType"] == "review":
            result = self.render_review(
                output_dir, mark_in, mark_out, scene_bg_color
            )
        else:
            # Render output
            result = self.render(
                output_dir,
                mark_in,
                mark_out,
                filtered_layers,
                ignore_layers_transparency
            )

        output_filepaths_by_frame_idx, thumbnail_fullpath = result

        # Change scene frame Start back to previous value
        execute_george("tv_startframe {}".format(scene_start_frame))

        # Sequence of one frame
        if not output_filepaths_by_frame_idx:
            self.log.warning("Extractor did not create any output.")
            return

        repre_files = self._rename_output_files(
            output_filepaths_by_frame_idx,
            mark_in,
            mark_out,
            output_frame_start
        )

        # Fill tags and new families from project settings
        instance_families = get_publish_instance_families(instance)
        tags = []
        if "review" in instance_families:
            tags.append("review")

        # Sequence of one frame
        single_file = len(repre_files) == 1
        if single_file:
            repre_files = repre_files[0]

        # Extension is hardcoded
        #   - changing extension would require change code
        new_repre = {
            "name": "png",
            "ext": "png",
            "files": repre_files,
            "stagingDir": output_dir,
            "tags": tags
        }

        if not single_file:
            new_repre["frameStart"] = output_frame_start
            new_repre["frameEnd"] = output_frame_end

        self.log.debug("Creating new representation: {}".format(new_repre))

        instance.data["representations"].append(new_repre)

        if not thumbnail_fullpath:
            return

        thumbnail_ext = os.path.splitext(
            thumbnail_fullpath
        )[1].replace(".", "")
        # Create thumbnail representation
        thumbnail_repre = {
            "name": "thumbnail",
            "ext": thumbnail_ext,
            "outputName": "thumb",
            "files": os.path.basename(thumbnail_fullpath),
            "stagingDir": output_dir,
            "tags": ["thumbnail"]
        }
        instance.data["representations"].append(thumbnail_repre)

    def _rename_output_files(
        self, filepaths_by_frame, mark_in, mark_out, output_frame_start
    ):
        new_filepaths_by_frame = rename_filepaths_by_frame_start(
            filepaths_by_frame, mark_in, mark_out, output_frame_start
        )

        repre_filenames = []
        for filepath in new_filepaths_by_frame.values():
            repre_filenames.append(os.path.basename(filepath))

        if mark_in < output_frame_start:
            repre_filenames = list(reversed(repre_filenames))

        return repre_filenames

    def render_review(
        self, output_dir, mark_in, mark_out, scene_bg_color
    ):
        """ Export images from TVPaint using `tv_savesequence` command.

        Args:
            output_dir (str): Directory where files will be stored.
            mark_in (int): Starting frame index from which export will begin.
            mark_out (int): On which frame index export will end.
            scene_bg_color (list): Bg color set in scene. Result of george
                script command `tv_background`.

        Returns:
            tuple: With 2 items first is list of filenames second is path to
                thumbnail.
        """
        filename_template = get_frame_filename_template(mark_out)

        self.log.debug("Preparing data for rendering.")
        first_frame_filepath = os.path.join(
            output_dir,
            filename_template.format(frame=mark_in)
        )

        bg_color = self._get_review_bg_color()

        george_script_lines = [
            # Change bg color to color from settings
            "tv_background \"color\" {} {} {}".format(*bg_color),
            "tv_SaveMode \"PNG\"",
            "export_path = \"{}\"".format(
                first_frame_filepath.replace("\\", "/")
            ),
            "tv_savesequence '\"'export_path'\"' {} {}".format(
                mark_in, mark_out
            )
        ]
        if scene_bg_color:
            # Change bg color back to previous scene bg color
            _scene_bg_color = copy.deepcopy(scene_bg_color)
            bg_type = _scene_bg_color.pop(0)
            orig_color_command = [
                "tv_background",
                "\"{}\"".format(bg_type)
            ]
            orig_color_command.extend(_scene_bg_color)

            george_script_lines.append(" ".join(orig_color_command))

        execute_george_through_file("\n".join(george_script_lines))

        first_frame_filepath = None
        output_filepaths_by_frame_idx = {}
        for frame_idx in range(mark_in, mark_out + 1):
            filename = filename_template.format(frame=frame_idx)
            filepath = os.path.join(output_dir, filename)

            output_filepaths_by_frame_idx[frame_idx] = filepath

            if not os.path.exists(filepath):
                raise KnownPublishError(
                    "Output was not rendered. File was not found {}".format(
                        filepath
                    )
                )

            if first_frame_filepath is None:
                first_frame_filepath = filepath

        thumbnail_filepath = None
        if first_frame_filepath and os.path.exists(first_frame_filepath):
            thumbnail_filepath = os.path.join(output_dir, "thumbnail.jpg")
            source_img = Image.open(first_frame_filepath)
            if source_img.mode.lower() != "rgb":
                source_img = source_img.convert("RGB")
            source_img.save(thumbnail_filepath)

        return output_filepaths_by_frame_idx, thumbnail_filepath

    def render(
        self, output_dir, mark_in, mark_out, layers, ignore_layer_opacity
    ):
        """ Export images from TVPaint.

        Args:
            output_dir (str): Directory where files will be stored.
            mark_in (int): Starting frame index from which export will begin.
            mark_out (int): On which frame index export will end.
            layers (list): List of layers to be exported.
            ignore_layer_opacity (bool): Layer's opacity will be ignored.

        Returns:
            tuple: With 2 items first is list of filenames second is path to
                thumbnail.
        """
        self.log.debug("Preparing data for rendering.")

        # Map layers by position
        layers_by_position = {}
        layers_by_id = {}
        layer_ids = []
        for layer in layers:
            layer_id = layer["layer_id"]
            position = layer["position"]
            layers_by_position[position] = layer
            layers_by_id[layer_id] = layer

            layer_ids.append(layer_id)

        # Sort layer positions in reverse order
        sorted_positions = list(reversed(sorted(layers_by_position.keys())))
        if not sorted_positions:
            return [], None

        self.log.debug("Collecting pre/post behavior of individual layers.")
        behavior_by_layer_id = get_layers_pre_post_behavior(layer_ids)
        exposure_frames_by_layer_id = get_layers_exposure_frames(
            layer_ids, layers
        )
        extraction_data_by_layer_id = calculate_layers_extraction_data(
            layers,
            exposure_frames_by_layer_id,
            behavior_by_layer_id,
            mark_in,
            mark_out
        )
        # Render layers
        filepaths_by_layer_id = {}
        for layer_id, render_data in extraction_data_by_layer_id.items():
            layer = layers_by_id[layer_id]
            filepaths_by_layer_id[layer_id] = self._render_layer(
                render_data, layer, output_dir, ignore_layer_opacity
            )

        # Prepare final filepaths where compositing should store result
        output_filepaths_by_frame = {}
        thumbnail_src_filepath = None
        finale_template = get_frame_filename_template(mark_out)
        for frame_idx in range(mark_in, mark_out + 1):
            filename = finale_template.format(frame=frame_idx)

            filepath = os.path.join(output_dir, filename)
            output_filepaths_by_frame[frame_idx] = filepath

            if thumbnail_src_filepath is None:
                thumbnail_src_filepath = filepath

        self.log.info("Started compositing of layer frames.")
        composite_rendered_layers(
            layers, filepaths_by_layer_id,
            mark_in, mark_out,
            output_filepaths_by_frame
        )

        self.log.info("Compositing finished")
        thumbnail_filepath = None
        if thumbnail_src_filepath and os.path.exists(thumbnail_src_filepath):
            source_img = Image.open(thumbnail_src_filepath)
            thumbnail_filepath = os.path.join(output_dir, "thumbnail.jpg")
            # Composite background only on rgba images
            # - just making sure
            if source_img.mode.lower() == "rgba":
                bg_color = self._get_review_bg_color()
                self.log.debug("Adding thumbnail background color {}.".format(
                    " ".join([str(val) for val in bg_color])
                ))
                bg_image = Image.new("RGBA", source_img.size, bg_color)
                thumbnail_obj = Image.alpha_composite(bg_image, source_img)
                thumbnail_obj.convert("RGB").save(thumbnail_filepath)

            else:
                self.log.info((
                    "Source for thumbnail has mode \"{}\" (Expected: RGBA)."
                    " Can't use thumbnail background color."
                ).format(source_img.mode))
                source_img.save(thumbnail_filepath)

        return output_filepaths_by_frame, thumbnail_filepath

    def _get_review_bg_color(self):
        red = green = blue = 255
        if self.review_bg:
            if len(self.review_bg) == 4:
                red, green, blue, _ = self.review_bg
            elif len(self.review_bg) == 3:
                red, green, blue = self.review_bg
        return (red, green, blue)

    def _render_layer(
        self, render_data, layer, output_dir, ignore_layer_opacity
    ):
        frame_references = render_data["frame_references"]
        filenames_by_frame_index = render_data["filenames_by_frame_index"]

        layer_id = layer["layer_id"]
        george_script_lines = [
            "tv_layerset {}".format(layer_id),
            "tv_SaveMode \"PNG\""
        ]
        # Set density to 100 and store previous opacity
        if ignore_layer_opacity:
            george_script_lines.extend([
                "tv_layerdensity 100",
                "orig_opacity = result",
            ])

        filepaths_by_frame = {}
        frames_to_render = []
        for frame_idx, ref_idx in frame_references.items():
            # None reference is skipped because does not have source
            if ref_idx is None:
                filepaths_by_frame[frame_idx] = None
                continue
            filename = filenames_by_frame_index[frame_idx]
            dst_path = "/".join([output_dir, filename])
            filepaths_by_frame[frame_idx] = dst_path
            if frame_idx != ref_idx:
                continue

            frames_to_render.append(str(frame_idx))
            # Go to frame
            george_script_lines.append("tv_layerImage {}".format(frame_idx))
            # Store image to output
            george_script_lines.append("tv_saveimage \"{}\"".format(dst_path))

        # Set density back to origin opacity
        if ignore_layer_opacity:
            george_script_lines.append("tv_layerdensity orig_opacity")

        self.log.debug("Rendering Exposure frames {} of layer {} ({})".format(
            ",".join(frames_to_render), layer_id, layer["name"]
        ))
        # Let TVPaint render layer's image
        execute_george_through_file("\n".join(george_script_lines))

        # Fill frames between `frame_start_index` and `frame_end_index`
        self.log.debug("Filling frames not rendered frames.")
        fill_reference_frames(frame_references, filepaths_by_frame)

        return filepaths_by_frame

render(output_dir, mark_in, mark_out, layers, ignore_layer_opacity)

Export images from TVPaint.

Parameters:

Name Type Description Default
output_dir str

Directory where files will be stored.

required
mark_in int

Starting frame index from which export will begin.

required
mark_out int

On which frame index export will end.

required
layers list

List of layers to be exported.

required
ignore_layer_opacity bool

Layer's opacity will be ignored.

required

Returns:

Name Type Description
tuple

With 2 items first is list of filenames second is path to thumbnail.

Source code in client/ayon_tvpaint/plugins/publish/extract_sequence.py
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
def render(
    self, output_dir, mark_in, mark_out, layers, ignore_layer_opacity
):
    """ Export images from TVPaint.

    Args:
        output_dir (str): Directory where files will be stored.
        mark_in (int): Starting frame index from which export will begin.
        mark_out (int): On which frame index export will end.
        layers (list): List of layers to be exported.
        ignore_layer_opacity (bool): Layer's opacity will be ignored.

    Returns:
        tuple: With 2 items first is list of filenames second is path to
            thumbnail.
    """
    self.log.debug("Preparing data for rendering.")

    # Map layers by position
    layers_by_position = {}
    layers_by_id = {}
    layer_ids = []
    for layer in layers:
        layer_id = layer["layer_id"]
        position = layer["position"]
        layers_by_position[position] = layer
        layers_by_id[layer_id] = layer

        layer_ids.append(layer_id)

    # Sort layer positions in reverse order
    sorted_positions = list(reversed(sorted(layers_by_position.keys())))
    if not sorted_positions:
        return [], None

    self.log.debug("Collecting pre/post behavior of individual layers.")
    behavior_by_layer_id = get_layers_pre_post_behavior(layer_ids)
    exposure_frames_by_layer_id = get_layers_exposure_frames(
        layer_ids, layers
    )
    extraction_data_by_layer_id = calculate_layers_extraction_data(
        layers,
        exposure_frames_by_layer_id,
        behavior_by_layer_id,
        mark_in,
        mark_out
    )
    # Render layers
    filepaths_by_layer_id = {}
    for layer_id, render_data in extraction_data_by_layer_id.items():
        layer = layers_by_id[layer_id]
        filepaths_by_layer_id[layer_id] = self._render_layer(
            render_data, layer, output_dir, ignore_layer_opacity
        )

    # Prepare final filepaths where compositing should store result
    output_filepaths_by_frame = {}
    thumbnail_src_filepath = None
    finale_template = get_frame_filename_template(mark_out)
    for frame_idx in range(mark_in, mark_out + 1):
        filename = finale_template.format(frame=frame_idx)

        filepath = os.path.join(output_dir, filename)
        output_filepaths_by_frame[frame_idx] = filepath

        if thumbnail_src_filepath is None:
            thumbnail_src_filepath = filepath

    self.log.info("Started compositing of layer frames.")
    composite_rendered_layers(
        layers, filepaths_by_layer_id,
        mark_in, mark_out,
        output_filepaths_by_frame
    )

    self.log.info("Compositing finished")
    thumbnail_filepath = None
    if thumbnail_src_filepath and os.path.exists(thumbnail_src_filepath):
        source_img = Image.open(thumbnail_src_filepath)
        thumbnail_filepath = os.path.join(output_dir, "thumbnail.jpg")
        # Composite background only on rgba images
        # - just making sure
        if source_img.mode.lower() == "rgba":
            bg_color = self._get_review_bg_color()
            self.log.debug("Adding thumbnail background color {}.".format(
                " ".join([str(val) for val in bg_color])
            ))
            bg_image = Image.new("RGBA", source_img.size, bg_color)
            thumbnail_obj = Image.alpha_composite(bg_image, source_img)
            thumbnail_obj.convert("RGB").save(thumbnail_filepath)

        else:
            self.log.info((
                "Source for thumbnail has mode \"{}\" (Expected: RGBA)."
                " Can't use thumbnail background color."
            ).format(source_img.mode))
            source_img.save(thumbnail_filepath)

    return output_filepaths_by_frame, thumbnail_filepath

render_review(output_dir, mark_in, mark_out, scene_bg_color)

Export images from TVPaint using tv_savesequence command.

Parameters:

Name Type Description Default
output_dir str

Directory where files will be stored.

required
mark_in int

Starting frame index from which export will begin.

required
mark_out int

On which frame index export will end.

required
scene_bg_color list

Bg color set in scene. Result of george script command tv_background.

required

Returns:

Name Type Description
tuple

With 2 items first is list of filenames second is path to thumbnail.

Source code in client/ayon_tvpaint/plugins/publish/extract_sequence.py
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
def render_review(
    self, output_dir, mark_in, mark_out, scene_bg_color
):
    """ Export images from TVPaint using `tv_savesequence` command.

    Args:
        output_dir (str): Directory where files will be stored.
        mark_in (int): Starting frame index from which export will begin.
        mark_out (int): On which frame index export will end.
        scene_bg_color (list): Bg color set in scene. Result of george
            script command `tv_background`.

    Returns:
        tuple: With 2 items first is list of filenames second is path to
            thumbnail.
    """
    filename_template = get_frame_filename_template(mark_out)

    self.log.debug("Preparing data for rendering.")
    first_frame_filepath = os.path.join(
        output_dir,
        filename_template.format(frame=mark_in)
    )

    bg_color = self._get_review_bg_color()

    george_script_lines = [
        # Change bg color to color from settings
        "tv_background \"color\" {} {} {}".format(*bg_color),
        "tv_SaveMode \"PNG\"",
        "export_path = \"{}\"".format(
            first_frame_filepath.replace("\\", "/")
        ),
        "tv_savesequence '\"'export_path'\"' {} {}".format(
            mark_in, mark_out
        )
    ]
    if scene_bg_color:
        # Change bg color back to previous scene bg color
        _scene_bg_color = copy.deepcopy(scene_bg_color)
        bg_type = _scene_bg_color.pop(0)
        orig_color_command = [
            "tv_background",
            "\"{}\"".format(bg_type)
        ]
        orig_color_command.extend(_scene_bg_color)

        george_script_lines.append(" ".join(orig_color_command))

    execute_george_through_file("\n".join(george_script_lines))

    first_frame_filepath = None
    output_filepaths_by_frame_idx = {}
    for frame_idx in range(mark_in, mark_out + 1):
        filename = filename_template.format(frame=frame_idx)
        filepath = os.path.join(output_dir, filename)

        output_filepaths_by_frame_idx[frame_idx] = filepath

        if not os.path.exists(filepath):
            raise KnownPublishError(
                "Output was not rendered. File was not found {}".format(
                    filepath
                )
            )

        if first_frame_filepath is None:
            first_frame_filepath = filepath

    thumbnail_filepath = None
    if first_frame_filepath and os.path.exists(first_frame_filepath):
        thumbnail_filepath = os.path.join(output_dir, "thumbnail.jpg")
        source_img = Image.open(first_frame_filepath)
        if source_img.mode.lower() != "rgb":
            source_img = source_img.convert("RGB")
        source_img.save(thumbnail_filepath)

    return output_filepaths_by_frame_idx, thumbnail_filepath