Skip to content

create_editorial_simple

EditorialAudioInstanceCreator

Bases: EditorialClipInstanceCreatorBase

Audio product type class

Audio representation instance.

Source code in client/ayon_traypublisher/plugins/create/create_editorial_simple.py
152
153
154
155
156
157
158
159
class EditorialAudioInstanceCreator(EditorialClipInstanceCreatorBase):
    """Audio product type class

    Audio representation instance.
    """
    identifier = "editorial_audio"
    product_type = "audio"
    label = "Editorial Audio"

EditorialClipInstanceCreatorBase

Bases: HiddenTrayPublishCreator

Wrapper class for clip product type creators.

Source code in client/ayon_traypublisher/plugins/create/create_editorial_simple.py
 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
class EditorialClipInstanceCreatorBase(HiddenTrayPublishCreator):
    """Wrapper class for clip product type creators."""
    host_name = "traypublisher"

    def create(self, instance_data, source_data=None):
        product_name = instance_data["productName"]

        # Create new instance
        new_instance = CreatedInstance(
            self.product_type, product_name, instance_data, self
        )

        self._store_new_instance(new_instance)

        return new_instance

    def get_instance_attr_defs(self):
        return [
            BoolDef(
                "add_review_family",
                default=True,
                label="Review"
            ),
            TextDef(
                "parent_instance",
                label="Linked to",
                disabled=True
            ),
        ]

EditorialPlateInstanceCreator

Bases: EditorialClipInstanceCreatorBase

Plate product type class

Plate representation instance.

Source code in client/ayon_traypublisher/plugins/create/create_editorial_simple.py
142
143
144
145
146
147
148
149
class EditorialPlateInstanceCreator(EditorialClipInstanceCreatorBase):
    """Plate product type class

    Plate representation instance.
    """
    identifier = "editorial_plate"
    product_type = "plate"
    label = "Editorial Plate"

EditorialReviewInstanceCreator

Bases: EditorialClipInstanceCreatorBase

Review product type class

Review representation instance.

Source code in client/ayon_traypublisher/plugins/create/create_editorial_simple.py
162
163
164
165
166
167
168
169
class EditorialReviewInstanceCreator(EditorialClipInstanceCreatorBase):
    """Review product type class

    Review representation instance.
    """
    identifier = "editorial_review"
    product_type = "review"
    label = "Editorial Review"

EditorialShotInstanceCreator

Bases: EditorialClipInstanceCreatorBase

Shot product type class

The shot metadata instance carrier.

Source code in client/ayon_traypublisher/plugins/create/create_editorial_simple.py
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
class EditorialShotInstanceCreator(EditorialClipInstanceCreatorBase):
    """Shot product type class

    The shot metadata instance carrier.
    """
    identifier = "editorial_shot"
    product_type = "shot"
    label = "Editorial Shot"

    def get_instance_attr_defs(self):
        instance_attributes = [
            TextDef(
                "folderPath",
                label="Folder path",
                disabled=True,
            )
        ]
        instance_attributes.extend(CLIP_ATTR_DEFS)
        return instance_attributes

EditorialSimpleCreator

Bases: TrayPublishCreator

Editorial creator class

Simple workflow creator. This creator only disecting input video file into clip chunks and then converts each to defined format defined Settings for each product preset.

Parameters:

Name Type Description Default
TrayPublishCreator Creator

Tray publisher plugin class

