temporal
Temporal (time related) traits.
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 | |
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 | |
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 | |
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 | |