traits
Trait classes for the pipeline.
Bundle dataclass
Bases: TraitBase
Bundle trait model.
This model list of independent Representation traits that are bundled together. This is useful for representing a collection of sub-entities that are part of a single entity. You can easily reconstruct representations from the bundle.
Example::
Bundle(
items=[
[
MimeType(mime_type="image/jpeg"),
FileLocation(file_path="/path/to/file.jpg")
],
[
MimeType(mime_type="image/png"),
FileLocation(file_path="/path/to/file.png")
]
]
)
Attributes:
| Name | Type | Description |
|---|---|---|
name | str | Trait name. |
description | str | Trait description. |
id | str | id should be a namespaced trait name with version |
items | list[list[TraitBase]] | List of representations. |
Source code in client/ayon_core/pipeline/traits/content.py
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 | |
to_representations()
Convert a bundle to representations.
Yields:
| Name | Type | Description |
|---|---|---|
Representation | Generator[Representation] | Representation of the bundle. |
Source code in client/ayon_core/pipeline/traits/content.py
444 445 446 447 448 449 450 451 452 | |
ColorManaged dataclass
Bases: TraitBase
Color managed trait.
Holds color management information. Can be used with Image-related traits to define color space and config.
Sync with OpenAssetIO MediaCreation Traits.
Attributes:
| Name | Type | Description |
|---|---|---|
color_space | str | An OCIO colorspace name available in the "current" OCIO context. |
config | str | An OCIO config name defining color space. |
Source code in client/ayon_core/pipeline/traits/color.py
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | |
Compressed dataclass
Bases: TraitBase
Compressed trait model.
This trait can hold information about compressed content. What type of compression is used.
Example::
Compressed("gzip")
Attributes:
| Name | Type | Description |
|---|---|---|
name | str | Trait name. |
description | str | Trait description. |
id | str | id should be a namespaced trait name with version |
compression_type | str | Compression type. |
Source code in client/ayon_core/pipeline/traits/content.py
380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 | |
Deep dataclass
Bases: TraitBase
Deep trait model.
Type trait model for deep EXR images.
Attributes:
| Name | Type | Description |
|---|---|---|
name | str | Trait name. |
description | str | Trait description. |
id | str | id should be a namespaced trait name with a version |
Source code in client/ayon_core/pipeline/traits/two_dimensional.py
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | |
DigitallySigned dataclass
Bases: TraitBase
Digitally signed trait.
This type trait means that the data is digitally signed.
Attributes:
| Name | Type | Description |
|---|---|---|
signature | str | Digital signature. |
Source code in client/ayon_core/pipeline/traits/cryptography.py
10 11 12 13 14 15 16 17 18 19 20 21 22 23 | |
FileLocation dataclass
Bases: TraitBase
FileLocation trait model.
This model represents a file path. It is a specialization of the LocatableContent trait. It is adding optional file size and file hash for easy access to file information.
Attributes:
| Name | Type | Description |
|---|---|---|
name | str | Trait name. |
description | str | Trait description. |
id | str | id should be a namespaced trait name with version |
file_path | str | File path. |
file_size | Optional[int] | File size in bytes. |
file_hash | Optional[str] | File hash. |
Source code in client/ayon_core/pipeline/traits/content.py
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | |
FileLocations dataclass
Bases: TraitBase
FileLocation trait model.
This model represents a file path. It is a specialization of the LocatableContent trait. It is adding optional file size and file hash for easy access to file information.
Attributes:
| Name | Type | Description |
|---|---|---|
name | str | Trait name. |
description | str | Trait description. |
id | str | id should be a namespaced trait name with version |
file_paths | list of FileLocation | File locations. |
Source code in client/ayon_core/pipeline/traits/content.py
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 | |
get_file_location_for_frame(frame, sequence_trait=None)
Get a file location for a frame.
This method will return the file location for a given frame. If the frame is not found in the file paths, it will return None.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
frame | int | Frame to get the file location for. | required |
sequence_trait | Sequence | Sequence trait to get the frame range specs from. | None |
Returns:
| Type | Description |
|---|---|
Optional[FileLocation] | Optional[FileLocation]: File location for the frame. |
Source code in client/ayon_core/pipeline/traits/content.py
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 | |
get_files()
Get all file paths from the trait.
This method will return all file paths from the trait.
Yields:
| Name | Type | Description |
|---|---|---|
Path | Path | List of file paths. |
Source code in client/ayon_core/pipeline/traits/content.py
122 123 124 125 126 127 128 129 130 131 132 | |
validate_trait(representation)
Validate the trait.
This method validates the trait against others in the representation. In particular, it checks that the sequence trait is present, and if so, it will compare the frame range to the file paths.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
representation | Representation | Representation to validate. | required |
Raises:
| Type | Description |
|---|---|
TraitValidationError | If the trait is invalid within the representation. |
Source code in client/ayon_core/pipeline/traits/content.py
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 | |
Fragment dataclass
Bases: TraitBase
Fragment trait model.
This model represents a fragment trait. A fragment is a part of a larger entity that is represented by another representation.
Example::
main_representation = Representation(name="parent",
traits=[],
)
fragment_representation = Representation(
name="fragment",
traits=[
Fragment(parent=main_representation.id),
]
)
Attributes:
| Name | Type | Description |
|---|---|---|
name | str | Trait name. |
description | str | Trait description. |
id | str | id should be namespaced trait name with version |
parent | str | Parent representation id. |
Source code in client/ayon_core/pipeline/traits/content.py
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 | |
FrameRanged dataclass
Bases: TraitBase
Frame ranged trait model.
Model representing a frame-ranged trait.
Sync with OpenAssetIO MediaCreation Traits. For compatibility with OpenAssetIO, we'll need to handle different names of attributes:
* frame_start -> start_frame
* frame_end -> end_frame
...
frames_per_second is a string to allow various precision
formats. FPS is a floating point number, but it can be also represented as a fraction (e.g. "30000/1001") or as a decimal or even as an irrational number. We need to support all these formats. To work with FPS, we'll need some helper function to convert FPS to Decimal from string.
Attributes:
| Name | Type | Description |
|---|---|---|
name | str | Trait name. |
description | str | Trait description. |
id | str | id should be a namespaced trait name with a version |
frame_start | int | Frame start. |
frame_end | int | Frame end. |
frame_in | int | Frame in. |
frame_out | int | Frame out. |
frames_per_second | str | Frames per second. |
step | int | Step. |
Source code in client/ayon_core/pipeline/traits/temporal.py
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 | |
GapPolicy
Bases: Enum
Gap policy enumeration.
This type defines how to handle gaps in a sequence.
Attributes:
| Name | Type | Description |
|---|---|---|
forbidden | int | Gaps are forbidden. |
missing | int | Gaps are interpreted as missing frames. |
hold | int | Gaps are interpreted as hold frames (last existing frames). |
black | int | Gaps are interpreted as black frames. |
Source code in client/ayon_core/pipeline/traits/temporal.py
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | |
Geometry dataclass
Bases: TraitBase
Geometry type trait model.
Type trait for geometry data.
Sync with OpenAssetIO MediaCreation Traits.
Source code in client/ayon_core/pipeline/traits/three_dimensional.py
38 39 40 41 42 43 44 45 46 47 48 49 50 | |
Handles dataclass
Bases: TraitBase
Handles trait model.
Handles define the range of frames that are included or excluded from the sequence.
Attributes:
| Name | Type | Description |
|---|---|---|
name | str | Trait name. |
description | str | Trait description. |
id | str | id should be a namespaced trait name with a version |
inclusive | bool | Handles are inclusive. |
frame_start_handle | int | Frame start handle. |
frame_end_handle | int | Frame end handle. |
Source code in client/ayon_core/pipeline/traits/temporal.py
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 | |
IESProfile dataclass
Bases: TraitBase
IES profile (IES-LM-64) type trait model.
Sync with OpenAssetIO MediaCreation Traits.
Source code in client/ayon_core/pipeline/traits/three_dimensional.py
83 84 85 86 87 88 89 90 91 92 93 | |
Image dataclass
Bases: TraitBase
Image trait model.
Type trait model for image.
Attributes:
| Name | Type | Description |
|---|---|---|
name | str | Trait name. |
description | str | Trait description. |
id | str | id should be a namespaced trait name with version |
Source code in client/ayon_core/pipeline/traits/two_dimensional.py
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | |
IntendedUse dataclass
Bases: TraitBase
Intended use of the representation.
This trait describes the intended use of the representation. It can be used in cases where the other traits are not enough to describe the intended use. For example, a txt file with tracking points can be used as a corner pin in After Effect but not in Nuke.
Attributes:
| Name | Type | Description |
|---|---|---|
use | str | Intended use description. |
Source code in client/ayon_core/pipeline/traits/meta.py
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 | |
KeepOriginalLocation dataclass
Bases: TraitBase
Keep files in its original location.
Note
This is not a persistent trait.
Source code in client/ayon_core/pipeline/traits/meta.py
86 87 88 89 90 91 92 93 94 95 96 97 | |
Lighting dataclass
Bases: TraitBase
Lighting trait model.
Type trait for lighting data.
Sync with OpenAssetIO MediaCreation Traits.
Source code in client/ayon_core/pipeline/traits/three_dimensional.py
68 69 70 71 72 73 74 75 76 77 78 79 80 | |
LocatableContent dataclass
Bases: TraitBase
LocatableContent trait model.
This model represents a locatable content trait. Locatable content is content that has a location. It doesn't have to be a file - it could be a URL or some other location.
Sync with OpenAssetIO MediaCreation Traits.
Attributes:
| Name | Type | Description |
|---|---|---|
name | str | Trait name. |
description | str | Trait description. |
id | str | id should be a namespaced trait name with version |
location | str | Location. |
is_templated | Optional[bool] | Is the location templated? Default is None. |
Source code in client/ayon_core/pipeline/traits/content.py
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 | |
MimeType dataclass
Bases: TraitBase
MimeType trait model.
This model represents a mime type trait. For example, image/jpeg. It is used to describe the type of content in a representation regardless of the file extension.
For more information, see RFC 2046 and RFC 4288 (and related RFCs).
Attributes:
| Name | Type | Description |
|---|---|---|
name | str | Trait name. |
description | str | Trait description. |
id | str | id should be a namespaced trait name with version |
mime_type | str | Mime type like image/jpeg. |
Source code in client/ayon_core/pipeline/traits/content.py
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | |
MissingTraitError
Bases: TypeError
Missing trait error exception.
This exception is raised when the trait is missing.
Source code in client/ayon_core/pipeline/traits/trait.py
143 144 145 146 147 | |
Overscan dataclass
Bases: TraitBase
Overscan trait model.
This model represents an overscan (or underscan) trait. Defines the extra pixels around the image.
Attributes:
| Name | Type | Description |
|---|---|---|
name | str | Trait name. |
description | str | Trait description. |
id | str | id should be a namespaced trait name with a version |
left | int | Left overscan/underscan. |
right | int | Right overscan/underscan. |
top | int | Top overscan/underscan. |
bottom | int | Bottom overscan/underscan. |
Source code in client/ayon_core/pipeline/traits/two_dimensional.py
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 | |
PGPSigned dataclass
Bases: DigitallySigned
PGP signed trait.
This trait holds PGP (RFC-4880) signed data.
Attributes:
| Name | Type | Description |
|---|---|---|
signed_data | str | Signed data. |
clear_text | str | Clear text. |
Source code in client/ayon_core/pipeline/traits/cryptography.py
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | |
Persistent dataclass
Bases: TraitBase
Persistent trait model.
Persistent trait is opposite to transient trait. It marks representation as persistent. Such representations are persisted in the system (e.g. in the database).
Attributes:
| Name | Type | Description |
|---|---|---|
name | str | Trait name. |
description | str | Trait description. |
id | str | id should be a namespaced trait name with the version |
Source code in client/ayon_core/pipeline/traits/lifecycle.py
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 | |
validate_trait(representation)
Validate representation is not Transient.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
representation | Representation | Representation model. | required |
Raises:
| Type | Description |
|---|---|
TraitValidationError | If representation is marked as both Persistent and Transient. |
Source code in client/ayon_core/pipeline/traits/lifecycle.py
64 65 66 67 68 69 70 71 72 73 74 75 76 77 | |
PixelBased dataclass
Bases: TraitBase
PixelBased trait model.
The pixel-related trait for image data.
Attributes:
| Name | Type | Description |
|---|---|---|
name | str | Trait name. |
description | str | Trait description. |
id | str | id should be a namespaced trait name with a version |
display_window_width | int | Width of the image display window. |
display_window_height | int | Height of the image display window. |
pixel_aspect_ratio | float | Pixel aspect ratio. |
Source code in client/ayon_core/pipeline/traits/two_dimensional.py
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | |
Planar dataclass
Bases: TraitBase
Planar trait model.
This model represents an Image with planar configuration.
Todo
- (antirotor): Is this really a planar configuration? As with bit planes and everything? If it serves as differentiator for Deep images, should it be named differently? Like Raster?
Attributes:
| Name | Type | Description |
|---|---|---|
name | str | Trait name. |
description | str | Trait description. |
id | str | id should be namespaced trait name with version |
planar_configuration | str | Planar configuration. |
Source code in client/ayon_core/pipeline/traits/two_dimensional.py
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 | |
Representation
Bases: Generic[T]
Representation of products.
Representation defines a collection of individual properties that describe the specific "form" of the product. A trait represents a set of properties therefore, the Representation is a collection of traits.
It holds methods to add, remove, get, and check for the existence of a trait in the representation.
Note
PLR0904 is the rule for checking the number of public methods in a class.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name | str | Representation name. Must be unique within instance. | required |
representation_id | str | Representation ID. | None |
Source code in client/ayon_core/pipeline/traits/representation.py
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 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 | |
__contains__(key)
Check if the trait exists by ID.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key | str | Trait ID. | required |
Returns:
| Name | Type | Description |
|---|---|---|
bool | bool | True if the trait exists, False otherwise. |
Source code in client/ayon_core/pipeline/traits/representation.py
112 113 114 115 116 117 118 119 120 121 122 | |
__delitem__(key)
Remove the trait by ID.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key | str | Trait ID. | required |
Source code in client/ayon_core/pipeline/traits/representation.py
102 103 104 105 106 107 108 109 110 | |
__eq__(other)
Check if the representation is equal to another.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
other | Representation | Representation to compare. | required |
Returns:
| Name | Type | Description |
|---|---|---|
bool | bool | True if the representations are equal, False otherwise. |
Source code in client/ayon_core/pipeline/traits/representation.py
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 | |
__getitem__(key)
Get the trait by ID.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key | str | Trait ID. | required |
Returns:
| Name | Type | Description |
|---|---|---|
TraitBase | T | Trait instance. |
Source code in client/ayon_core/pipeline/traits/representation.py
77 78 79 80 81 82 83 84 85 86 87 | |
__hash__()
Return hash of the representation ID.
Source code in client/ayon_core/pipeline/traits/representation.py
73 74 75 | |
__init__(name, representation_id=None, traits=None)
Initialize the data.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name | str | Representation name. Must be unique within instance. | required |
representation_id | str | Representation ID. | None |
traits | list[TraitBase] | List of traits. | None |
Source code in client/ayon_core/pipeline/traits/representation.py
404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 | |
__iter__()
Return the trait ID iterator.
Source code in client/ayon_core/pipeline/traits/representation.py
124 125 126 | |
__len__()
Return the length of the data.
Source code in client/ayon_core/pipeline/traits/representation.py
400 401 402 | |
__setitem__(key, value)
Set the trait by ID.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key | str | Trait ID. | required |
value | TraitBase | Trait instance. | required |
Source code in client/ayon_core/pipeline/traits/representation.py
89 90 91 92 93 94 95 96 97 98 99 100 | |
__str__()
Return the representation name.
Source code in client/ayon_core/pipeline/traits/representation.py
128 129 130 | |
add_trait(trait, *, exists_ok=False)
Add a trait to the Representation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
trait | TraitBase | Trait to add. | required |
exists_ok | bool | If True, do not raise an error if the trait already exists. Defaults to False. | False |
Raises:
| Type | Description |
|---|---|
ValueError | If the trait ID is not provided, or the trait already exists. |
Source code in client/ayon_core/pipeline/traits/representation.py
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 | |
add_traits(traits, *, exists_ok=False)
Add a list of traits to the Representation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
traits | list[TraitBase] | List of traits to add. | required |
exists_ok | bool | If True, do not raise an error if the trait already exists. Defaults to False. | False |
Source code in client/ayon_core/pipeline/traits/representation.py
157 158 159 160 161 162 163 164 165 166 167 168 | |
contains_trait(trait)
Check if the trait exists in the Representation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
trait | TraitBase | Trait class. | required |
Returns:
| Name | Type | Description |
|---|---|---|
bool | bool | True if the trait exists, False otherwise. |
Source code in client/ayon_core/pipeline/traits/representation.py
239 240 241 242 243 244 245 246 247 248 249 | |
contains_trait_by_id(trait_id)
Check if the trait exists using trait id.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
trait_id | str | Trait ID. | required |
Returns:
| Name | Type | Description |
|---|---|---|
bool | bool | True if the trait exists, False otherwise. |
Source code in client/ayon_core/pipeline/traits/representation.py
251 252 253 254 255 256 257 258 259 260 261 | |
contains_traits(traits)
Check if the traits exist.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
traits | list[TraitBase] | List of trait classes. | required |
Returns:
| Name | Type | Description |
|---|---|---|
bool | bool | True if all traits exist, False otherwise. |
Source code in client/ayon_core/pipeline/traits/representation.py
263 264 265 266 267 268 269 270 271 272 273 | |
contains_traits_by_id(trait_ids)
Check if the traits exist by id.
If no trait IDs or traits are provided, it will check if the representation has any traits.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
trait_ids | list[str] | List of trait IDs. | required |
Returns:
| Name | Type | Description |
|---|---|---|
bool | bool | True if all traits exist, False otherwise. |
Source code in client/ayon_core/pipeline/traits/representation.py
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 | |
from_dict(name, representation_id=None, trait_data=None) classmethod
Create a representation from a dictionary.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name | str | Representation name. | required |
representation_id | str | Representation ID. | None |
trait_data | dict | Representation data. Dictionary with keys as trait ids and values as trait data. Example:: | None |
Returns:
| Name | Type | Description |
|---|---|---|
Representation | Representation | Representation instance. |
Raises:
| Type | Description |
|---|---|
ValueError | If the trait model with ID is not found. |
TypeError | If the trait data is not a dictionary. |
IncompatibleTraitVersionError | If the trait version is incompatible |
Source code in client/ayon_core/pipeline/traits/representation.py
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 | |
get_trait(trait)
Get a trait from the representation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
trait | TraitBase | Trait class. | required |
Returns:
| Name | Type | Description |
|---|---|---|
TraitBase | T | Trait instance. |
Raises:
| Type | Description |
|---|---|
MissingTraitError | If the trait is not found. |
Source code in client/ayon_core/pipeline/traits/representation.py
292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 | |
get_trait_by_id(trait_id)
Get a trait from the representation by id.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
trait_id | str | Trait ID. | required |
Returns:
| Name | Type | Description |
|---|---|---|
TraitBase | T | Trait instance. |
Raises:
| Type | Description |
|---|---|
MissingTraitError | If the trait is not found. |
Source code in client/ayon_core/pipeline/traits/representation.py
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 | |
get_trait_class_by_trait_id(trait_id) classmethod
Get the trait class for the given trait ID.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
trait_id | str | Trait ID. | required |
Returns:
| Type | Description |
|---|---|
Type[T] | type[TraitBase]: Trait class. |
Raises:
| Type | Description |
|---|---|
IncompatibleTraitVersionError | If the trait version is incompatible with the current version of the trait. |
Source code in client/ayon_core/pipeline/traits/representation.py
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 | |
get_traits(traits=None)
Get a list of traits from the representation.
If no trait IDs or traits are provided, all traits will be returned.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
traits | list[TraitBase] | List of trait classes. | None |
Returns:
| Name | Type | Description |
|---|---|---|
dict | dict[str, T] | Dictionary of traits. |
Source code in client/ayon_core/pipeline/traits/representation.py
346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 | |
get_traits_by_ids(trait_ids)
Get a list of traits from the representation by their id.
If no trait IDs or traits are provided, all traits will be returned.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
trait_ids | list[str] | List of trait IDs. | required |
Returns:
| Name | Type | Description |
|---|---|---|
dict | dict[str, T] | Dictionary of traits. |
Source code in client/ayon_core/pipeline/traits/representation.py
370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 | |
has_traits()
Check if the Representation has any traits.
Returns:
| Name | Type | Description |
|---|---|---|
bool | bool | True if the Representation has any traits, False otherwise. |
Source code in client/ayon_core/pipeline/traits/representation.py
230 231 232 233 234 235 236 237 | |
items()
Return the traits as items.
Source code in client/ayon_core/pipeline/traits/representation.py
132 133 134 | |
remove_trait(trait)
Remove a trait from the data.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
trait | TraitBase | Trait class. | required |
Raises:
| Type | Description |
|---|---|
ValueError | If the trait is not found. |
Source code in client/ayon_core/pipeline/traits/representation.py
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 | |
remove_trait_by_id(trait_id)
Remove a trait from the data by its ID.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
trait_id | str | Trait ID. | required |
Raises:
| Type | Description |
|---|---|
ValueError | If the trait is not found. |
Source code in client/ayon_core/pipeline/traits/representation.py
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 | |
remove_traits(traits)
Remove a list of traits from the Representation.
If no trait IDs or traits are provided, all traits will be removed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
traits | list[TraitBase] | List of trait classes. | required |
Source code in client/ayon_core/pipeline/traits/representation.py
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 | |
remove_traits_by_id(trait_ids)
Remove a list of traits from the Representation by their ID.
If no trait IDs or traits are provided, all traits will be removed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
trait_ids | list[str] | List of trait IDs. | required |
Source code in client/ayon_core/pipeline/traits/representation.py
218 219 220 221 222 223 224 225 226 227 228 | |
traits_as_dict()
Return the traits from Representation data as a dictionary.
Returns:
| Name | Type | Description |
|---|---|---|
dict | dict | Traits data dictionary. |
Source code in client/ayon_core/pipeline/traits/representation.py
387 388 389 390 391 392 393 394 395 396 397 398 | |
validate()
Validate the representation.
This method will validate all the traits in the representation.
Raises:
| Type | Description |
|---|---|
TraitValidationError | If the trait is invalid within representation |
Source code in client/ayon_core/pipeline/traits/representation.py
694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 | |
RootlessLocation dataclass
Bases: TraitBase
RootlessLocation trait model.
RootlessLocation trait is a trait that represents a file path that is without a specific root. To get the absolute path, the root needs to be resolved by AYON. Rootless path can be used on multiple platforms.
Example::
RootlessLocation(
rootless_path="{root[work]}/project/asset/asset.jpg"
)
Attributes:
| Name | Type | Description |
|---|---|---|
name | str | Trait name. |
description | str | Trait description. |
id | str | id should be a namespaced trait name with version |
rootless_path | str | Rootless path. |
Source code in client/ayon_core/pipeline/traits/content.py
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 | |
SMPTETimecode dataclass
Bases: TraitBase
SMPTE Timecode trait model.
Attributes:
| Name | Type | Description |
|---|---|---|
timecode | str | SMPTE Timecode HH:MM:SS:FF |
Source code in client/ayon_core/pipeline/traits/temporal.py
432 433 434 435 436 437 438 439 440 441 442 443 444 | |
Sequence dataclass
Bases: TraitBase
Sequence trait model.
This model represents a sequence trait. Based on the FrameRanged trait and Handles, adding support for gaps policy, frame padding and frame list specification. Regex is used to match frame numbers.
Attributes:
| Name | Type | Description |
|---|---|---|
name | str | Trait name. |
description | str | Trait description. |
id | str | id should be a namespaced trait name with a version |
gaps_policy | GapPolicy | Gaps policy - how to handle gaps in sequence. |
frame_padding | int | Frame padding. |
frame_regex | str | Frame regex - regular expression to match frame numbers. Must include 'index' named group and 'padding' named group. |
frame_spec | str | Frame list specification of frames. This takes string like "1-10,20-30,40-50" etc. |
Source code in client/ayon_core/pipeline/traits/temporal.py
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 | |
get_frame_list(file_locations, regex=None) staticmethod
Get the frame list.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_locations | FileLocations | File locations trait. | required |
regex | Optional[Pattern] | Regular expression to match frame numbers. This is passed to | None |
Returns:
| Type | Description |
|---|---|
list[int] | list[int]: List of frame numbers. |
Source code in client/ayon_core/pipeline/traits/temporal.py
392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 | |
get_frame_padding(file_locations) staticmethod
Get frame padding.
Returns:
| Name | Type | Description |
|---|---|---|
int | int | Frame padding. |
Source code in client/ayon_core/pipeline/traits/temporal.py
375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 | |
get_frame_pattern()
Get frame regex as a pattern.
If the regex is a string, it will compile it to the pattern.
Returns:
| Name | Type | Description |
|---|---|---|
Pattern | Pattern | Compiled regex pattern. |
Source code in client/ayon_core/pipeline/traits/temporal.py
414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 | |
list_spec_to_frames(list_spec) staticmethod
Convert list specification to frames.
Returns:
| Type | Description |
|---|---|
list[int] | list[int]: List of frame numbers. |
Raises:
| Type | Description |
|---|---|
ValueError | If invalid frame number in the list. |
Source code in client/ayon_core/pipeline/traits/temporal.py
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 | |
validate_frame_list(file_locations, frame_start=None, frame_end=None, handles_frame_start=None, handles_frame_end=None)
Validate a frame list.
This will take FileLocations trait and validate if the file locations match the frame list specification.
For example, if the frame list is "1-10,20-30,40-50", then the frame numbers in the file locations should match these frames.
It will skip the validation if the frame list is not provided.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_locations | FileLocations | File locations trait. | required |
frame_start | Optional[int] | Frame start. | None |
frame_end | Optional[int] | Frame end. | None |
handles_frame_start | Optional[int] | Frame start handle. | None |
handles_frame_end | Optional[int] | Frame end handle. | None |
Raises:
| Type | Description |
|---|---|
TraitValidationError | If the frame list does not match the expected frames. |
Source code in client/ayon_core/pipeline/traits/temporal.py
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 | |
validate_frame_padding(file_locations)
Validate frame padding.
This will take FileLocations trait and validate if the frame padding matches the expected frame padding.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_locations | FileLocations | File locations trait. | required |
Raises:
| Type | Description |
|---|---|
TraitValidationError | If frame padding does not match the expected frame padding. |
Source code in client/ayon_core/pipeline/traits/temporal.py
289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 | |
validate_frame_regex(v) classmethod
Validate frame regex.
Frame regex must have index and padding named groups.
Returns:
| Type | Description |
|---|---|
Optional[Pattern] | Optional[Pattern]: Compiled regex pattern. |
Raises:
| Type | Description |
|---|---|
ValueError | If frame regex does not include 'index' and 'padding' |
Source code in client/ayon_core/pipeline/traits/temporal.py
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 | |
validate_trait(representation)
Validate the trait.
Source code in client/ayon_core/pipeline/traits/temporal.py
161 162 163 164 165 166 167 168 169 | |
Shader dataclass
Bases: TraitBase
Shader trait model.
Type trait for shader data.
Sync with OpenAssetIO MediaCreation Traits.
Source code in client/ayon_core/pipeline/traits/three_dimensional.py
53 54 55 56 57 58 59 60 61 62 63 64 65 | |
SourceApplication dataclass
Bases: TraitBase
Metadata about the source (producing) application.
This can be useful in cases where this information is needed, but it cannot be determined from other means - like .txt files used for various motion tracking applications that must be interpreted by the loader.
Note that this is not really connected to any logic in ayon-applications addon.
Attributes:
| Name | Type | Description |
|---|---|---|
application | str | Application name. |
variant | str | Application variant. |
version | str | Application version. |
platform | str | Platform name (Windows, darwin, etc.). |
host_name | str | AYON host name if applicable. |
Source code in client/ayon_core/pipeline/traits/meta.py
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 | |
Spatial dataclass
Bases: TraitBase
Spatial trait model.
Trait describing spatial information. Up axis valid strings are "Y", "Z", "X". Handedness valid strings are "left", "right". Meters per unit is a float value.
Example::
Spatial(up_axis="Y", handedness="right", meters_per_unit=1.0)
Todo
- Add value validation for up_axis and handedness.
Attributes:
| Name | Type | Description |
|---|---|---|
up_axis | str | Up axis. |
handedness | str | Handedness. |
meters_per_unit | float | Meters per unit. |
Source code in client/ayon_core/pipeline/traits/three_dimensional.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 | |
Static dataclass
Bases: TraitBase
Static time trait.
Used to define static time (single frame).
Source code in client/ayon_core/pipeline/traits/temporal.py
447 448 449 450 451 452 453 454 455 456 457 | |
Tagged dataclass
Bases: TraitBase
Tagged trait model.
This trait can hold a list of tags.
Example::
Tagged(tags=["tag1", "tag2"])
Attributes:
| Name | Type | Description |
|---|---|---|
name | str | Trait name. |
description | str | Trait description. |
id | str | id should be a namespaced trait name with version |
tags | List[str] | Tags. |
Source code in client/ayon_core/pipeline/traits/meta.py
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | |
TemplatePath dataclass
Bases: TraitBase
TemplatePath trait model.
This model represents a template path with formatting data. Template path can be an Anatomy template and data is used to format it.
Example::
TemplatePath(template="path/{key}/file", data={"key": "to"})
Attributes:
| Name | Type | Description |
|---|---|---|
name | str | Trait name. |
description | str | Trait description. |
id | str | id should be a namespaced trait name with version |
template | str | Template path. |
data | dict[str] | Formatting data. |
Source code in client/ayon_core/pipeline/traits/meta.py
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 | |
TraitBase dataclass
Bases: ABC
Base trait model.
This model must be used as a base for all trait models. id, name, and description are abstract attributes that must be implemented in the derived classes.
Source code in client/ayon_core/pipeline/traits/trait.py
16 17 18 19 20 21 22 23 24 25 26 27 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 | |
description abstractmethod property
Abstract attribute for description.
id abstractmethod property
Abstract attribute for ID.
name abstractmethod property
Abstract attribute for name.
as_dict()
Return a trait as a dictionary.
Returns:
| Name | Type | Description |
|---|---|---|
dict | dict | Trait as dictionary. |
Source code in client/ayon_core/pipeline/traits/trait.py
82 83 84 85 86 87 88 89 | |
get_version() classmethod
Get a trait version from ID.
This assumes Trait ID ends with .v{version}. If not, it will return None.
Returns:
| Type | Description |
|---|---|
Optional[int] | Optional[int]: Trait version |
Source code in client/ayon_core/pipeline/traits/trait.py
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | |
get_versionless_id() classmethod
Get a trait ID without a version.
Returns:
| Name | Type | Description |
|---|---|---|
str | str | Trait ID without a version. |
Source code in client/ayon_core/pipeline/traits/trait.py
72 73 74 75 76 77 78 79 80 | |
validate_trait(representation)
Validate the trait.
This method should be implemented in the derived classes to validate the trait data. It can be used by traits to validate against other traits in the representation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
representation | Representation | Representation instance. | required |
Source code in client/ayon_core/pipeline/traits/trait.py
43 44 45 46 47 48 49 50 51 52 53 54 | |
TraitValidationError
Bases: Exception
Trait validation error exception.
This exception is raised when the trait validation fails.
Source code in client/ayon_core/pipeline/traits/trait.py
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 | |
__init__(scope, message)
Initialize the exception.
We could determine the scope from the stack in the future, provided the scope is always Trait name.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
scope | str | Scope of the error. | required |
message | str | Error message. | required |
Source code in client/ayon_core/pipeline/traits/trait.py
129 130 131 132 133 134 135 136 137 138 139 140 | |
Transient dataclass
Bases: TraitBase
Transient trait model.
Transient trait marks representation as transient. Such representations are not persisted in the system.
Attributes:
| Name | Type | Description |
|---|---|---|
name | str | Trait name. |
description | str | Trait description. |
id | str | id should be a namespaced trait name with the version |
Source code in client/ayon_core/pipeline/traits/lifecycle.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 37 38 39 | |
validate_trait(representation)
Validate representation is not Persistent.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
representation | Representation | Representation model. | required |
Raises:
| Type | Description |
|---|---|
TraitValidationError | If representation is marked as both Persistent and Transient. |
Source code in client/ayon_core/pipeline/traits/lifecycle.py
26 27 28 29 30 31 32 33 34 35 36 37 38 39 | |
UDIM dataclass
Bases: TraitBase
UDIM trait model.
This model represents a UDIM trait.
Attributes:
| Name | Type | Description |
|---|---|---|
name | str | Trait name. |
description | str | Trait description. |
id | str | id should be namespaced trait name with version |
udim | int | UDIM value. |
udim_regex | str | UDIM regex. |
Source code in client/ayon_core/pipeline/traits/two_dimensional.py
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 | |
get_file_location_for_udim(file_locations, udim)
Get file location for UDIM.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_locations | FileLocations | File locations. | required |
udim | int | UDIM value. | required |
Returns:
| Type | Description |
|---|---|
Optional[FileLocation] | Optional[FileLocation]: File location. |
Source code in client/ayon_core/pipeline/traits/two_dimensional.py
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 | |
get_udim_from_file_location(file_location)
Get UDIM from the file location.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_location | FileLocation | File location. | required |
Returns:
| Type | Description |
|---|---|
Optional[int] | Optional[int]: UDIM value. |
Source code in client/ayon_core/pipeline/traits/two_dimensional.py
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 | |
validate_frame_regex(v) classmethod
Validate udim regex.
Returns:
| Type | Description |
|---|---|
Optional[str] | Optional[str]: UDIM regex. |
Raises:
| Type | Description |
|---|---|
ValueError | UDIM regex must include 'udim' named group. |
Source code in client/ayon_core/pipeline/traits/two_dimensional.py
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 | |
Variant dataclass
Bases: TraitBase
Variant trait model.
This model represents a variant of the representation.
Example::
Variant(variant="high")
Variant(variant="prores444)
Attributes:
| Name | Type | Description |
|---|---|---|
name | str | Trait name. |
description | str | Trait description. |
id | str | id should be a namespaced trait name with version |
variant | str | Variant name. |
Source code in client/ayon_core/pipeline/traits/meta.py
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | |
get_sequence_from_files(paths)
Get the original frame range from files.
Note that this cannot guess frame rate, so it's set to 25. This will also fail on paths that cannot be assembled into one collection without any reminders.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
paths | list[Path] | List of file paths. | required |
Returns:
| Name | Type | Description |
|---|---|---|
FrameRanged | FrameRanged | FrameRanged trait. |
Raises:
| Type | Description |
|---|---|
ValueError | If paths cannot be assembled into one collection |
Source code in client/ayon_core/pipeline/traits/utils.py
16 17 18 19 20 21 22 23 24 25 26 27 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 | |