required
Source code in client/ayon_traypublisher/plugins/create/create_editorial_simple.py
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
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
class EditorialSimpleCreator(TrayPublishCreator):
    """Editorial creator class

    Simple workflow creator. This creator only disecting input
    video file into clip chunks and then converts each to
    defined format defined Settings for each product preset.

    Args:
        TrayPublishCreator (Creator): Tray publisher plugin class
    """
    enabled = True
    label = "Editorial Simple"
    product_type = "editorial"
    identifier = "editorial_simple"
    default_variants = [
        "main"
    ]
    description = "Editorial files to generate shots."
    detailed_description = """
Supporting publishing new shots to project
or updating already created. Publishing will create OTIO file.
"""
    icon = "fa.file"
    product_type_presets = []

    def __init__(self, *args, **kwargs):
        self._shot_metadata_solver = ShotMetadataSolver(self.log)
        super(EditorialSimpleCreator, self).__init__(*args, **kwargs)

    def apply_settings(self, project_settings):
        editorial_creators = deepcopy(
            project_settings["traypublisher"]["editorial_creators"]
        )
        creator_settings = editorial_creators.get(self.identifier)

        self.enabled = creator_settings["enabled"]

        self._shot_metadata_solver.update_data(
            creator_settings["clip_name_tokenizer"],
            creator_settings["shot_rename"],
            creator_settings["shot_hierarchy"],
            creator_settings["shot_add_tasks"]
        )
        self.product_type_presets = creator_settings["product_type_presets"]
        default_variants = creator_settings.get("default_variants")
        if default_variants:
            self.default_variants = default_variants

    def create(self, product_name, instance_data, pre_create_data):
        allowed_product_type_presets = self._get_allowed_product_type_presets(
            pre_create_data)

        product_types = {
            item["product_type"]
            for item in self.product_type_presets
        }
        clip_instance_properties = {
            k: v
            for k, v in pre_create_data.items()
            if k != "sequence_filepath_data"
            if k not in product_types
        }

        folder_path = instance_data["folderPath"]
        folder_entity = ayon_api.get_folder_by_path(
            self.project_name, folder_path
        )

        if pre_create_data["fps"] == "from_selection":
            # get 'fps' from folder attributes
            fps = folder_entity["attrib"]["fps"]
        else:
            fps = float(pre_create_data["fps"])

        instance_data.update({
            "fps": fps
        })

        # get path of sequence
        sequence_path_data = pre_create_data["sequence_filepath_data"]
        media_path_data = pre_create_data["media_filepaths_data"]

        sequence_paths = self._get_path_from_file_data(
            sequence_path_data, multi=True)
        media_path = self._get_path_from_file_data(media_path_data)

        first_otio_timeline = None
        for seq_path in sequence_paths:
            # get otio timeline
            otio_timeline = self._create_otio_timeline(
                seq_path, fps)

            # Create all clip instances
            clip_instance_properties.update({
                "fps": fps,
                "variant": instance_data["variant"]
            })

            # create clip instances
            self._get_clip_instances(
                folder_entity,
                otio_timeline,
                media_path,
                clip_instance_properties,
                allowed_product_type_presets,
                os.path.basename(seq_path),
                first_otio_timeline,
            )

            if not first_otio_timeline:
                # assign otio timeline for multi file to layer
                first_otio_timeline = otio_timeline

        # create otio editorial instance
        self._create_otio_instance(
            product_name,
            instance_data,
            seq_path,
            first_otio_timeline
        )

    def _create_otio_instance(
        self,
        product_name,
        data,
        sequence_path,
        otio_timeline
    ):
        """Otio instance creating function

        Args:
            product_name (str): Product name.
            data (dict): instance data
            sequence_path (str): path to sequence file
            otio_timeline (otio.Timeline): otio timeline object
        """
        # Pass precreate data to creator attributes
        data.update({
            "sequenceFilePath": sequence_path,
            "otioTimeline": otio.adapters.write_to_string(otio_timeline)
        })
        new_instance = CreatedInstance(
            self.product_type, product_name, data, self
        )
        self._store_new_instance(new_instance)

    def _create_otio_timeline(self, sequence_path, fps):
        """Creating otio timeline from sequence path

        Args:
            sequence_path (str): path to sequence file
            fps (float): frame per second

        Returns:
            otio.Timeline: otio timeline object
        """
        # get editorial sequence file into otio timeline object
        extension = os.path.splitext(sequence_path)[1]

        kwargs = {}
        if extension == ".edl":
            # EDL has no frame rate embedded so needs explicit
            # frame rate else 24 is assumed.
            kwargs["rate"] = fps
            kwargs["ignore_timecode_mismatch"] = True

        return otio.adapters.read_from_file(sequence_path, **kwargs)

    def _get_path_from_file_data(self, file_path_data, multi=False):
        """Converting creator path data to single path string

        Args:
            file_path_data (FileDefItem): creator path data inputs
            multi (bool): switch to multiple files mode

        Raises:
            FileExistsError: in case nothing had been set

        Returns:
            str: path string
        """
        return_path_list = []

        if isinstance(file_path_data, list):
            return_path_list = [
                os.path.join(f["directory"], f["filenames"][0])
                for f in file_path_data
            ]

        if not return_path_list:
            raise FileExistsError(
                f"File path was not added: {file_path_data}")

        return return_path_list if multi else return_path_list[0]

    def _get_clip_instances(
        self,
        folder_entity,
        otio_timeline,
        media_path,
        instance_data,
        product_type_presets,
        sequence_file_name,
        first_otio_timeline=None
    ):
        """Helping function for creating clip instance

        Args:
            folder_entity (dict[str, Any]): Folder entity.
            otio_timeline (otio.Timeline): otio timeline object
            media_path (str): media file path string
            instance_data (dict): clip instance data
            product_type_presets (list): list of dict settings product presets
        """

        tracks = otio_timeline.video_tracks()

        # media data for audio stream and reference solving
        media_data = self._get_media_source_metadata(media_path)

        for track in tracks:
            # set track name
            track.name = f"{sequence_file_name} - {otio_timeline.name}"

            try:
                track_start_frame = (
                    abs(track.source_range.start_time.value)
                )
                track_start_frame -= self.timeline_frame_start
            except AttributeError:
                track_start_frame = 0

            for otio_clip in track.find_clips():
                if not self._validate_clip_for_processing(otio_clip):
                    continue

                # get available frames info to clip data
                self._create_otio_reference(otio_clip, media_path, media_data)

                # convert timeline range to source range
                self._restore_otio_source_range(otio_clip)

                base_instance_data = self._get_base_instance_data(
                    otio_clip,
                    instance_data,
                    track_start_frame,
                    folder_entity
                )

                # passing for trimming
                base_instance_data["editorialSourcePath"] = media_path

                parenting_data = {
                    "instance_label": None,
                    "instance_id": None
                }

                for product_type_preset in product_type_presets:
                    # exclude audio product type if no audio stream
                    if (
                        product_type_preset["product_type"] == "audio"
                        and not media_data.get("audio")
                    ):
                        continue

                    self._make_product_instance(
                        otio_clip,
                        product_type_preset,
                        deepcopy(base_instance_data),
                        parenting_data
                    )

            # add track to first otioTimeline if it is in input args
            if first_otio_timeline:
                first_otio_timeline.tracks.append(deepcopy(track))

    def _restore_otio_source_range(self, otio_clip):
        """Infusing source range.

        Otio clip is missing proper source clip range so
        here we add them from from parent timeline frame range.

        Args:
            otio_clip (otio.Clip): otio clip object
        """
        otio_clip.source_range = otio_clip.range_in_parent()

    def _create_otio_reference(
        self,
        otio_clip,
        media_path,
        media_data
    ):
        """Creating otio reference at otio clip.

        Args:
            otio_clip (otio.Clip): otio clip object
            media_path (str): media file path string
            media_data (dict): media metadata
        """
        start_frame = media_data["start_frame"]
        frame_duration = media_data["duration"]
        fps = media_data["fps"]

        available_range = otio.opentime.TimeRange(
            start_time=otio.opentime.RationalTime(
                start_frame, fps),
            duration=otio.opentime.RationalTime(
                frame_duration, fps)
        )
        # in case old OTIO or video file create `ExternalReference`
        media_reference = otio.schema.ExternalReference(
            target_url=media_path,
            available_range=available_range
        )
        otio_clip.media_reference = media_reference

    def _get_media_source_metadata(self, path):
        """Get all available metadata from file

        Args:
            path (str): media file path string

        Raises:
            AssertionError: ffprobe couldn't read metadata

        Returns:
            dict: media file metadata
        """
        return_data = {}

        try:
            media_data = get_ffprobe_data(
                path, self.log
            )

            # get video stream data
            video_streams = []
            audio_streams = []
            for stream in media_data["streams"]:
                codec_type = stream.get("codec_type")
                if codec_type == "audio":
                    audio_streams.append(stream)

                elif codec_type == "video":
                    video_streams.append(stream)

            if not video_streams:
                raise ValueError(
                    "Could not find video stream in source file."
                )

            video_stream = video_streams[0]
            return_data = {
                "video": True,
                "start_frame": 0,
                "duration": int(video_stream["nb_frames"]),
                "fps": float(
                    convert_ffprobe_fps_value(
                        video_stream["r_frame_rate"]
                    )
                )
            }

            # get audio  streams data
            if audio_streams:
                return_data["audio"] = True

        except Exception as exc:
            raise AssertionError((
                "FFprobe couldn't read information about input file: "
                f"\"{path}\". Error message: {exc}"
            ))

        return return_data

    def _make_product_instance(
        self,
        otio_clip,
        product_type_preset,
        instance_data,
        parenting_data
    ):
        """Making product instance from input preset

        Args:
            otio_clip (otio.Clip): otio clip object
            product_type_preset (dict): single product type preset
            instance_data (dict): instance data
            parenting_data (dict): shot instance parent data

        Returns:
            CreatedInstance: creator instance object
        """
        product_type = product_type_preset["product_type"]
        label = self._make_product_naming(
            product_type_preset,
            instance_data
        )
        instance_data["label"] = label

        # add file extension filter only if it is not shot product type
        if product_type == "shot":
            instance_data["otioClip"] = (
                otio.adapters.write_to_string(otio_clip))
            c_instance = self.create_context.creators[
                "editorial_shot"].create(
                    instance_data)
            parenting_data.update({
                "instance_label": label,
                "instance_id": c_instance.data["instance_id"]
            })
        else:
            # add review family if defined
            instance_data.update({
                "outputFileType": product_type_preset["output_file_type"],
                "parent_instance_id": parenting_data["instance_id"],
                "creator_attributes": {
                    "parent_instance": parenting_data["instance_label"],
                    "add_review_family": product_type_preset.get("review")
                }
            })

            creator_identifier = f"editorial_{product_type}"
            editorial_clip_creator = self.create_context.creators[
                creator_identifier]
            c_instance = editorial_clip_creator.create(
                instance_data)

        return c_instance

    def _make_product_naming(self, product_type_preset, instance_data):
        """Product name maker

        Args:
            product_type_preset (dict): single preset item
            instance_data (dict): instance data

        Returns:
            str: label string
        """
        folder_path = instance_data["creator_attributes"]["folderPath"]

        variant_name = instance_data["variant"]
        product_type = product_type_preset["product_type"]

        # get variant name from preset or from inheritance
        _variant_name = product_type_preset.get("variant") or variant_name

        # product name
        product_name = "{}{}".format(
            product_type, _variant_name.capitalize()
        )
        label = "{} {}".format(
            folder_path,
            product_name
        )

        instance_data.update({
            "label": label,
            "variant": _variant_name,
            "productType": product_type,
            "productName": product_name,
        })

        return label

    def _get_base_instance_data(
        self,
        otio_clip,
        instance_data,
        track_start_frame,
        folder_entity,
    ):
        """Factoring basic set of instance data.

        Args:
            otio_clip (otio.Clip): otio clip object
            instance_data (dict): precreate instance data
            track_start_frame (int): track start frame

        Returns:
            dict: instance data

        """
        parent_folder_path = folder_entity["path"]
        parent_folder_name = parent_folder_path.rsplit("/", 1)[-1]

        # get clip instance properties
        handle_start = instance_data["handle_start"]
        handle_end = instance_data["handle_end"]
        timeline_offset = instance_data["timeline_offset"]
        workfile_start_frame = instance_data["workfile_start_frame"]
        fps = instance_data["fps"]
        variant_name = instance_data["variant"]

        # basic unique folder name
        clip_name = os.path.splitext(otio_clip.name)[0]
        project_entity = ayon_api.get_project(self.project_name)

        shot_name, shot_metadata = self._shot_metadata_solver.generate_data(
            clip_name,
            {
                "anatomy_data": {
                    "project": {
                        "name": self.project_name,
                        "code": project_entity["code"]
                    },
                    "parent": parent_folder_name,
                    "app": self.host_name
                },
                "selected_folder_entity": folder_entity,
                "project_entity": project_entity
            }
        )

        timing_data = self._get_timing_data(
            otio_clip,
            timeline_offset,
            track_start_frame,
            workfile_start_frame
        )

        # create creator attributes
        creator_attributes = {

            "workfile_start_frame": workfile_start_frame,
            "fps": fps,
            "handle_start": int(handle_start),
            "handle_end": int(handle_end)
        }
        # add timing data
        creator_attributes.update(timing_data)

        # create base instance data
        base_instance_data = {
            "shotName": shot_name,
            "variant": variant_name,
            "task": None,
            "newHierarchyIntegration": True,
            # Backwards compatible (Deprecated since 24/06/06)
            "newAssetPublishing": True,
            "trackStartFrame": track_start_frame,
            "timelineOffset": timeline_offset,

            # creator_attributes
            "creator_attributes": creator_attributes
        }
        # update base instance data with context data
        # and also update creator attributes with context data
        creator_attributes["folderPath"] = shot_metadata.pop("folderPath")
        base_instance_data["folderPath"] = parent_folder_path

        # add creator attributes to shared instance data
        base_instance_data["creator_attributes"] = creator_attributes
        # add hierarchy shot metadata
        base_instance_data.update(shot_metadata)

        return base_instance_data

    def _get_timing_data(
        self,
        otio_clip,
        timeline_offset,
        track_start_frame,
        workfile_start_frame
    ):
        """Returning available timing data

        Args:
            otio_clip (otio.Clip): otio clip object
            timeline_offset (int): offset value
            track_start_frame (int): starting frame input
            workfile_start_frame (int): start frame for shot's workfiles

        Returns:
            dict: timing metadata
        """
        # frame ranges data
        clip_in = otio_clip.range_in_parent().start_time.value
        clip_in += track_start_frame
        clip_out = otio_clip.range_in_parent().end_time_inclusive().value
        clip_out += track_start_frame

        # add offset in case there is any
        if timeline_offset:
            clip_in += timeline_offset
            clip_out += timeline_offset

        clip_duration = otio_clip.duration().value
        source_in = otio_clip.trimmed_range().start_time.value
        source_out = source_in + clip_duration

        # define starting frame for future shot
        frame_start = (
            clip_in if workfile_start_frame is None
            else workfile_start_frame
        )
        frame_end = frame_start + (clip_duration - 1)

        return {
            "frameStart": int(frame_start),
            "frameEnd": int(frame_end),
            "clipIn": int(clip_in),
            "clipOut": int(clip_out),
            "clipDuration": int(otio_clip.duration().value),
            "sourceIn": int(source_in),
            "sourceOut": int(source_out)
        }

    def _get_allowed_product_type_presets(self, pre_create_data):
        """Filter out allowed product type presets.

        Args:
            pre_create_data (dict): precreate attributes inputs

        Returns:
            list: lit of dict with preset items
        """
        return [
            {"product_type": "shot"},
            *[
                preset
                for preset in self.product_type_presets
                if pre_create_data[preset["product_type"]]
            ]
        ]

    def _validate_clip_for_processing(self, otio_clip):
        """Validate otio clip attributes

        Args:
            otio_clip (otio.Clip): otio clip object

        Returns:
            bool: True if all passing conditions
        """
        if otio_clip.name is None:
            return False

        if isinstance(otio_clip, otio.schema.Gap):
            return False

        # skip all generators like black empty
        if isinstance(
            otio_clip.media_reference,
                otio.schema.GeneratorReference):
            return False

        # Transitions are ignored, because Clips have the full frame
        # range.
        if isinstance(otio_clip, otio.schema.Transition):
            return False

        return True

    def get_pre_create_attr_defs(self):
        """Creating pre-create attributes at creator plugin.

        Returns:
            list: list of attribute object instances
        """
        # Use same attributes as for instance attrobites
        attr_defs = [
            FileDef(
                "sequence_filepath_data",
                folders=False,
                extensions=[
                    ".edl",
                    ".xml",
                    ".aaf",
                    ".fcpxml"
                ],
                allow_sequences=False,
                single_item=False,
                label="Edit Decision List",
                tooltip=(
                    "An Edit Decision List (EDL) is a list of edits that includes reel and timecode data.\n"
                    "This information shows where each video clip can be found to create the final cut.\n"
                    "EDL files can be generated using apps like Nuke Studio and Resolve."
                )
            ),
            FileDef(
                "media_filepaths_data",
                folders=False,
                extensions=[
                    ".mov",
                    ".mp4",
                    ".wav"
                ],
                allow_sequences=False,
                single_item=False,
                label="Media files",
            ),
            # TODO: perhaps better would be timecode and fps input
            NumberDef(
                "timeline_offset",
                default=0,
                label="Timeline offset"
            ),
            UISeparatorDef(),
            UILabelDef("Add products for each discovered shot"),
            UISeparatorDef()
        ]
        # add variants swithers
        attr_defs.extend(
            BoolDef(item["product_type"], label=item["product_type"])
            for item in self.product_type_presets
        )
        attr_defs.append(UISeparatorDef())

        attr_defs.extend(CLIP_ATTR_DEFS)
        return attr_defs

