-
Notifications
You must be signed in to change notification settings - Fork 1
/
nukeZCAM_render_v007.nk
26744 lines (26744 loc) · 846 KB
/
nukeZCAM_render_v007.nk
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
#! /Applications/Nuke13.0v3/Nuke13.0v3.app/Contents/MacOS/libnuke-13.0.3.dylib -nx
#write_info Write33 file:"/Users/afry/Working/ZCAMishDRTv06_vs_v001/ZCAMishDRTv06_vs_v001.%04d.jpg" format:"3840 2160 1" chans:":rgba.red:rgba.green:rgba.blue:" framerange:"1 200" fps:"0" colorspace:"texture_paint" datatype:"8 bit" transfer:"unknown" views:"main" colorManagement:"Nuke"
version 13.0 v3
define_window_layout_xml {<?xml version="1.0" encoding="UTF-8"?>
<layout version="1.0">
<window x="448" y="64" w="2305" h="1437" screen="0">
<splitter orientation="1">
<split size="40"/>
<dock id="" hideTitles="1" activePageId="Toolbar.1">
<page id="Toolbar.1"/>
</dock>
<split size="1291" stretch="1"/>
<splitter orientation="2">
<split size="832"/>
<dock id="" activePageId="Viewer.1" focus="true">
<page id="Viewer.1"/>
</dock>
<split size="585"/>
<dock id="" activePageId="DAG.1">
<page id="DAG.1"/>
<page id="Curve Editor.1"/>
<page id="DopeSheet.1"/>
</dock>
</splitter>
<split size="966"/>
<dock id="" activePageId="Properties.1">
<page id="Properties.1"/>
<page id="uk.co.thefoundry.backgroundrenderview.1"/>
</dock>
</splitter>
</window>
</layout>
}
Root {
inputs 0
name /Users/afry/GitHub/nukeZCAM/nukeZCAM_render_v007.nk
mapsize {0.1093260188 0.09103641457}
frame 3241
last_frame 200
lock_range true
format "2048 1556 0 0 2048 1556 1 2K_Super_35(full-ap)"
proxy_type scale
proxy_format "1024 778 0 0 1024 778 1 1K_Super_35(full-ap)"
colorManagement Nuke
OCIO_config custom
customOCIOConfigPath /Users/afry/Documents/GitHub/OpenColorIO-Configs/aces_1.2/config.ocio
workingSpaceLUT linear
monitorLut sRGB
monitorOutLUT rec709
int8Lut sRGB
int16Lut sRGB
logLut Cineon
floatLut linear
}
BackdropNode {
inputs 0
name BackdropNode3
tile_color 0x7171c600
note_font_size 42
xpos 711
ypos -373
bdwidth 103
bdheight 112
}
Read {
inputs 0
file_type exr
file /Users/afry/Documents/ACES/images/ACES/SonyF35.StillLife.exr
format "1920 1080 0 0 1920 1080 1 HD_1080"
origset true
name Read146
xpos 19644
ypos -911
}
Group {
name ExpRampOverTime84
label "\[value from] to \[value to] Stops\nframes \[value startFrame] to \[value endFrame]"
xpos 19644
ypos -831
addUserKnob {20 User}
addUserKnob {3 from}
from -5
addUserKnob {3 to -STARTLINE}
to 5
addUserKnob {3 startFrame}
startFrame 1
addUserKnob {3 endFrame -STARTLINE}
endFrame 51
addUserKnob {26 ""}
addUserKnob {41 red T Exposure11.red}
}
Input {
inputs 0
name Input1
xpos 676
ypos -320
}
EXPTool {
mode Stops
red {{"(frame-1)/(abs(parent.startFrame-parent.endFrame)/abs(parent.from-parent.to))+parent.from "}}
green {{red}}
blue {{red}}
name Exposure11
selected true
xpos 676
ypos -280
}
FrameRange {
first_frame {{parent.startFrame}}
last_frame {{parent.endFrame}}
time ""
name FrameRange1
xpos 676
ypos -256
}
Output {
name Output1
xpos 676
ypos -180
}
end_group
Read {
inputs 0
file_type dpx
file /Users/afry/Downloads/KODAK-Digital-LAD-Test-Image-DPX-Format/Digital_LAD_4096x3112.dpx
format "4096 3112 0 0 4096 3112 1 4K_Super_35(full-ap)"
origset true
name Read147
xpos 19496
ypos -915
}
Colorspace {
primary_out ACES
name Colorspace63
xpos 19496
ypos -835
}
Group {
name ExpRampOverTime83
label "\[value from] to \[value to] Stops\nframes \[value startFrame] to \[value endFrame]"
xpos 19496
ypos -811
addUserKnob {20 User}
addUserKnob {3 from}
from -5
addUserKnob {3 to -STARTLINE}
to 5
addUserKnob {3 startFrame}
startFrame 1
addUserKnob {3 endFrame -STARTLINE}
endFrame 51
addUserKnob {26 ""}
addUserKnob {41 red T Exposure11.red}
}
Input {
inputs 0
name Input1
xpos 676
ypos -320
}
EXPTool {
mode Stops
red {{"(frame-1)/(abs(parent.startFrame-parent.endFrame)/abs(parent.from-parent.to))+parent.from "}}
green {{red}}
blue {{red}}
name Exposure11
selected true
xpos 676
ypos -280
}
FrameRange {
first_frame {{parent.startFrame}}
last_frame {{parent.endFrame}}
time ""
name FrameRange1
xpos 676
ypos -256
}
Output {
name Output1
xpos 676
ypos -180
}
end_group
Read {
inputs 0
file_type exr
file /Users/afry/Documents/ACES/images/ACES/DigitalLAD.2048x1556.exr
format "2048 1556 0 0 2048 1556 1 2K_Super_35(full-ap)"
origset true
name Read145
xpos 19358
ypos -923
}
Group {
name ExpRampOverTime82
label "\[value from] to \[value to] Stops\nframes \[value startFrame] to \[value endFrame]"
xpos 19358
ypos -843
addUserKnob {20 User}
addUserKnob {3 from}
from -5
addUserKnob {3 to -STARTLINE}
to 5
addUserKnob {3 startFrame}
startFrame 1
addUserKnob {3 endFrame -STARTLINE}
endFrame 51
addUserKnob {26 ""}
addUserKnob {41 red T Exposure11.red}
}
Input {
inputs 0
name Input1
xpos 676
ypos -320
}
EXPTool {
mode Stops
red {{"(frame-1)/(abs(parent.startFrame-parent.endFrame)/abs(parent.from-parent.to))+parent.from "}}
green {{red}}
blue {{red}}
name Exposure11
selected true
xpos 676
ypos -280
}
FrameRange {
first_frame {{parent.startFrame}}
last_frame {{parent.endFrame}}
time ""
name FrameRange1
xpos 676
ypos -256
}
Output {
name Output1
xpos 676
ypos -180
}
end_group
push 0
Read {
inputs 0
file_type exr
file /Users/afry/Downloads/HdM-HDR-2014_Original-HDR-Camera-Footage/smith_hammering/smith_hammering_######.exr
format "1920 1080 0 0 1920 1080 1 HD_1080"
first 448
last 914
origfirst 448
origlast 914
origset true
name Read134
xpos 19105
ypos -926
}
OCIOColorSpace {
in_colorspace "Input - ARRI - Linear - ALEXA Wide Gamut"
out_colorspace "ACES - ACES2065-1"
name OCIOColorSpace73
xpos 19105
ypos -846
}
push 0
Read {
inputs 0
file_type exr
file /Users/afry/Downloads/HdM-HDR-2014_Original-HDR-Camera-Footage/showgirl_02/showgirl_02_######.exr
format "1920 1080 0 0 1920 1080 1 HD_1080"
first 348
last 688
origfirst 348
origlast 688
origset true
name Read132
xpos 18820
ypos -932
}
OCIOColorSpace {
in_colorspace "Input - ARRI - Linear - ALEXA Wide Gamut"
out_colorspace "ACES - ACES2065-1"
name OCIOColorSpace71
xpos 18820
ypos -852
}
Read {
inputs 0
file_type exr
file /Users/afry/Downloads/HdM-HDR-2014_Original-HDR-Camera-Footage/showgirl_01/showgirl_01_######.exr
format "1920 1080 0 0 1920 1080 1 HD_1080"
first 183
last 958
origfirst 183
origlast 958
origset true
name Read131
xpos 18693
ypos -928
}
OCIOColorSpace {
in_colorspace "Input - ARRI - Linear - ALEXA Wide Gamut"
out_colorspace "ACES - ACES2065-1"
name OCIOColorSpace70
xpos 18698
ypos -849
}
Read {
inputs 0
file_type exr
file /Users/afry/Downloads/HdM-HDR-2014_Original-HDR-Camera-Footage/showgirl_01/showgirl_01_######.exr
format "1920 1080 0 0 1920 1080 1 HD_1080"
first 183
last 958
origfirst 183
origlast 958
origset true
name Read130
xpos 18576
ypos -930
}
OCIOColorSpace {
in_colorspace "Input - ARRI - Linear - ALEXA Wide Gamut"
out_colorspace "ACES - ACES2065-1"
name OCIOColorSpace69
xpos 18576
ypos -850
}
Read {
inputs 0
file_type exr
file /Users/afry/Downloads/HdM-HDR-2014_Original-HDR-Camera-Footage/poker_travelling_slowmotion/poker_travelling_slowmotion_######.exr
format "1920 1080 0 0 1920 1080 1 HD_1080"
first 1034
last 2980
origfirst 1034
origlast 2980
origset true
name Read129
xpos 18397
ypos -927
}
OCIOColorSpace {
in_colorspace "Input - ARRI - Linear - ALEXA Wide Gamut"
out_colorspace "ACES - ACES2065-1"
name OCIOColorSpace68
xpos 18397
ypos -847
}
Read {
inputs 0
file_type exr
file /Users/afry/Downloads/HdM-HDR-2014_Original-HDR-Camera-Footage/poker_fullshot/poker_fullshot_######.exr
format "1920 1080 0 0 1920 1080 1 HD_1080"
first 370
last 969
origfirst 370
origlast 969
origset true
name Read128
xpos 18277
ypos -927
}
OCIOColorSpace {
in_colorspace "Input - ARRI - Linear - ALEXA Wide Gamut"
out_colorspace "ACES - ACES2065-1"
name OCIOColorSpace67
xpos 18277
ypos -847
}
Read {
inputs 0
file_type exr
file /Users/afry/Downloads/HdM-HDR-2014_Original-HDR-Camera-Footage/hdr_testimage/hdr_testimage_######.exr
format "1920 1080 0 0 1920 1080 1 HD_1080"
first 1020
last 1499
origfirst 1020
origlast 1499
origset true
name Read124
xpos 18101
ypos -920
}
OCIOColorSpace {
in_colorspace "Input - ARRI - Linear - ALEXA Wide Gamut"
out_colorspace "ACES - ACES2065-1"
name OCIOColorSpace59
xpos 18096
ypos -841
}
Read {
inputs 0
file_type exr
file /Users/afry/Downloads/HdM-HDR-2014_Original-HDR-Camera-Footage/fishing_closeshot/fishing_closeshot_######.exr
format "1920 1080 0 0 1920 1080 1 HD_1080"
first 354
last 724
origfirst 354
origlast 724
origset true
name Read123
xpos 17942
ypos -921
}
OCIOColorSpace {
in_colorspace "Input - ARRI - Linear - ALEXA Wide Gamut"
out_colorspace "ACES - ACES2065-1"
name OCIOColorSpace58
xpos 17942
ypos -841
}
Read {
inputs 0
file_type exr
file /Users/afry/Downloads/HdM-HDR-2014_Original-HDR-Camera-Footage/fireplace_02/fireplace_02_######.exr
format "1920 1080 0 0 1920 1080 1 HD_1080"
first 319
last 779
origfirst 319
origlast 779
origset true
name Read122
xpos 17787
ypos -918
}
OCIOColorSpace {
in_colorspace "Input - ARRI - Linear - ALEXA Wide Gamut"
out_colorspace "ACES - ACES2065-1"
name OCIOColorSpace57
xpos 17787
ypos -838
}
Read {
inputs 0
file_type exr
file /Users/afry/Downloads/HdM-HDR-2014_Original-HDR-Camera-Footage/fireplace_01/fireplace_01_######.exr
format "1920 1080 0 0 1920 1080 1 HD_1080"
first 660
last 1150
origfirst 660
origlast 1150
origset true
name Read121
xpos 17666
ypos -917
}
OCIOColorSpace {
in_colorspace "Input - ARRI - Linear - ALEXA Wide Gamut"
out_colorspace "ACES - ACES2065-1"
name OCIOColorSpace56
xpos 17666
ypos -837
}
push 0
Read {
inputs 0
file_type exr
file /Users/afry/Downloads/HdM-HDR-2014_Original-HDR-Camera-Footage/cars_longshot/cars_longshot_######.exr
format "1920 1080 0 0 1920 1080 1 HD_1080"
first 258
last 1077
origfirst 258
origlast 1077
origset true
name Read119
xpos 17414
ypos -909
}
OCIOColorSpace {
in_colorspace "Input - ARRI - Linear - ALEXA Wide Gamut"
out_colorspace "ACES - ACES2065-1"
name OCIOColorSpace54
xpos 17414
ypos -829
}
Read {
inputs 0
file_type exr
file /Users/afry/Downloads/HdM-HDR-2014_Original-HDR-Camera-Footage/cars_fullshot/cars_fullshot_######.exr
format "1920 1080 0 0 1920 1080 1 HD_1080"
first 350
last 791
origfirst 350
origlast 791
origset true
name Read118
xpos 17285
ypos -909
}
OCIOColorSpace {
in_colorspace "Input - ARRI - Linear - ALEXA Wide Gamut"
out_colorspace "ACES - ACES2065-1"
name OCIOColorSpace53
xpos 17285
ypos -829
}
push 0
Read {
inputs 0
file_type exr
file /Users/afry/Downloads/HdM-HDR-2014_Original-HDR-Camera-Footage/carousel_fireworks_09/carousel_fireworks_09_######.exr
format "1920 1080 0 0 1920 1080 1 HD_1080"
first 3715
last 4242
origfirst 3715
origlast 4242
origset true
name Read116
xpos 17017
ypos -904
}
OCIOColorSpace {
in_colorspace "Input - ARRI - Linear - ALEXA Wide Gamut"
out_colorspace "ACES - ACES2065-1"
name OCIOColorSpace51
xpos 17017
ypos -824
}
push 0
push 0
push 0
Read {
inputs 0
file_type exr
file /Users/afry/Downloads/HdM-HDR-2014_Original-HDR-Camera-Footage/carousel_fireworks_08/carousel_fireworks_08_######.exr
format "1920 1080 0 0 1920 1080 1 HD_1080"
last 339
origlast 339
origset true
name Read112
xpos 16467
ypos -900
}
OCIOColorSpace {
in_colorspace "Input - ARRI - Linear - ALEXA Wide Gamut"
out_colorspace "ACES - ACES2065-1"
name OCIOColorSpace47
xpos 16467
ypos -820
}
Read {
inputs 0
file_type exr
file /Users/afry/Downloads/HdM-HDR-2014_Original-HDR-Camera-Footage/carousel_fireworks_07/carousel_fireworks_07_######.exr
format "1920 1080 0 0 1920 1080 1 HD_1080"
first 128
last 273
origfirst 128
origlast 273
origset true
name Read111
xpos 16331
ypos -899
}
OCIOColorSpace {
in_colorspace "Input - ARRI - Linear - ALEXA Wide Gamut"
out_colorspace "ACES - ACES2065-1"
name OCIOColorSpace46
xpos 16331
ypos -819
}
Read {
inputs 0
file_type exr
file /Users/afry/Downloads/HdM-HDR-2014_Original-HDR-Camera-Footage/carousel_fireworks_06/carousel_fireworks_06_######.exr
format "1920 1080 0 0 1920 1080 1 HD_1080"
first 5034
last 5561
origfirst 5034
origlast 5561
origset true
name Read110
xpos 16208
ypos -898
}
OCIOColorSpace {
in_colorspace "Input - ARRI - Linear - ALEXA Wide Gamut"
out_colorspace "ACES - ACES2065-1"
name OCIOColorSpace45
xpos 16208
ypos -818
}
push 0
push 0
Read {
inputs 0
file_type exr
file /Users/afry/Downloads/HdM-HDR-2014_Original-HDR-Camera-Footage/carousel_fireworks_05/carousel_fireworks_05_######.exr
format "1920 1080 0 0 1920 1080 1 HD_1080"
first 756
last 929
origfirst 756
origlast 929
origset true
name Read107
xpos 15810
ypos -899
}
OCIOColorSpace {
in_colorspace "Input - ARRI - Linear - ALEXA Wide Gamut"
out_colorspace "ACES - ACES2065-1"
name OCIOColorSpace42
xpos 15810
ypos -819
}
push 0
push 0
Read {
inputs 0
file_type exr
file /Users/afry/Downloads/HdM-HDR-2014_Original-HDR-Camera-Footage/carousel_fireworks_04/carousel_fireworks_04_000115.exr
format "1920 1080 0 0 1920 1080 1 HD_1080"
origset true
name Read104
xpos 15460
ypos -896
}
OCIOColorSpace {
in_colorspace "Input - ARRI - Linear - ALEXA Wide Gamut"
out_colorspace "ACES - ACES2065-1"
name OCIOColorSpace39
xpos 15460
ypos -816
}
push 0
Read {
inputs 0
file_type exr
file /Users/afry/Downloads/HdM-HDR-2014_Original-HDR-Camera-Footage/carousel_fireworks_03/carousel_fireworks_03_######.exr
format "1920 1080 0 0 1920 1080 1 HD_1080"
first 348
last 533
origfirst 348
origlast 533
origset true
name Read103
xpos 15223
ypos -898
}
OCIOColorSpace {
in_colorspace "Input - ARRI - Linear - ALEXA Wide Gamut"
out_colorspace "ACES - ACES2065-1"
name OCIOColorSpace37
xpos 15223
ypos -818
}
Read {
inputs 0
file_type exr
file /Users/afry/Downloads/HdM-HDR-2014_Original-HDR-Camera-Footage/carousel_fireworks_02/carousel_fireworks_02_######.exr
format "1920 1080 0 0 1920 1080 1 HD_1080"
first 936
last 1193
origfirst 936
origlast 1193
origset true
name Read101
xpos 15117
ypos -899
}
OCIOColorSpace {
in_colorspace "Input - ARRI - Linear - ALEXA Wide Gamut"
out_colorspace "ACES - ACES2065-1"
name OCIOColorSpace36
xpos 15117
ypos -819
}
Read {
inputs 0
file_type exr
file /Users/afry/Downloads/HdM-HDR-2014_Original-HDR-Camera-Footage/carousel_fireworks_01/carousel_fireworks_01_######.exr
format "1920 1080 0 0 1920 1080 1 HD_1080"
first 1187
last 1625
origfirst 1187
origlast 1625
origset true
name Read100
xpos 14981
ypos -897
}
OCIOColorSpace {
in_colorspace "Input - ARRI - Linear - ALEXA Wide Gamut"
out_colorspace "ACES - ACES2065-1"
name OCIOColorSpace35
xpos 14981
ypos -817
}
Read {
inputs 0
file_type exr
file /Users/afry/Downloads/HdM-HDR-2014_Original-HDR-Camera-Footage/bistro_03/bistro_03_001027.exr
format "1920 1080 0 0 1920 1080 1 HD_1080"
origset true
name Read98
xpos 14867
ypos -900
}
OCIOColorSpace {
in_colorspace "Input - ARRI - Linear - ALEXA Wide Gamut"
out_colorspace "ACES - ACES2065-1"
name OCIOColorSpace34
xpos 14867
ypos -820
}
Group {
name ExpRampOverTime81
label "\[value from] to \[value to] Stops\nframes \[value startFrame] to \[value endFrame]"
xpos 14867
ypos -796
addUserKnob {20 User}
addUserKnob {3 from}
from -5
addUserKnob {3 to -STARTLINE}
to 5
addUserKnob {3 startFrame}
startFrame 1
addUserKnob {3 endFrame -STARTLINE}
endFrame 51
addUserKnob {26 ""}
addUserKnob {41 red T Exposure11.red}
}
Input {
inputs 0
name Input1
xpos 676
ypos -320
}
EXPTool {
mode Stops
red {{"(frame-1)/(abs(parent.startFrame-parent.endFrame)/abs(parent.from-parent.to))+parent.from "}}
green {{red}}
blue {{red}}
name Exposure11
selected true
xpos 676
ypos -280
}
FrameRange {
first_frame {{parent.startFrame}}
last_frame {{parent.endFrame}}
time ""
name FrameRange1
xpos 676
ypos -256
}
Output {
name Output1
xpos 676
ypos -180
}
end_group
Read {
inputs 0
file_type exr
file /Users/afry/Downloads/HdM-HDR-2014_Original-HDR-Camera-Footage/bistro_02/bistro_02_000363.exr
format "1920 1080 0 0 1920 1080 1 HD_1080"
origset true
name Read99
xpos 14739
ypos -902
}
OCIOColorSpace {
in_colorspace "Input - ARRI - Linear - ALEXA Wide Gamut"
out_colorspace "ACES - ACES2065-1"
name OCIOColorSpace33
xpos 14739
ypos -822
}
Group {
name ExpRampOverTime80
label "\[value from] to \[value to] Stops\nframes \[value startFrame] to \[value endFrame]"
xpos 14739
ypos -798
addUserKnob {20 User}
addUserKnob {3 from}
from -5
addUserKnob {3 to -STARTLINE}
to 5
addUserKnob {3 startFrame}
startFrame 1
addUserKnob {3 endFrame -STARTLINE}
endFrame 51
addUserKnob {26 ""}
addUserKnob {41 red T Exposure11.red}
}
Input {
inputs 0
name Input1
xpos 676
ypos -320
}
EXPTool {
mode Stops
red {{"(frame-1)/(abs(parent.startFrame-parent.endFrame)/abs(parent.from-parent.to))+parent.from "}}
green {{red}}
blue {{red}}
name Exposure11
selected true
xpos 676
ypos -280
}
FrameRange {
first_frame {{parent.startFrame}}
last_frame {{parent.endFrame}}
time ""
name FrameRange1
xpos 676
ypos -256
}
Output {
name Output1
xpos 676
ypos -180
}
end_group
Read {
inputs 0
file_type exr
file /Users/afry/Downloads/HdM-HDR-2014_Original-HDR-Camera-Footage/bistro_01/bistro_01_000295.exr
format "1920 1080 0 0 1920 1080 1 HD_1080"
origset true
name Read97
xpos 14590
ypos -899
}
OCIOColorSpace {
in_colorspace "Input - ARRI - Linear - ALEXA Wide Gamut"
out_colorspace "ACES - ACES2065-1"
name OCIOColorSpace32
xpos 14590
ypos -819
}
Group {
name ExpRampOverTime79
label "\[value from] to \[value to] Stops\nframes \[value startFrame] to \[value endFrame]"
xpos 14590
ypos -795
addUserKnob {20 User}
addUserKnob {3 from}
from -5
addUserKnob {3 to -STARTLINE}
to 5
addUserKnob {3 startFrame}
startFrame 1
addUserKnob {3 endFrame -STARTLINE}
endFrame 51
addUserKnob {26 ""}
addUserKnob {41 red T Exposure11.red}
}
Input {
inputs 0
name Input1
xpos 676
ypos -320
}
EXPTool {
mode Stops
red {{"(frame-1)/(abs(parent.startFrame-parent.endFrame)/abs(parent.from-parent.to))+parent.from "}}
green {{red}}
blue {{red}}
name Exposure11
selected true
xpos 676
ypos -280
}
FrameRange {
first_frame {{parent.startFrame}}
last_frame {{parent.endFrame}}
time ""
name FrameRange1
xpos 676
ypos -256
}
Output {
name Output1
xpos 676
ypos -180
}
end_group
Read {
inputs 0
file_type exr
file "/Users/afry/Downloads/thomas-mansencal 2/images/Cornell_Box_Rigid_Spheres_190_Patch_Roughplastic_CIE_1931_2_Degree_Standard_Observer_XYZ.exr"
format "1024 1024 0 0 1024 1024 1 square_1K"
origset true
name Read94
xpos 14382
ypos -906
}
Colorspace {
colorspace_in CIE-XYZ
primary_out ACES
name Colorspace44
xpos 14382
ypos -826
}
Group {
name ExpRampOverTime78
label "\[value from] to \[value to] Stops\nframes \[value startFrame] to \[value endFrame]"
xpos 14382
ypos -802
addUserKnob {20 User}
addUserKnob {3 from}
from -5
addUserKnob {3 to -STARTLINE}
to 5
addUserKnob {3 startFrame}
startFrame 1
addUserKnob {3 endFrame -STARTLINE}
endFrame 51
addUserKnob {26 ""}
addUserKnob {41 red T Exposure11.red}
}
Input {
inputs 0
name Input1
xpos 676
ypos -320
}
EXPTool {
mode Stops
red {{"(frame-1)/(abs(parent.startFrame-parent.endFrame)/abs(parent.from-parent.to))+parent.from "}}
green {{red}}
blue {{red}}
name Exposure11
selected true
xpos 676
ypos -280
}
FrameRange {
first_frame {{parent.startFrame}}
last_frame {{parent.endFrame}}
time ""
name FrameRange1
xpos 676
ypos -256
}
Output {
name Output1
xpos 676
ypos -180
}
end_group
push 0
push 0
Reformat {
inputs 0
type "to box"
format "1920 1080 0 0 1920 1080 1 HD_1080"
box_width 274
box_height 1080
box_fixed true
name Reformat14
xpos 13646
ypos -1486
}
Radial {
area {72.1875 902 203.8125 1034}
softness 0
name Radial2
xpos 13646
ypos -1454
}
EXPTool {
mode Stops
red {{(frame-3)*2}}
green {{red}}
blue {{red}}
name Exposure7
xpos 13646
ypos -1430
}
Transform {
translate {0 {(-frame+1)*(height/5) -0.1}}
center {960 540}
name Transform1
xpos 13646
ypos -1406
}
TimeEcho {
framesbehind 6
name TimeEcho2
xpos 13646
ypos -1382
}
set N3971c400 [stack 0]
Dot {
name Dot21
xpos 13724
ypos -1174
}
set N396afc00 [stack 0]
push $N3971c400
Shuffle2 {
fromInput1 {{0} B}
fromInput2 {{0} B}
mappings "4 white -1 -1 rgba.red 0 0 white -1 -1 rgba.green 0 1 white -1 -1 rgba.blue 0 2 white -1 -1 rgba.alpha 0 3"
name Shuffle38
xpos 13798