-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstudio-config-v1.0.0_aces-v1.3_ocio-v2.1_ns.ocio
1260 lines (1108 loc) · 55.5 KB
/
studio-config-v1.0.0_aces-v1.3_ocio-v2.1_ns.ocio
1
2
3
4
5
6
7
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
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
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
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
ocio_profile_version: 2.1
environment:
{}
search_path: ""
strictparsing: true
luma: [0.2126, 0.7152, 0.0722]
name: studio-config-v1.0.0_aces-v1.3_ocio-v2.1_ns
description: |
Based on Academy Color Encoding System - Studio Config [COLORSPACES v1.0.0] [ACES v1.3] [OCIO v2.1]
---------------------------------------------------------------------------------------------------
Original generated with "OpenColorIO-Config-ACES" v1.0.0 on the 2022/10/26 at 05:59.
Modified by Nick Shaw, www.antlerpost.com on 2023/08/26 at 23:48.
roles:
aces_interchange: ACES2065-1
cie_xyz_d65_interchange: CIE-XYZ-D65
color_picking: sRGB - Texture
color_timing: ACEScct
compositing_log: ACEScct
data: Raw
matte_paint: sRGB - Texture
scene_linear: ACEScg
texture_paint: ACEScct
file_rules:
- !<Rule> {name: Default, colorspace: ACES2065-1}
shared_views:
- !<View> {name: ACES 1.0 - SDR Video, view_transform: ACES 1.0 - SDR Video, display_colorspace: <USE_DISPLAY_NAME>}
- !<View> {name: ACES 1.0 - SDR Video (D60 sim on D65), view_transform: ACES 1.0 - SDR Video (D60 sim on D65), display_colorspace: <USE_DISPLAY_NAME>}
- !<View> {name: ACES 1.1 - SDR Video (P3 lim), view_transform: ACES 1.1 - SDR Video (P3 lim), display_colorspace: <USE_DISPLAY_NAME>}
- !<View> {name: ACES 1.1 - SDR Video (Rec.709 lim), view_transform: ACES 1.1 - SDR Video (Rec.709 lim), display_colorspace: <USE_DISPLAY_NAME>}
- !<View> {name: ACES 1.1 - HDR Video (1000 nits & Rec.2020 lim), view_transform: ACES 1.1 - HDR Video (1000 nits & Rec.2020 lim), display_colorspace: <USE_DISPLAY_NAME>}
- !<View> {name: ACES 1.1 - HDR Video (2000 nits & Rec.2020 lim), view_transform: ACES 1.1 - HDR Video (2000 nits & Rec.2020 lim), display_colorspace: <USE_DISPLAY_NAME>}
- !<View> {name: ACES 1.1 - HDR Video (4000 nits & Rec.2020 lim), view_transform: ACES 1.1 - HDR Video (4000 nits & Rec.2020 lim), display_colorspace: <USE_DISPLAY_NAME>}
- !<View> {name: ACES 1.1 - HDR Video (1000 nits & P3 lim), view_transform: ACES 1.1 - HDR Video (1000 nits & P3 lim), display_colorspace: <USE_DISPLAY_NAME>}
- !<View> {name: ACES 1.1 - HDR Video (2000 nits & P3 lim), view_transform: ACES 1.1 - HDR Video (2000 nits & P3 lim), display_colorspace: <USE_DISPLAY_NAME>}
- !<View> {name: ACES 1.1 - HDR Video (4000 nits & P3 lim), view_transform: ACES 1.1 - HDR Video (4000 nits & P3 lim), display_colorspace: <USE_DISPLAY_NAME>}
- !<View> {name: ACES 1.0 - SDR Cinema, view_transform: ACES 1.0 - SDR Cinema, display_colorspace: <USE_DISPLAY_NAME>}
- !<View> {name: ACES 1.1 - SDR Cinema (D60 sim on D65), view_transform: ACES 1.1 - SDR Cinema (D60 sim on D65), display_colorspace: <USE_DISPLAY_NAME>}
- !<View> {name: ACES 1.1 - SDR Cinema (Rec.709 lim), view_transform: ACES 1.1 - SDR Cinema (Rec.709 lim), display_colorspace: <USE_DISPLAY_NAME>}
- !<View> {name: ACES 1.0 - SDR Cinema (D60 sim on DCI), view_transform: ACES 1.0 - SDR Cinema (D60 sim on DCI), display_colorspace: <USE_DISPLAY_NAME>}
- !<View> {name: ACES 1.1 - SDR Cinema (D65 sim on DCI), view_transform: ACES 1.1 - SDR Cinema (D65 sim on DCI), display_colorspace: <USE_DISPLAY_NAME>}
- !<View> {name: ACES 1.1 - HDR Cinema (108 nits & P3 lim), view_transform: ACES 1.1 - HDR Cinema (108 nits & P3 lim), display_colorspace: <USE_DISPLAY_NAME>}
- !<View> {name: Un-tone-mapped, view_transform: Un-tone-mapped, display_colorspace: <USE_DISPLAY_NAME>}
displays:
Apple Display P3 - Display:
- !<View> {name: Raw, colorspace: Raw}
- !<Views> [ACES 1.0 - SDR Video, ACES 1.0 - SDR Video (D60 sim on D65), ACES 1.1 - HDR Video (1000 nits & Rec.2020 lim), ACES 1.1 - HDR Video (1000 nits & P3 lim), ACES 1.1 - HDR Cinema (108 nits & P3 lim), Un-tone-mapped]
sRGB - Display:
- !<View> {name: Raw, colorspace: Raw}
- !<Views> [ACES 1.0 - SDR Video, ACES 1.0 - SDR Video (D60 sim on D65), Un-tone-mapped]
Rec.1886 Rec.709 - Display:
- !<View> {name: Raw, colorspace: Raw}
- !<Views> [ACES 1.0 - SDR Video, ACES 1.0 - SDR Video (D60 sim on D65), Un-tone-mapped]
Rec.1886 Rec.2020 - Display:
- !<View> {name: Raw, colorspace: Raw}
- !<Views> [ACES 1.0 - SDR Video, ACES 1.1 - SDR Video (P3 lim), ACES 1.1 - SDR Video (Rec.709 lim), Un-tone-mapped]
Rec.2100-HLG - Display:
- !<View> {name: Raw, colorspace: Raw}
- !<Views> [ACES 1.1 - HDR Video (1000 nits & Rec.2020 lim), Un-tone-mapped]
Rec.2100-PQ - Display:
- !<View> {name: Raw, colorspace: Raw}
- !<Views> [ACES 1.1 - HDR Video (1000 nits & Rec.2020 lim), ACES 1.1 - HDR Video (2000 nits & Rec.2020 lim), ACES 1.1 - HDR Video (4000 nits & Rec.2020 lim), Un-tone-mapped]
ST2084-P3-D65 - Display:
- !<View> {name: Raw, colorspace: Raw}
- !<Views> [ACES 1.1 - HDR Video (1000 nits & P3 lim), ACES 1.1 - HDR Video (2000 nits & P3 lim), ACES 1.1 - HDR Video (4000 nits & P3 lim), ACES 1.1 - HDR Cinema (108 nits & P3 lim), Un-tone-mapped]
P3-D60 - Display:
- !<View> {name: Raw, colorspace: Raw}
- !<Views> [ACES 1.0 - SDR Cinema, Un-tone-mapped]
P3-D65 - Display:
- !<View> {name: Raw, colorspace: Raw}
- !<Views> [ACES 1.0 - SDR Cinema, ACES 1.1 - SDR Cinema (D60 sim on D65), ACES 1.1 - SDR Cinema (Rec.709 lim), Un-tone-mapped]
P3-DCI - Display:
- !<View> {name: Raw, colorspace: Raw}
- !<Views> [ACES 1.0 - SDR Cinema (D60 sim on DCI), ACES 1.1 - SDR Cinema (D65 sim on DCI), Un-tone-mapped]
active_displays: [Apple Display P3 - Display, sRGB - Display, Rec.1886 Rec.709 - Display, Rec.1886 Rec.2020 - Display, Rec.2100-HLG - Display, Rec.2100-PQ - Display, ST2084-P3-D65 - Display, P3-D60 - Display, P3-D65 - Display, P3-DCI - Display]
active_views: [ACES 1.0 - SDR Video, ACES 1.0 - SDR Video (D60 sim on D65), ACES 1.1 - SDR Video (P3 lim), ACES 1.1 - SDR Video (Rec.709 lim), ACES 1.1 - HDR Video (1000 nits & Rec.2020 lim), ACES 1.1 - HDR Video (2000 nits & Rec.2020 lim), ACES 1.1 - HDR Video (4000 nits & Rec.2020 lim), ACES 1.1 - HDR Video (1000 nits & P3 lim), ACES 1.1 - HDR Video (2000 nits & P3 lim), ACES 1.1 - HDR Video (4000 nits & P3 lim), ACES 1.0 - SDR Cinema, ACES 1.1 - SDR Cinema (D60 sim on D65), ACES 1.1 - SDR Cinema (Rec.709 lim), ACES 1.0 - SDR Cinema (D60 sim on DCI), ACES 1.1 - SDR Cinema (D65 sim on DCI), ACES 1.1 - HDR Cinema (108 nits & P3 lim), Un-tone-mapped, Raw]
inactive_colorspaces: [CIE-XYZ-D65, sRGB - Display, Rec.1886 Rec.709 - Display, Rec.1886 Rec.2020 - Display, sRGB - Display, Rec.1886 Rec.709 - Display, Rec.1886 Rec.2020 - Display, Rec.1886 Rec.2020 - Display, Rec.2100-HLG - Display, Rec.2100-PQ - Display, Rec.2100-PQ - Display, Rec.2100-PQ - Display, ST2084-P3-D65 - Display, ST2084-P3-D65 - Display, ST2084-P3-D65 - Display, P3-D60 - Display, P3-D65 - Display, P3-D65 - Display, P3-D65 - Display, P3-DCI - Display, P3-DCI - Display, ST2084-P3-D65 - Display]
looks:
- !<Look>
name: ACES 1.3 Reference Gamut Compression
process_space: ACES2065-1
description: |
LMT (applied in ACES2065-1) to compress scene-referred values from common cameras into the AP1 gamut
ACEStransformID: urn:ampas:aces:transformId:v1.5:LMT.Academy.GamutCompress.a1.3.0
transform: !<BuiltinTransform> {style: ACES-LMT - ACES 1.3 Reference Gamut Compression}
default_view_transform: Un-tone-mapped
view_transforms:
- !<ViewTransform>
name: ACES 1.0 - SDR Video
description: |
Component of ACES Output Transforms for SDR D65 video
ACEStransformID: urn:ampas:aces:transformId:v1.5:ODT.Academy.RGBmonitor_100nits_dim.a1.0.3
ACEStransformID: urn:ampas:aces:transformId:v1.5:ODT.Academy.Rec709_100nits_dim.a1.0.3
ACEStransformID: urn:ampas:aces:transformId:v1.5:ODT.Academy.Rec2020_100nits_dim.a1.0.3
from_scene_reference: !<BuiltinTransform> {style: ACES-OUTPUT - ACES2065-1_to_CIE-XYZ-D65 - SDR-VIDEO_1.0}
- !<ViewTransform>
name: ACES 1.0 - SDR Video (D60 sim on D65)
description: |
Component of ACES Output Transforms for SDR D65 video simulating D60 white
ACEStransformID: urn:ampas:aces:transformId:v1.5:ODT.Academy.RGBmonitor_D60sim_100nits_dim.a1.0.3
ACEStransformID: urn:ampas:aces:transformId:v1.5:ODT.Academy.Rec709_D60sim_100nits_dim.a1.0.3
from_scene_reference: !<BuiltinTransform> {style: ACES-OUTPUT - ACES2065-1_to_CIE-XYZ-D65 - SDR-VIDEO-D60sim-D65_1.0}
- !<ViewTransform>
name: ACES 1.1 - SDR Video (P3 lim)
description: |
Component of ACES Output Transforms for SDR D65 video
ACEStransformID: urn:ampas:aces:transformId:v1.5:ODT.Academy.Rec2020_P3D65limited_100nits_dim.a1.1.0
from_scene_reference: !<BuiltinTransform> {style: ACES-OUTPUT - ACES2065-1_to_CIE-XYZ-D65 - SDR-VIDEO-P3lim_1.1}
- !<ViewTransform>
name: ACES 1.1 - SDR Video (Rec.709 lim)
description: |
Component of ACES Output Transforms for SDR D65 video
ACEStransformID: urn:ampas:aces:transformId:v1.5:ODT.Academy.Rec2020_Rec709limited_100nits_dim.a1.1.0
from_scene_reference: !<BuiltinTransform> {style: ACES-OUTPUT - ACES2065-1_to_CIE-XYZ-D65 - SDR-VIDEO-REC709lim_1.1}
- !<ViewTransform>
name: ACES 1.1 - HDR Video (1000 nits & Rec.2020 lim)
description: |
Component of ACES Output Transforms for 1000 nit HDR D65 video
ACEStransformID: urn:ampas:aces:transformId:v1.5:RRTODT.Academy.Rec2020_1000nits_15nits_HLG.a1.1.0
ACEStransformID: urn:ampas:aces:transformId:v1.5:RRTODT.Academy.Rec2020_1000nits_15nits_ST2084.a1.1.0
from_scene_reference: !<BuiltinTransform> {style: ACES-OUTPUT - ACES2065-1_to_CIE-XYZ-D65 - HDR-VIDEO-1000nit-15nit-REC2020lim_1.1}
- !<ViewTransform>
name: ACES 1.1 - HDR Video (2000 nits & Rec.2020 lim)
description: |
Component of ACES Output Transforms for 2000 nit HDR D65 video
ACEStransformID: urn:ampas:aces:transformId:v1.5:RRTODT.Academy.Rec2020_2000nits_15nits_ST2084.a1.1.0
from_scene_reference: !<BuiltinTransform> {style: ACES-OUTPUT - ACES2065-1_to_CIE-XYZ-D65 - HDR-VIDEO-2000nit-15nit-REC2020lim_1.1}
- !<ViewTransform>
name: ACES 1.1 - HDR Video (4000 nits & Rec.2020 lim)
description: |
Component of ACES Output Transforms for 4000 nit HDR D65 video
ACEStransformID: urn:ampas:aces:transformId:v1.5:RRTODT.Academy.Rec2020_4000nits_15nits_ST2084.a1.1.0
from_scene_reference: !<BuiltinTransform> {style: ACES-OUTPUT - ACES2065-1_to_CIE-XYZ-D65 - HDR-VIDEO-4000nit-15nit-REC2020lim_1.1}
- !<ViewTransform>
name: ACES 1.1 - HDR Video (1000 nits & P3 lim)
description: |
Component of ACES Output Transforms for 1000 nit HDR D65 video
ACEStransformID: urn:ampas:aces:transformId:v1.5:RRTODT.Academy.P3D65_1000nits_15nits_ST2084.a1.1.0
from_scene_reference: !<BuiltinTransform> {style: ACES-OUTPUT - ACES2065-1_to_CIE-XYZ-D65 - HDR-VIDEO-1000nit-15nit-P3lim_1.1}
- !<ViewTransform>
name: ACES 1.1 - HDR Video (2000 nits & P3 lim)
description: |
Component of ACES Output Transforms for 2000 nit HDR D65 video
ACEStransformID: urn:ampas:aces:transformId:v1.5:RRTODT.Academy.P3D65_2000nits_15nits_ST2084.a1.1.0
from_scene_reference: !<BuiltinTransform> {style: ACES-OUTPUT - ACES2065-1_to_CIE-XYZ-D65 - HDR-VIDEO-2000nit-15nit-P3lim_1.1}
- !<ViewTransform>
name: ACES 1.1 - HDR Video (4000 nits & P3 lim)
description: |
Component of ACES Output Transforms for 4000 nit HDR D65 video
ACEStransformID: urn:ampas:aces:transformId:v1.5:RRTODT.Academy.P3D65_4000nits_15nits_ST2084.a1.1.0
from_scene_reference: !<BuiltinTransform> {style: ACES-OUTPUT - ACES2065-1_to_CIE-XYZ-D65 - HDR-VIDEO-4000nit-15nit-P3lim_1.1}
- !<ViewTransform>
name: ACES 1.0 - SDR Cinema
description: |
Component of ACES Output Transforms for SDR cinema
ACEStransformID: urn:ampas:aces:transformId:v1.5:ODT.Academy.P3D60_48nits.a1.0.3
ACEStransformID: urn:ampas:aces:transformId:v1.5:ODT.Academy.P3D65_48nits.a1.1.0
from_scene_reference: !<BuiltinTransform> {style: ACES-OUTPUT - ACES2065-1_to_CIE-XYZ-D65 - SDR-CINEMA_1.0}
- !<ViewTransform>
name: ACES 1.1 - SDR Cinema (D60 sim on D65)
description: |
Component of ACES Output Transforms for SDR D65 cinema simulating D60 white
ACEStransformID: urn:ampas:aces:transformId:v1.5:ODT.Academy.P3D65_D60sim_48nits.a1.1.0
from_scene_reference: !<BuiltinTransform> {style: ACES-OUTPUT - ACES2065-1_to_CIE-XYZ-D65 - SDR-CINEMA-D60sim-D65_1.1}
- !<ViewTransform>
name: ACES 1.1 - SDR Cinema (Rec.709 lim)
description: |
Component of ACES Output Transforms for SDR cinema
ACEStransformID: urn:ampas:aces:transformId:v1.5:ODT.Academy.P3D65_Rec709limited_48nits.a1.1.0
from_scene_reference: !<BuiltinTransform> {style: ACES-OUTPUT - ACES2065-1_to_CIE-XYZ-D65 - SDR-CINEMA-REC709lim_1.1}
- !<ViewTransform>
name: ACES 1.0 - SDR Cinema (D60 sim on DCI)
description: |
Component of ACES Output Transforms for SDR DCI cinema simulating D60 white
ACEStransformID: urn:ampas:aces:transformId:v1.5:ODT.Academy.P3DCI_48nits.a1.0.3
from_scene_reference: !<BuiltinTransform> {style: ACES-OUTPUT - ACES2065-1_to_CIE-XYZ-D65 - SDR-CINEMA-D60sim-DCI_1.0}
- !<ViewTransform>
name: ACES 1.1 - SDR Cinema (D65 sim on DCI)
description: |
Component of ACES Output Transforms for SDR DCI cinema simulating D65 white
ACEStransformID: urn:ampas:aces:transformId:v1.5:ODT.Academy.P3DCI_D65sim_48nits.a1.1.0
from_scene_reference: !<BuiltinTransform> {style: ACES-OUTPUT - ACES2065-1_to_CIE-XYZ-D65 - SDR-CINEMA-D65sim-DCI_1.1}
- !<ViewTransform>
name: ACES 1.1 - HDR Cinema (108 nits & P3 lim)
description: |
Component of ACES Output Transforms for 108 nit HDR D65 cinema
ACEStransformID: urn:ampas:aces:transformId:v1.5:RRTODT.Academy.P3D65_108nits_7point2nits_ST2084.a1.1.0
from_scene_reference: !<BuiltinTransform> {style: ACES-OUTPUT - ACES2065-1_to_CIE-XYZ-D65 - HDR-CINEMA-108nit-7.2nit-P3lim_1.1}
- !<ViewTransform>
name: Un-tone-mapped
from_scene_reference: !<BuiltinTransform> {style: UTILITY - ACES-AP0_to_CIE-XYZ-D65_BFD}
display_colorspaces:
- !<ColorSpace>
name: CIE-XYZ-D65
aliases: [cie_xyz_d65]
family: ""
equalitygroup: ""
bitdepth: 32f
description: The "CIE XYZ (D65)" display connection colorspace.
isdata: false
allocation: uniform
- !<ColorSpace>
name: Apple Display P3 - Display
family: Display
equalitygroup: ""
bitdepth: 32f
description: Convert CIE XYZ (D65 white) to P3-D65 with sRGB piecewise EOTF
isdata: false
categories: [file-io]
encoding: sdr-video
allocation: uniform
from_display_reference: !<GroupTransform>
children:
- !<MatrixTransform> {matrix: [ 2.493496911941426, -0.931383617919124, -0.402710784450717, 0, -0.829488969561575, 1.762664060318346, 0.023624685841944, 0, 0.035845830243784, -0.076172389268042, 0.956884524007687, 0, 0, 0, 0, 1 ]}
- !<ExponentWithLinearTransform> {gamma: 2.4, offset: 0.055, direction: inverse}
- !<ColorSpace>
name: sRGB - Display
aliases: [srgb_display]
family: Display
equalitygroup: ""
bitdepth: 32f
description: Convert CIE XYZ (D65 white) to sRGB (piecewise EOTF)
isdata: false
categories: [file-io]
encoding: sdr-video
allocation: uniform
from_display_reference: !<BuiltinTransform> {style: DISPLAY - CIE-XYZ-D65_to_sRGB}
- !<ColorSpace>
name: Rec.1886 Rec.709 - Display
aliases: [rec1886_rec709_display]
family: Display
equalitygroup: ""
bitdepth: 32f
description: Convert CIE XYZ (D65 white) to Rec.1886/Rec.709 (HD video)
isdata: false
categories: [file-io]
encoding: sdr-video
allocation: uniform
from_display_reference: !<BuiltinTransform> {style: DISPLAY - CIE-XYZ-D65_to_REC.1886-REC.709}
- !<ColorSpace>
name: Rec.1886 Rec.2020 - Display
aliases: [rec1886_rec2020_display]
family: Display
equalitygroup: ""
bitdepth: 32f
description: Convert CIE XYZ (D65 white) to Rec.1886/Rec.2020 (UHD video)
isdata: false
categories: [file-io]
encoding: sdr-video
allocation: uniform
from_display_reference: !<BuiltinTransform> {style: DISPLAY - CIE-XYZ-D65_to_REC.1886-REC.2020}
- !<ColorSpace>
name: Rec.2100-HLG - Display
aliases: [rec2100_hlg_display]
family: Display
equalitygroup: ""
bitdepth: 32f
description: Convert CIE XYZ (D65 white) to Rec.2100-HLG, 1000 nit
isdata: false
categories: [file-io]
encoding: hdr-video
allocation: uniform
from_display_reference: !<BuiltinTransform> {style: DISPLAY - CIE-XYZ-D65_to_REC.2100-HLG-1000nit}
- !<ColorSpace>
name: Rec.2100-PQ - Display
aliases: [rec2100_pq_display]
family: Display
equalitygroup: ""
bitdepth: 32f
description: Convert CIE XYZ (D65 white) to Rec.2100-PQ
isdata: false
categories: [file-io]
encoding: hdr-video
allocation: uniform
from_display_reference: !<BuiltinTransform> {style: DISPLAY - CIE-XYZ-D65_to_REC.2100-PQ}
- !<ColorSpace>
name: ST2084-P3-D65 - Display
aliases: [st2084_p3d65_display]
family: Display
equalitygroup: ""
bitdepth: 32f
description: Convert CIE XYZ (D65 white) to ST-2084 (PQ), P3-D65 primaries
isdata: false
categories: [file-io]
encoding: hdr-video
allocation: uniform
from_display_reference: !<BuiltinTransform> {style: DISPLAY - CIE-XYZ-D65_to_ST2084-P3-D65}
- !<ColorSpace>
name: P3-D60 - Display
aliases: [p3d60_display]
family: Display
equalitygroup: ""
bitdepth: 32f
description: Convert CIE XYZ (D65 white) to Gamma 2.6, P3-D60 (Bradford adaptation)
isdata: false
categories: [file-io]
encoding: sdr-video
allocation: uniform
from_display_reference: !<BuiltinTransform> {style: DISPLAY - CIE-XYZ-D65_to_G2.6-P3-D60-BFD}
- !<ColorSpace>
name: P3-D65 - Display
aliases: [p3d65_display]
family: Display
equalitygroup: ""
bitdepth: 32f
description: Convert CIE XYZ (D65 white) to Gamma 2.6, P3-D65
isdata: false
categories: [file-io]
encoding: sdr-video
allocation: uniform
from_display_reference: !<BuiltinTransform> {style: DISPLAY - CIE-XYZ-D65_to_G2.6-P3-D65}
- !<ColorSpace>
name: P3-DCI - Display
aliases: [p3_dci_display]
family: Display
equalitygroup: ""
bitdepth: 32f
description: Convert CIE XYZ (D65 white) to Gamma 2.6, P3-DCI (DCI white with Bradford adaptation)
isdata: false
categories: [file-io]
encoding: sdr-video
allocation: uniform
from_display_reference: !<BuiltinTransform> {style: DISPLAY - CIE-XYZ-D65_to_G2.6-P3-DCI-BFD}
colorspaces:
- !<ColorSpace>
name: ACES2065-1
aliases: [aces2065_1, ACES - ACES2065-1, lin_ap0]
family: ACES
equalitygroup: ""
bitdepth: 32f
description: The "Academy Color Encoding System" reference colorspace.
isdata: false
categories: [file-io]
encoding: scene-linear
allocation: uniform
- !<ColorSpace>
name: ACEScc
aliases: [ACES - ACEScc, acescc_ap1]
family: ACES
equalitygroup: ""
bitdepth: 32f
description: |
Convert ACEScc to ACES2065-1
ACEStransformID: urn:ampas:aces:transformId:v1.5:ACEScsc.Academy.ACEScc_to_ACES.a1.0.3
isdata: false
categories: [file-io]
encoding: log
allocation: uniform
to_scene_reference: !<BuiltinTransform> {style: ACEScc_to_ACES2065-1}
- !<ColorSpace>
name: ACEScct
aliases: [ACES - ACEScct, acescct_ap1]
family: ACES
equalitygroup: ""
bitdepth: 32f
description: |
Convert ACEScct to ACES2065-1
ACEStransformID: urn:ampas:aces:transformId:v1.5:ACEScsc.Academy.ACEScct_to_ACES.a1.0.3
isdata: false
categories: [file-io, working-space]
encoding: log
allocation: uniform
to_scene_reference: !<BuiltinTransform> {style: ACEScct_to_ACES2065-1}
- !<ColorSpace>
name: ACEScg
aliases: [ACES - ACEScg, lin_ap1]
family: ACES
equalitygroup: ""
bitdepth: 32f
description: |
Convert ACEScg to ACES2065-1
ACEStransformID: urn:ampas:aces:transformId:v1.5:ACEScsc.Academy.ACEScg_to_ACES.a1.0.3
isdata: false
categories: [file-io, working-space]
encoding: scene-linear
allocation: uniform
to_scene_reference: !<BuiltinTransform> {style: ACEScg_to_ACES2065-1}
- !<ColorSpace>
name: ADX10
aliases: [Input - ADX - ADX10]
family: ACES
equalitygroup: ""
bitdepth: 32f
description: |
Convert ADX10 to ACES2065-1
ACEStransformID: urn:ampas:aces:transformId:v1.5:ACEScsc.Academy.ADX10_to_ACES.a1.0.3
isdata: false
categories: [file-io]
encoding: log
allocation: uniform
to_scene_reference: !<BuiltinTransform> {style: ADX10_to_ACES2065-1}
- !<ColorSpace>
name: ADX16
aliases: [Input - ADX - ADX16]
family: ACES
equalitygroup: ""
bitdepth: 32f
description: |
Convert ADX16 to ACES2065-1
ACEStransformID: urn:ampas:aces:transformId:v1.5:ACEScsc.Academy.ADX16_to_ACES.a1.0.3
isdata: false
categories: [file-io]
encoding: log
allocation: uniform
to_scene_reference: !<BuiltinTransform> {style: ADX16_to_ACES2065-1}
- !<ColorSpace>
name: Linear ARRI Wide Gamut 3
aliases: [lin_arri_wide_gamut_3, Input - ARRI - Linear - ALEXA Wide Gamut, lin_alexawide]
family: Input/ARRI
equalitygroup: ""
bitdepth: 32f
description: |
Convert Linear ARRI Wide Gamut 3 to ACES2065-1
CLFtransformID: urn:aswf:ocio:transformId:1.0:ARRI:Input:Linear_ARRI_Wide_Gamut_3_to_ACES2065-1:1.0
isdata: false
categories: [file-io]
encoding: scene-linear
allocation: uniform
to_scene_reference: !<GroupTransform>
name: Linear ARRI Wide Gamut 3 to ACES2065-1
children:
- !<MatrixTransform> {matrix: [0.680205505106279, 0.236136601606481, 0.0836578932872399, 0, 0.0854149797421404, 1.01747087860704, -0.102885858349182, 0, 0.00205652166929683, -0.0625625003847921, 1.0605059787155, 0, 0, 0, 0, 1]}
- !<ColorSpace>
name: ARRI LogC3 (EI800)
aliases: [arri_logc3_ei800, Input - ARRI - V3 LogC (EI800) - Wide Gamut, logc3ei800_alexawide]
family: Input/ARRI
equalitygroup: ""
bitdepth: 32f
description: |
Convert ARRI LogC3 (EI800) to ACES2065-1
CLFtransformID: urn:aswf:ocio:transformId:1.0:ARRI:Input:ARRI_LogC3_EI800_to_ACES2065-1:1.0
isdata: false
categories: [file-io]
encoding: log
allocation: uniform
to_scene_reference: !<GroupTransform>
name: ARRI LogC3 (EI800) to ACES2065-1
children:
- !<LogCameraTransform> {base: 10, log_side_slope: 0.247189638318671, log_side_offset: 0.385536998692443, lin_side_slope: 5.55555555555556, lin_side_offset: 0.0522722750251688, lin_side_break: 0.0105909904954696, direction: inverse}
- !<MatrixTransform> {matrix: [0.680205505106279, 0.236136601606481, 0.0836578932872399, 0, 0.0854149797421404, 1.01747087860704, -0.102885858349182, 0, 0.00205652166929683, -0.0625625003847921, 1.0605059787155, 0, 0, 0, 0, 1]}
- !<ColorSpace>
name: Linear ARRI Wide Gamut 4
aliases: [lin_arri_wide_gamut_4, lin_awg4]
family: Input/ARRI
equalitygroup: ""
bitdepth: 32f
description: |
Convert Linear ARRI Wide Gamut 4 to ACES2065-1
CLFtransformID: urn:aswf:ocio:transformId:1.0:ARRI:Input:Linear_ARRI_Wide_Gamut_4_to_ACES2065-1:1.0
isdata: false
categories: [file-io]
encoding: scene-linear
allocation: uniform
to_scene_reference: !<GroupTransform>
name: Linear ARRI Wide Gamut 4 to ACES2065-1
children:
- !<MatrixTransform> {matrix: [0.750957362824734, 0.144422786709757, 0.104619850465509, 0, 0.000821837079380207, 1.007397584885, -0.00821942196438358, 0, -0.000499952143533471, -0.000854177231436971, 1.00135412937497, 0, 0, 0, 0, 1]}
- !<ColorSpace>
name: ARRI LogC4
aliases: [arri_logc4]
family: Input/ARRI
equalitygroup: ""
bitdepth: 32f
description: |
Convert ARRI LogC4 to ACES2065-1
CLFtransformID: urn:aswf:ocio:transformId:1.0:ARRI:Input:ARRI_LogC4_to_ACES2065-1:1.0
isdata: false
categories: [file-io]
encoding: log
allocation: uniform
to_scene_reference: !<GroupTransform>
name: ARRI LogC4 to ACES2065-1
children:
- !<LogCameraTransform> {log_side_slope: 0.0647954196341293, log_side_offset: -0.295908392682586, lin_side_slope: 2231.82630906769, lin_side_offset: 64, lin_side_break: -0.0180569961199113, direction: inverse}
- !<MatrixTransform> {matrix: [0.750957362824734, 0.144422786709757, 0.104619850465509, 0, 0.000821837079380207, 1.007397584885, -0.00821942196438358, 0, -0.000499952143533471, -0.000854177231436971, 1.00135412937497, 0, 0, 0, 0, 1]}
- !<ColorSpace>
name: BMDFilm WideGamut Gen5
aliases: [bmdfilm_widegamut_gen5]
family: Input/BlackmagicDesign
equalitygroup: ""
bitdepth: 32f
description: |
Convert Blackmagic Film Wide Gamut (Gen 5) to ACES2065-1
CLFtransformID: urn:aswf:ocio:transformId:1.0:BlackmagicDesign:Input:BMDFilm_WideGamut_Gen5_to_ACES2065-1:1.0
isdata: false
categories: [file-io]
encoding: log
allocation: uniform
to_scene_reference: !<GroupTransform>
name: Blackmagic Film Wide Gamut (Gen 5) to ACES2065-1
children:
- !<LogCameraTransform> {base: 2.71828182845905, log_side_slope: 0.0869287606549122, log_side_offset: 0.530013339229194, lin_side_offset: 0.00549407243225781, lin_side_break: 0.005, direction: inverse}
- !<MatrixTransform> {matrix: [0.647091325580708, 0.242595385134207, 0.110313289285085, 0, 0.0651915997328519, 1.02504756760476, -0.0902391673376125, 0, -0.0275570729194699, -0.0805887097177784, 1.10814578263725, 0, 0, 0, 0, 1]}
- !<ColorSpace>
name: DaVinci Intermediate WideGamut
aliases: [davinci_intermediate_widegamut]
family: Input/BlackmagicDesign
equalitygroup: ""
bitdepth: 32f
description: |
Convert DaVinci Intermediate Wide Gamut to ACES2065-1
CLFtransformID: urn:aswf:ocio:transformId:1.0:BlackmagicDesign:Input:DaVinci_Intermediate_WideGamut_to_ACES2065-1:1.0
isdata: false
categories: [file-io]
encoding: log
allocation: uniform
to_scene_reference: !<GroupTransform>
name: DaVinci Intermediate Wide Gamut to ACES2065-1
children:
- !<LogCameraTransform> {log_side_slope: 0.07329248, log_side_offset: 0.51304736, lin_side_offset: 0.0075, lin_side_break: 0.00262409, linear_slope: 10.44426855, direction: inverse}
- !<MatrixTransform> {matrix: [0.748270290272981, 0.167694659554328, 0.0840350501726906, 0, 0.0208421234689102, 1.11190474268894, -0.132746866157851, 0, -0.0915122574225729, -0.127746712807307, 1.21925897022988, 0, 0, 0, 0, 1]}
- !<ColorSpace>
name: Linear BMD WideGamut Gen5
aliases: [lin_bmd_widegamut_gen5]
family: Input/BlackmagicDesign
equalitygroup: ""
bitdepth: 32f
description: |
Convert Linear Blackmagic Wide Gamut (Gen 5) to ACES2065-1
CLFtransformID: urn:aswf:ocio:transformId:1.0:BlackmagicDesign:Input:Linear_BMD_WideGamut_Gen5_to_ACES2065-1:1.0
isdata: false
categories: [file-io]
encoding: scene-linear
allocation: uniform
to_scene_reference: !<GroupTransform>
name: Linear Blackmagic Wide Gamut (Gen 5) to ACES2065-1
children:
- !<MatrixTransform> {matrix: [0.647091325580708, 0.242595385134207, 0.110313289285085, 0, 0.0651915997328519, 1.02504756760476, -0.0902391673376125, 0, -0.0275570729194699, -0.0805887097177784, 1.10814578263725, 0, 0, 0, 0, 1]}
- !<ColorSpace>
name: Linear DaVinci WideGamut
aliases: [lin_davinci_widegamut]
family: Input/BlackmagicDesign
equalitygroup: ""
bitdepth: 32f
description: |
Convert Linear DaVinci Wide Gamut to ACES2065-1
CLFtransformID: urn:aswf:ocio:transformId:1.0:BlackmagicDesign:Input:Linear_DaVinci_WideGamut_to_ACES2065-1:1.0
isdata: false
categories: [file-io]
encoding: scene-linear
allocation: uniform
to_scene_reference: !<GroupTransform>
name: Linear DaVinci Wide Gamut to ACES2065-1
children:
- !<MatrixTransform> {matrix: [0.748270290272981, 0.167694659554328, 0.0840350501726906, 0, 0.0208421234689102, 1.11190474268894, -0.132746866157851, 0, -0.0915122574225729, -0.127746712807307, 1.21925897022988, 0, 0, 0, 0, 1]}
- !<ColorSpace>
name: CanonLog3 CinemaGamut D55
aliases: [canonlog3_cinemagamut_d55, Input - Canon - Canon-Log3 - Cinema Gamut Daylight, canonlog3_cgamutday]
family: Input/Canon
equalitygroup: ""
bitdepth: 32f
description: Convert Canon Log 3 Cinema Gamut to ACES2065-1
isdata: false
categories: [file-io]
encoding: log
allocation: uniform
to_scene_reference: !<BuiltinTransform> {style: CANON_CLOG3-CGAMUT_to_ACES2065-1}
- !<ColorSpace>
name: Linear CinemaGamut D55
aliases: [lin_cinemagamut_d55, Input - Canon - Linear - Canon Cinema Gamut Daylight, lin_canoncgamutday]
family: Input/Canon
equalitygroup: ""
bitdepth: 32f
description: |
Convert Linear Canon Cinema Gamut (Daylight) to ACES2065-1
CLFtransformID: urn:aswf:ocio:transformId:1.0:Canon:Input:Linear-CinemaGamut-D55_to_ACES2065-1:1.0
isdata: false
categories: [file-io]
encoding: scene-linear
allocation: uniform
to_scene_reference: !<GroupTransform>
name: Linear Canon Cinema Gamut (Daylight) to ACES2065-1
children:
- !<MatrixTransform> {matrix: [0.763064454775734, 0.14902116113706, 0.0879143840872056, 0, 0.00365745670512393, 1.10696038037622, -0.110617837081339, 0, -0.0094077940457189, -0.218383304989987, 1.22779109903571, 0, 0, 0, 0, 1]}
- !<ColorSpace>
name: Linear V-Gamut
aliases: [lin_vgamut, Input - Panasonic - Linear - V-Gamut]
family: Input/Panasonic
equalitygroup: ""
bitdepth: 32f
description: |
Convert Linear Panasonic V-Gamut to ACES2065-1
CLFtransformID: urn:aswf:ocio:transformId:1.0:Panasonic:Input:Linear_VGamut_to_ACES2065-1:1.0
isdata: false
categories: [file-io]
encoding: scene-linear
allocation: uniform
to_scene_reference: !<GroupTransform>
name: Linear Panasonic V-Gamut to ACES2065-1
children:
- !<MatrixTransform> {matrix: [0.72461670413153, 0.166915288193706, 0.108468007674764, 0, 0.021390245413146, 0.984908155703054, -0.00629840111620089, 0, -0.00923556287076561, -0.00105690563900513, 1.01029246850977, 0, 0, 0, 0, 1]}
- !<ColorSpace>
name: V-Log V-Gamut
aliases: [vlog_vgamut, Input - Panasonic - V-Log - V-Gamut]
family: Input/Panasonic
equalitygroup: ""
bitdepth: 32f
description: |
Convert Panasonic V-Log - V-Gamut to ACES2065-1
CLFtransformID: urn:aswf:ocio:transformId:1.0:Panasonic:Input:VLog_VGamut_to_ACES2065-1:1.0
isdata: false
categories: [file-io]
encoding: log
allocation: uniform
to_scene_reference: !<GroupTransform>
name: Panasonic V-Log - V-Gamut to ACES2065-1
children:
- !<LogCameraTransform> {base: 10, log_side_slope: 0.241514, log_side_offset: 0.598206, lin_side_offset: 0.00873, lin_side_break: 0.01, direction: inverse}
- !<MatrixTransform> {matrix: [0.72461670413153, 0.166915288193706, 0.108468007674764, 0, 0.021390245413146, 0.984908155703054, -0.00629840111620089, 0, -0.00923556287076561, -0.00105690563900513, 1.01029246850977, 0, 0, 0, 0, 1]}
- !<ColorSpace>
name: Linear REDWideGamutRGB
aliases: [lin_redwidegamutrgb, Input - RED - Linear - REDWideGamutRGB, lin_rwg]
family: Input/RED
equalitygroup: ""
bitdepth: 32f
description: |
Convert Linear REDWideGamutRGB to ACES2065-1
CLFtransformID: urn:aswf:ocio:transformId:1.0:RED:Input:Linear_REDWideGamutRGB_to_ACES2065-1:1.0
isdata: false
categories: [file-io]
encoding: scene-linear
allocation: uniform
to_scene_reference: !<GroupTransform>
name: Linear REDWideGamutRGB to ACES2065-1
children:
- !<MatrixTransform> {matrix: [0.785058804068092, 0.0838587565440846, 0.131082439387823, 0, 0.0231738348454756, 1.08789754919233, -0.111071384037806, 0, -0.0737604353682082, -0.314590072290208, 1.38835050765842, 0, 0, 0, 0, 1]}
- !<ColorSpace>
name: Log3G10 REDWideGamutRGB
aliases: [log3g10_redwidegamutrgb, Input - RED - REDLog3G10 - REDWideGamutRGB, rl3g10_rwg]
family: Input/RED
equalitygroup: ""
bitdepth: 32f
description: |
Convert RED Log3G10 REDWideGamutRGB to ACES2065-1
CLFtransformID: urn:aswf:ocio:transformId:1.0:RED:Input:Log3G10_REDWideGamutRGB_to_ACES2065-1:1.0
isdata: false
categories: [file-io]
encoding: log
allocation: uniform
to_scene_reference: !<GroupTransform>
name: RED Log3G10 REDWideGamutRGB to ACES2065-1
children:
- !<LogCameraTransform> {base: 10, log_side_slope: 0.224282, lin_side_slope: 155.975327, lin_side_offset: 2.55975327, lin_side_break: -0.01, direction: inverse}
- !<MatrixTransform> {matrix: [0.785058804068092, 0.0838587565440846, 0.131082439387823, 0, 0.0231738348454756, 1.08789754919233, -0.111071384037806, 0, -0.0737604353682082, -0.314590072290208, 1.38835050765842, 0, 0, 0, 0, 1]}
- !<ColorSpace>
name: Linear S-Gamut3
aliases: [lin_sgamut3, Input - Sony - Linear - S-Gamut3]
family: Input/Sony
equalitygroup: ""
bitdepth: 32f
description: |
Convert Linear S-Gamut3 to ACES2065-1
CLFtransformID: urn:aswf:ocio:transformId:1.0:Sony:Input:Linear_SGamut3_to_ACES2065-1:1.0
isdata: false
categories: [file-io]
encoding: scene-linear
allocation: uniform
to_scene_reference: !<GroupTransform>
name: Linear S-Gamut3 to ACES2065-1
children:
- !<MatrixTransform> {matrix: [0.75298259539984, 0.143370216235557, 0.103647188364603, 0, 0.0217076974414429, 1.01531883550528, -0.0370265329467195, 0, -0.00941605274963355, 0.00337041785882367, 1.00604563489081, 0, 0, 0, 0, 1]}
- !<ColorSpace>
name: Linear S-Gamut3.Cine
aliases: [lin_sgamut3cine, Input - Sony - Linear - S-Gamut3.Cine]
family: Input/Sony
equalitygroup: ""
bitdepth: 32f
description: |
Convert Linear S-Gamut3.Cine to ACES2065-1
CLFtransformID: urn:aswf:ocio:transformId:1.0:Sony:Input:Linear_SGamut3Cine_to_ACES2065-1:1.0
isdata: false
categories: [file-io]
encoding: scene-linear
allocation: uniform
to_scene_reference: !<GroupTransform>
name: Linear S-Gamut3.Cine to ACES2065-1
children:
- !<MatrixTransform> {matrix: [0.638788667185978, 0.272351433711262, 0.0888598991027595, 0, -0.00391590602528224, 1.0880732308974, -0.0841573248721177, 0, -0.0299072021239151, -0.0264325799101947, 1.05633978203411, 0, 0, 0, 0, 1]}
- !<ColorSpace>
name: Linear Venice S-Gamut3
aliases: [lin_venice_sgamut3, Input - Sony - Linear - Venice S-Gamut3]
family: Input/Sony
equalitygroup: ""
bitdepth: 32f
description: |
Convert Linear Venice S-Gamut3 to ACES2065-1
CLFtransformID: urn:aswf:ocio:transformId:1.0:Sony:Input:Linear_Venice_SGamut3_to_ACES2065-1:1.0
isdata: false
categories: [file-io]
encoding: scene-linear
allocation: uniform
to_scene_reference: !<GroupTransform>
name: Linear Venice S-Gamut3 to ACES2065-1
children:
- !<MatrixTransform> {matrix: [0.793329741146434, 0.0890786256206771, 0.117591633232888, 0, 0.0155810585252582, 1.03271230692988, -0.0482933654551394, 0, -0.0188647477991488, 0.0127694120973433, 1.0060953357018, 0, 0, 0, 0, 1]}
- !<ColorSpace>
name: Linear Venice S-Gamut3.Cine
aliases: [lin_venice_sgamut3cine, Input - Sony - Linear - Venice S-Gamut3.Cine]
family: Input/Sony
equalitygroup: ""
bitdepth: 32f
description: |
Convert Linear Venice S-Gamut3.Cine to ACES2065-1
CLFtransformID: urn:aswf:ocio:transformId:1.0:Sony:Input:Linear_Venice_SGamut3Cine_to_ACES2065-1:1.0
isdata: false
categories: [file-io]
encoding: scene-linear
allocation: uniform
to_scene_reference: !<GroupTransform>
name: Linear Venice S-Gamut3.Cine to ACES2065-1
children:
- !<MatrixTransform> {matrix: [0.674257092126512, 0.220571735923397, 0.10517117195009, 0, -0.00931360607857167, 1.10595886142466, -0.0966452553460855, 0, -0.0382090673002312, -0.017938376600236, 1.05614744390047, 0, 0, 0, 0, 1]}
- !<ColorSpace>
name: S-Log3 S-Gamut3
aliases: [slog3_sgamut3, Input - Sony - S-Log3 - S-Gamut3]
family: Input/Sony
equalitygroup: ""
bitdepth: 32f
description: |
Convert Sony S-Log3 S-Gamut3 to ACES2065-1
CLFtransformID: urn:aswf:ocio:transformId:1.0:Sony:Input:SLog3_SGamut3_to_ACES2065-1:1.0
isdata: false
categories: [file-io]
encoding: log
allocation: uniform
to_scene_reference: !<GroupTransform>
name: Sony S-Log3 S-Gamut3 to ACES2065-1
children:
- !<LogCameraTransform> {base: 10, log_side_slope: 0.255620723362659, log_side_offset: 0.410557184750733, lin_side_slope: 5.26315789473684, lin_side_offset: 0.0526315789473684, lin_side_break: 0.01125, linear_slope: 6.62194371177582, direction: inverse}
- !<MatrixTransform> {matrix: [0.75298259539984, 0.143370216235557, 0.103647188364603, 0, 0.0217076974414429, 1.01531883550528, -0.0370265329467195, 0, -0.00941605274963355, 0.00337041785882367, 1.00604563489081, 0, 0, 0, 0, 1]}
- !<ColorSpace>
name: S-Log3 S-Gamut3.Cine
aliases: [slog3_sgamut3cine, Input - Sony - S-Log3 - S-Gamut3.Cine, slog3_sgamutcine]
family: Input/Sony
equalitygroup: ""
bitdepth: 32f
description: |
Convert Sony S-Log3 S-Gamut3.Cine to ACES2065-1
CLFtransformID: urn:aswf:ocio:transformId:1.0:Sony:Input:SLog3_SGamut3Cine_to_ACES2065-1:1.0
isdata: false
categories: [file-io]
encoding: log
allocation: uniform
to_scene_reference: !<GroupTransform>
name: Sony S-Log3 S-Gamut3.Cine to ACES2065-1
children:
- !<LogCameraTransform> {base: 10, log_side_slope: 0.255620723362659, log_side_offset: 0.410557184750733, lin_side_slope: 5.26315789473684, lin_side_offset: 0.0526315789473684, lin_side_break: 0.01125, linear_slope: 6.62194371177582, direction: inverse}
- !<MatrixTransform> {matrix: [0.638788667185978, 0.272351433711262, 0.0888598991027595, 0, -0.00391590602528224, 1.0880732308974, -0.0841573248721177, 0, -0.0299072021239151, -0.0264325799101947, 1.05633978203411, 0, 0, 0, 0, 1]}
- !<ColorSpace>
name: S-Log3 Venice S-Gamut3
aliases: [slog3_venice_sgamut3, Input - Sony - S-Log3 - Venice S-Gamut3]
family: Input/Sony
equalitygroup: ""
bitdepth: 32f
description: |
Convert Sony S-Log3 Venice S-Gamut3 to ACES2065-1
CLFtransformID: urn:aswf:ocio:transformId:1.0:Sony:Input:SLog3_Venice_SGamut3_to_ACES2065-1:1.0
isdata: false
categories: [file-io]
encoding: log
allocation: uniform
to_scene_reference: !<GroupTransform>
name: Sony S-Log3 Venice S-Gamut3 to ACES2065-1
children:
- !<LogCameraTransform> {base: 10, log_side_slope: 0.255620723362659, log_side_offset: 0.410557184750733, lin_side_slope: 5.26315789473684, lin_side_offset: 0.0526315789473684, lin_side_break: 0.01125, linear_slope: 6.62194371177582, direction: inverse}
- !<MatrixTransform> {matrix: [0.793329741146434, 0.089078625620677, 0.117591633232888, 0, 0.0155810585252582, 1.03271230692988, -0.0482933654551394, 0, -0.0188647477991488, 0.0127694120973433, 1.00609533570181, 0, 0, 0, 0, 1]}
- !<ColorSpace>
name: S-Log3 Venice S-Gamut3.Cine
aliases: [slog3_venice_sgamut3cine, Input - Sony - S-Log3 - Venice S-Gamut3.Cine, slog3_venice_sgamutcine]
family: Input/Sony
equalitygroup: ""
bitdepth: 32f
description: |
Convert Sony S-Log3 Venice S-Gamut3.Cine to ACES2065-1
CLFtransformID: urn:aswf:ocio:transformId:1.0:Sony:Input:SLog3_Venice_SGamut3Cine_to_ACES2065-1:1.0
isdata: false
categories: [file-io]
encoding: log
allocation: uniform
to_scene_reference: !<GroupTransform>
name: Sony S-Log3 Venice S-Gamut3.Cine to ACES2065-1
children:
- !<LogCameraTransform> {base: 10, log_side_slope: 0.255620723362659, log_side_offset: 0.410557184750733, lin_side_slope: 5.26315789473684, lin_side_offset: 0.0526315789473684, lin_side_break: 0.01125, linear_slope: 6.62194371177582, direction: inverse}
- !<MatrixTransform> {matrix: [0.674257092126512, 0.220571735923397, 0.10517117195009, 0, -0.00931360607857167, 1.10595886142466, -0.0966452553460855, 0, -0.0382090673002312, -0.017938376600236, 1.05614744390047, 0, 0, 0, 0, 1]}
- !<ColorSpace>
name: Camera Rec.709
aliases: [camera_rec709, Utility - Rec.709 - Camera, rec709_camera]
family: Utility/ITU
equalitygroup: ""
bitdepth: 32f
description: |
Convert ACES2065-1 to Rec.709 camera OETF Rec.709 primaries, D65 white point
CLFtransformID: urn:aswf:ocio:transformId:1.0:ITU:Utility:AP0_to_Camera_Rec709:1.0
isdata: false
categories: [file-io]
encoding: sdr-video
allocation: uniform
from_scene_reference: !<GroupTransform>
name: AP0 to Camera Rec.709
children:
- !<MatrixTransform> {matrix: [2.52168618674388, -1.13413098823972, -0.387555198504164, 0, -0.276479914229922, 1.37271908766826, -0.096239173438334, 0, -0.0153780649660342, -0.152975335867399, 1.16835340083343, 0, 0, 0, 0, 1]}
- !<ExponentWithLinearTransform> {gamma: 2.22222222222222, offset: 0.099, direction: inverse}
- !<ColorSpace>
name: Linear P3-D65
aliases: [lin_p3d65, Utility - Linear - P3-D65]
family: Utility
equalitygroup: ""
bitdepth: 32f
description: |
Convert ACES2065-1 to linear P3 primaries, D65 white point
CLFtransformID: urn:aswf:ocio:transformId:1.0:OCIO:Utility:AP0_to_Linear_P3-D65:1.0
isdata: false
categories: [file-io, working-space]
encoding: scene-linear
allocation: uniform
from_scene_reference: !<GroupTransform>
name: AP0 to Linear P3-D65
children:
- !<MatrixTransform> {matrix: [2.02490528596679, -0.689069761034766, -0.335835524932019, 0, -0.183597032256178, 1.28950620775902, -0.105909175502841, 0, 0.00905856112234766, -0.0592796840575522, 1.0502211229352, 0, 0, 0, 0, 1]}
- !<ColorSpace>
name: Linear Rec.2020
aliases: [lin_rec2020, Utility - Linear - Rec.2020]
family: Utility
equalitygroup: ""
bitdepth: 32f
description: |
Convert ACES2065-1 to linear Rec.2020 primaries, D65 white point
CLFtransformID: urn:aswf:ocio:transformId:1.0:OCIO:Utility:AP0_to_Linear_Rec2020:1.0
isdata: false
categories: [file-io]
encoding: scene-linear
allocation: uniform
from_scene_reference: !<GroupTransform>
name: AP0 to Linear Rec.2020
children:
- !<MatrixTransform> {matrix: [1.49040952054172, -0.26617091926613, -0.224238601275593, 0, -0.0801674998722558, 1.18216712109757, -0.10199962122531, 0, 0.00322763119162216, -0.0347764757450576, 1.03154884455344, 0, 0, 0, 0, 1]}
- !<ColorSpace>
name: Linear Rec.709 (sRGB)
aliases: [lin_rec709_srgb, Utility - Linear - Rec.709, lin_rec709, lin_srgb, Utility - Linear - sRGB]
family: Utility
equalitygroup: ""
bitdepth: 32f
description: |
Convert ACES2065-1 to linear Rec.709 primaries, D65 white point
CLFtransformID: urn:aswf:ocio:transformId:1.0:OCIO:Utility:AP0_to_Linear_Rec709:1.0
isdata: false
categories: [file-io, working-space]
encoding: scene-linear
allocation: uniform
from_scene_reference: !<GroupTransform>
name: AP0 to Linear Rec.709 (sRGB)
children:
- !<MatrixTransform> {matrix: [2.52168618674388, -1.13413098823972, -0.387555198504164, 0, -0.276479914229922, 1.37271908766826, -0.096239173438334, 0, -0.0153780649660342, -0.152975335867399, 1.16835340083343, 0, 0, 0, 0, 1]}
- !<ColorSpace>
name: Gamma 1.8 Rec.709 - Texture
aliases: [g18_rec709_tx, Utility - Gamma 1.8 - Rec.709 - Texture, g18_rec709]
family: Utility
equalitygroup: ""
bitdepth: 32f
description: |
Convert ACES2065-1 to 1.8 gamma-corrected Rec.709 primaries, D65 white point
CLFtransformID: urn:aswf:ocio:transformId:1.0:OCIO:Utility:AP0_to_Gamma1.8_Rec709-Texture:1.0
isdata: false
categories: [file-io]
encoding: sdr-video
allocation: uniform
from_scene_reference: !<GroupTransform>
name: AP0 to Gamma 1.8 Rec.709 - Texture
children:
- !<MatrixTransform> {matrix: [2.52168618674388, -1.13413098823972, -0.387555198504164, 0, -0.276479914229922, 1.37271908766826, -0.096239173438334, 0, -0.0153780649660342, -0.152975335867399, 1.16835340083343, 0, 0, 0, 0, 1]}
- !<ExponentTransform> {value: 1.8, style: pass_thru, direction: inverse}
- !<ColorSpace>
name: Gamma 2.2 AP1 - Texture
aliases: [g22_ap1_tx, g22_ap1]
family: Utility
equalitygroup: ""
bitdepth: 32f
description: |
Convert ACES2065-1 to 2.2 gamma-corrected AP1 primaries, D60 white point