get_pre_create_attr_defs()

Creating pre-create attributes at creator plugin.

Returns:

Name Type Description
list

list of attribute object instances

Source code in client/ayon_traypublisher/plugins/create/create_editorial_simple.py
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
def get_pre_create_attr_defs(self):
    """Creating pre-create attributes at creator plugin.

    Returns:
        list: list of attribute object instances
    """
    # Use same attributes as for instance attrobites
    attr_defs = [
        FileDef(
            "sequence_filepath_data",
            folders=False,
            extensions=[
                ".edl",
                ".xml",
                ".aaf",
                ".fcpxml"
            ],
            allow_sequences=False,
            single_item=False,
            label="Edit Decision List",
            tooltip=(
                "An Edit Decision List (EDL) is a list of edits that includes reel and timecode data.\n"
                "This information shows where each video clip can be found to create the final cut.\n"
                "EDL files can be generated using apps like Nuke Studio and Resolve."
            )
        ),
        FileDef(
            "media_filepaths_data",
            folders=False,
            extensions=[
                ".mov",
                ".mp4",
                ".wav"
            ],
            allow_sequences=False,
            single_item=False,
            label="Media files",
        ),
        # TODO: perhaps better would be timecode and fps input
        NumberDef(
            "timeline_offset",
            default=0,
            label="Timeline offset"
        ),
        UISeparatorDef(),
        UILabelDef("Add products for each discovered shot"),
        UISeparatorDef()
    ]
    # add variants swithers
    attr_defs.extend(
        BoolDef(item["product_type"], label=item["product_type"])
        for item in self.product_type_presets
    )
    attr_defs.append(UISeparatorDef())

    attr_defs.extend(CLIP_ATTR_DEFS)
    return attr_defs