Arri Alexa Metadata extraction for Nuke v1.3


 
This location is for Registered Users Only.
Perhaps you need to login or register.
Contributor: Mohamed Selim
Website: www.mselim.com
Arri Metadata extract for Nuke is a tool I have been working on lately to make full use of the metadata available in the Alexa files right inside Nuke.
Requirements:
11.0, 10.5, 10.0 or later
Mac, Windows
12 Sep 2018
866

This tool can be very beneficial to Matchmovers - LookDev/Lighting - Compositing.  It extracts most of the data you need like Focal Length, Focus Distance, Fstop etc.. 

You can synch a full take on disk with a Read node inside Nuke and extract the static data as well as animated just for the duration of the plate. 

 

Installation:

- Copy entire folder to HOME/.nuke/

- Add this line to your init.py :
nuke.pluginAddPath('./mS_ARRI_MetaExtract')

 

Usage:

- If a read node is selected then it will attempt to extract locally from the Read's metadata. 

- If nothing is selected then a prompt will pop up to let you choose a file on disk to extract the data from. (Recommended mode for full metadata).

 

Supported files:

ARI - MXF - MOV - EXR - DPX - CSV

 

Screen_Shot_2017-06-13_at_12.58.38_AM.png

 

Screen_Shot_2017-06-13_at_12.59.36_AM.png

 

Please login in order to download these files.

Comments   

 
0 # Otto thorbjornsen 2017-08-17 21:20
Thanks Mohamed, just what I needed!! Great timesaver!!

Cheers,
Otto
 
 
0 # Mohamed Selim 2017-10-02 00:20
Thanks. Happy I could help.
 
 
0 # Josh Kell 2017-10-09 02:44
Hi Mohamed, this looks like an amazing tool! Just having problems when trying to extract full metadata but not selecting a read node. I'm getting this:
Synching CSV with Read1 node
Traceback (most recent call last):
File "/Users/admin/. nuke/ms_Arri_Me tadata_Extract_ Nuke.py", line 752, in ms_ARRI_META_EX TRACT
ms_Arri_metadat a_extract_CSV(f ilePath + fileNameOnly+". csv", FPS, csvFrame, synchData, node)
File "/Users/admin/. nuke/ms_Arri_Me tadata_Extract_ Nuke.py", line 145, in ms_Arri_metadat a_extract_CSV
if rowClipName[14] == "":
IndexError: list index out of range


Any suggestions?
 
 
0 # Mohamed Selim 2017-10-09 10:27
Hi Josh,

So i understand you correctly. You launched the script without selecting a Read node to access a file on disk, and you have "Synch with Read Node" checked and specified "Read1" as the node to synch with?

What type of file are you trying to access? ARI...MOV?

The error your getting means that the field "CameraClipName " in the metadata is empty which is unusual for an Arri file.

Can you share the CSV generated?
 
 
0 # Josh Kell 2017-10-10 05:59
Hi Mohamed, thanks for the reply.

I managed to get some help as I'm still very new to Python, so apologies if my explanation doesn't make much sense. We ended up solving the original problem by adding this to anytime reader() was used:

reader(csvfile, delimiter='\t')


I was extracting the CSV from a .mov using the Arri Meta Extract GUI. From my understanding, in the CSV it was separating items with tabs instead of commas, which is what the code above fixed. So the tool now works great if I manually create a CSV beforehand, but would be great if I could create it straight from your tool.

What happens now is after clicking OK to this:

Extracting CSV file from clip
You can check the command-line prompt for progress
Click OK to start


I receive this error:

Synching CSV with Read1 node
Traceback (most recent call last):
File "/Users/admin/. nuke/ms_Arri_Me tadata_Extract_ Nuke.py", line 752, in ms_ARRI_META_EX TRACT
ms_Arri_metadat a_extract_CSV(f ilePath + fileNameOnly+". csv", FPS, csvFrame, synchData, node)
File "/Users/admin/. nuke/ms_Arri_Me tadata_Extract_ Nuke.py", line 142, in ms_Arri_metadat a_extract_CSV
with open(csv_path, 'rb') as csvfile:
IOError: [Errno 2] No such file or directory: '/Users/admin/D esktop/meta_ext ract/clipTest.m ov.csv'


So it looks like the tool is looking for the CSV, but never creating one? Thanks for the help.
 
 
0 # Mohamed Selim 2017-10-10 14:18
You are right. This tool works only on comma separated values generated by Arri's command-line tool and not the default TAB by the GUI.

This error shows that you have the py file directly in the .nuke folder:
File "/Users/admin/. nuke/ms_Arri_Me tadata_Extract_ Nuke.py", line 752, in ms_ARRI_META_EX TRACT

The py file should be in the downloaded folder along with the command-line tools and other py files. Maybe that's why you couldn't generate a csv because the tool cant find the command-line tool.

Also i just uploaded V1.1 with some bug fixes so try that out and make sure its installed correctly as described above and tell me how it goes.
 
 
0 # Josh Kell 2017-10-11 04:53
Thanks for pointing that out, my bad for not moving the whole folder. I'm still however getting the same error with now correct installation and using v1.1. Anything else I might be doing wrong?

Traceback (most recent call last):
File "/Users/admin/. nuke/mS_ARRI_Me taExtract/ms_Ar ri_Metadata_Ext ract_Nuke.py", line 754, in ms_ARRI_META_EX TRACT
ms_Arri_metadat a_extract_CSV(f ilePath + fileNameOnly+". csv", FPS, csvFrame, synchData)
File "/Users/admin/. nuke/mS_ARRI_Me taExtract/ms_Ar ri_Metadata_Ext ract_Nuke.py", line 140, in ms_Arri_metadat a_extract_CSV
with open(csv_path, 'rb') as csvfile:
IOError: [Errno 2] No such file or directory: '/Users/admin/D esktop/meta_ext ract/clipTest.m ov.csv'
 
 
+1 # Mohamed Selim 2017-10-11 23:03
Hey Josh

First off please download v1.2 as for some reason the osx arri tool did not have the correct permissions.

Another way is to launch Terminal and type chmod 755 then press space and then drag the ARRIMetaExtract _CMD_3.4.5.50_o sx file and press enter.

I think the problem is you have some other files on your desktop with the arri mov file. Files like exr's for instance. So the tool is trying to extract metadata from them and fails.

Or if you dont have other image files in that folder then what happened was the first time it wasn't installed correctly and the second the tool had no permissions.

So for now please just put your quicktime in a sub-folder and hopefully it will work.

I'm working on the code right now to avoid this in the next version.
 
 
0 # Josh Kell 2017-10-17 01:50
Hey Mohamed,

Sorry for the late reply, but v1.2 works great now! I have the quicktime in a subfolder and it created the CSV and displayed everything correctly. Thanks so much, this tool's a great help. I'll keep an eye out for future versions.

Cheers
 
 
0 # goodis t 2017-11-28 19:33
Great tool!

Could I just ask, how do you open .MXF files? I can't open them in Nuke for some reason..
 
 
0 # Mohamed Selim 2017-11-28 21:12
Still as of Nuke 11, you can not. This can just extract the metadata from the mxf on disk.
 
 
-1 # George Marmoutas 2018-08-10 15:56
Hi , i have an issue with the gizmo , I have a mov with all the metadata that i need . I checked the csv from arri meta extractor and it has tilt and roll and i cannot access them from the gizmo . I would be happy if i knew how to import from arri's csv but i am not a python user for now . Just letting you know if there is something that you could consider for a future release .
I am guessing they changed something on the headers and your script doesn't recognize it

I am including the csv from arri

https://www.dropbox.com/s/8e8si9165d25zkl/A003C011_180714_R405.mov.csv?dl=0

and the failed attempt to read with the gizmo

https://www.dropbox.com/s/4oahoo1657gtccv/0.png?dl=0

thanks for the gizmo it will be really helpful for me in the future :)
 
 
0 # Mohamed Selim 2018-09-05 17:28
Hi George,

Sorry for the late reply. I downloaded your csv file and there something wrong with its format. Maybe you opened it with Excel or something and saved. But I will upload tomorrow v1.3 which will allow you to import csv's directly like you wanted. My advice is to regenerate the csv again and without opening it, try loading it with the new version.
 
 
0 # George Marmoutas 2018-09-05 17:33
no problem , thanks for replying .

It is not something that i personally did , it's how the arri's extractor saved it , regarding the csv. So we understood that it's a new way of saving . maybe an update of firmware on the lds.

We managed to make it work by adding the new Arri's extractor and some magic from a friend that understood your gizmo .
but he didnt make it for mac so thanks for making a new version

Thanks a million !
g,
 
 
0 # Mohamed Selim 2018-09-06 14:47
Ill check their new extractor now and update it. Thanks for the heads up.
 
 
0 # George Marmoutas 2018-09-06 14:48
Quoting Mohamed Selim:
Ill check their new extractor now and update it. Thanks for the heads up.


Thank you for the amazing tool :)
g
 
 
0 # Mohamed Selim 2018-09-12 14:47
I updated the tool to work with tab formatted csv's instead of comma which I think was your issue and its also what arri uses by default. Also you can now just extract from a csv on disk if its pre-made.
 
 
0 # George Marmoutas 2018-08-10 15:56
that is the arri meta extractor columns that have the tilt and roll

https://www.dropbox.com/s/wh2vj7crwbmezsl/Snap%202018-08-10%20at%2017.51.59.png?dl=0
 
 
0 # Karim Omar 2018-09-15 01:16
Magnificent tool really helps a lot , Thanks for sharing it
 
 
0 # Andreas Restle 2019-03-04 10:12
Great tool for Arri Alexa footage, thanks a lot.

Do you think you could adjust it to work with R3D as well?

Getting a lot of those lately ...
 
 
-1 # Min Tesch 2020-01-20 15:24
Thanks for that great tool.
it runs perfect for our A Camera.
For our B Camera we recorded the Lens Data via an external Device.
when i try to import that UMC4 file your tool gives me the error: This doesnt look like an Arri source.
which information could be missing or which info is necessary for your tool to see if the cvs file is an arri source?
here is that file in case you have time to look at.
https://drive.google.com/open?id=1JokY9lzxNfq8RnZjwo0mGx4mJ7BDfpH0
best Min
 
 
0 # Mohamed Selim 2020-01-27 00:29
Hi Min

Unfortunately this csv is missing a lot of the info the tool is looking for like Clip name, resolution etc.. It will take some time to for you to go in and add them in manually. Also I dont have the time at the moment to update the tool. I did extract them for you though just in case you still need it.

set cut_paste_input [stack 0]
version 11.3 v3
push $cut_paste_input
NoOp {
name Arri_Metadata1
selected true
xpos -146
ypos -247
addUserKnob {20 tmpClipName}
addUserKnob {20 timeGroup l Time n 1}
addUserKnob {7 index l " CSV Index"}
index {{curve 0 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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050}}
addUserKnob {20 "" -STARTLINE n -1}
addUserKnob {20 ldsGroup l LDS n 1}
addUserKnob {26 lensUnit l " Distance Unit:" T Meter}
addUserKnob {7 focusD l " Focus Distance"}
focusD {{curve 1.02 1.027 1.031 1.036 1.039 1.042 1.049 1.059 1.071 1.079 1.084 1.086 1.087 1.087 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.088 1.091 1.107 1.138 1.177 1.209 1.224 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.227 1.229 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.23 1.234 1.243 1.249 1.252 1.256 1.259 1.261 1.263 1.263 1.263 1.263 1.263 1.264 1.264 1.264 1.264 1.264 1.264 1.264 1.263 1.26 1.256 1.25 1.245 1.241 1.239 1.237 1.234 1.232 1.229 1.226 1.224 1.222 1.22 1.218 1.215 1.214 1.212 1.212 1.212 1.212 1.212 1.212 1.213 1.223 1.234 1.245 1.257 1.271 1.286 1.302 1.321 1.337 1.353 1.365 1.373 1.381 1.388 1.393 1.397 1.401 1.406 1.41 1.414 1.419 1.423 1.426 1.429 1.431 1.434 1.438 1.442 1.444 1.446 1.448 1.451 1.457 1.463 1.468 1.475 1.481 1.486 1.492 1.496 1.5 1.503 1.506 1.509 1.514 1.518 1.522 1.525 1.527 1.529 1.53 1.531 1.534 1.536 1.538 1.54 1.542 1.543 1.544 1.545 1.545 1.546 1.548 1.552 1.555 1.56 1.564 1.57 1.578 1.589 1.603 1.62 1.635 1.649 1.66 1.669 1.679 1.689 1.699 1.707 1.713 1.72 1.727 1.736 1.746 1.76 1.776 1.794 1.814 1.835 1.859 1.883 1.907 1.934 1.959 1.981 2.005 2.027 2.044 2.062 2.075 2.083 2.094 2.107 2.119 2.131 2.142 2.153 2.163 2.172 2.179 2.189 2.197 2.208 2.216 2.227 2.237 2.246 2.255 2.261 2.267 2.275 2.283 2.294 2.305 2.314 2.32 2.324 2.328 2.333 2.339 2.347 2.359 2.375 2.397 2.422 2.441 2.453 2.463 2.472 2.479 2.487 2.496 2.502 2.507 2.513 2.519 2.522 2.523 2.524 2.526 2.528 2.533 2.536 2.538 2.543 2.545 2.548 2.55 2.552 2.555 2.557 2.561 2.564 2.568 2.57 2.571 2.572 2.574 2.575 2.575 2.577 2.58 2.583 2.584 2.586 2.587 2.588 2.589 2.591 2.592 2.592 2.592 2.592 2.592 2.593 2.593 2.594 2.595 2.595 2.596 2.599 2.601 2.602 2.604 2.606 2.609 2.611 2.611 2.613 2.613 2.614 2.616 2.618 2.618 2.619 2.62 2.621 2.622 2.625 2.626 2.626 2.627 2.628 2.628 2.628 2.629 2.632 2.633 2.635 2.636 2.639 2.64 2.642 2.645 2.648 2.65 2.654 2.663 2.68 2.698 2.726 2.762 2.795 2.823 2.839 2.852 2.864 2.874 2.881 2.886 2.891 2.895 2.901 2.909 2.923 2.944 2.969 2.996 3.02 3.035 3.046 3.056 3.068 3.08 3.1 3.124 3.149 3.178 3.207 3.226 3.237 3.241 3.245 3.248 3.252 3.252 3.256 3.259 3.261 3.262 3.262 3.263 3.263 3.265 3.266 3.269 3.272 3.273 3.273 3.273 3.273 3.273 3.273 3.273 3.275 3.275 3.275 3.276 3.276 3.276 3.276 3.276 3.276 3.276 3.276 3.278 3.278 3.278 3.278 3.278 3.278 3.278 3.278 3.278 3.278 3.278 3.278 3.278 3.278 3.278 3.278 3.278 3.278 3.278 3.278 3.278 3.278 3.278 3.278 3.278 3.278 3.278 3.278 3.278 3.278 3.278 3.278 3.278 3.278 3.278 3.278 3.28 3.29 3.315 3.352 3.388 3.407 3.416 3.416 3.416 3.416 3.416 3.416 3.416 3.416 3.415 3.414 3.414 3.414 3.414 3.414 3.414 3.414 3.414 3.414 3.414 3.414 3.414 3.414 3.414 3.414 3.414 3.414 3.414 3.414 3.414 3.414 3.414 3.414 3.414 3.412 3.407 3.403 3.401 3.398 3.391 3.382 3.37 3.359 3.347 3.339 3.331 3.326 3.323 3.321 3.321 3.321 3.321 3.321 3.321 3.321 3.321 3.321 3.32 3.32 3.32 3.32 3.319 3.315 3.313 3.311 3.309 3.309 3.309 3.308 3.301 3.281 3.251 3.219 3.195 3.175 3.162 3.152 3.144 3.134 3.124 3.108 3.091 3.07 3.036 2.996 2.961 2.924 2.893 2.869 2.851 2.837 2.827 2.821 2.817 2.814 2.813 2.813 2.813 2.812 2.81 2.808 2.805 2.801 2.795 2.792 2.789 2.789 2.787 2.787 2.787 2.787 2.787 2.787 2.787 2.787 2.788 2.792 2.796 2.801 2.807 2.821 2.834 2.84 2.842 2.844 2.844 2.843 2.842 2.841 2.841 2.841 2.841 2.841 2.841 2.841 2.853 2.866 2.876 2.881 2.884 2.884 2.886 2.886 2.886 2.886 2.887 2.888 2.889 2.891 2.891 2.891 2.891 2.891 2.891 2.891 2.892 2.892 2.892 2.892 2.892 2.892 2.892 2.892 2.892 2.892 2.892 2.892 2.892 2.892 2.892 2.892 2.892 2.892 2.892 2.892 2.892 2.892 2.892 2.892 2.892 2.892 2.891 2.891 2.841 2.788 2.735 2.695 2.668 2.651 2.637 2.625 2.612 2.598 2.578 2.558 2.534 2.51 2.486 2.467 2.45 2.435 2.42 2.405 2.389 2.375 2.36 2.347 2.334 2.324 2.312 2.301 2.29 2.278 2.266 2.252 2.233 2.204 2.171 2.131 2.089 2.046 2 1.96 1.928 1.902 1.88 1.861 1.841 1.821 1.801 1.781 1.768 1.758 1.75 1.744 1.74 1.736 1.734 1.731 1.723 1.714 1.707 1.702 1.699 1.698 1.698 1.697 1.699 1.711 1.714 1.716 1.716 1.716 1.716 1.714 1.71 1.704 1.697 1.689 1.682 1.674 1.664 1.656 1.648 1.642 1.637 1.632 1.628 1.625 1.62 1.614 1.608 1.603 1.6 1.597 1.596 1.595 1.594 1.593 1.592 1.591 1.59 1.589 1.588 1.588 1.587 1.586 1.586 1.585 1.584 1.583 1.583 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582 1.582}}
addUserKnob {7 focal l " Focal Length(mm)"}
focal {{curve 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40 40}}
addUserKnob {26 lensIris l " Iris:" T close}
addUserKnob {7 tilt l " Camera Tilt"}
tilt {{curve -20.7 -19.5 -19.6 -18.4 -19.5 -18.5 -19.6 -18.6 -19.3 -19.4 -18.8 -18.5 -18 -18.1 -18.2 -18.1 -17.9 -18.5 -18.6 -19 -18.6 -19.2 -18.8 -19 -18.3 -18.5 -17.9 -17.4 -17.8 -17.3 -17.9 -17.5 -17.5 -17 -17.1 -16.4 -16.5 -16.3 -16.4 -16.5 -16.7 -16.8 -16.6 -16.5 -16.5 -16.2 -16.3 -16.5 -16.5 -17.1 -17.1 -17.7 -17.7 -18.1 -18.3 -19.1 -19.4 -19.6 -20.1 -19.8 -20 -21 -20.8 -21 -21.1 -21.6 -23.2 -22.3 -22.9 -23.8 -24.1 -23.5 -24.5 -24.9 -24.8 -25.2 -24.8 -25 -25.1 -25.1 -25 -25.1 -24.6 -25 -24.7 -24.9 -24.9 -25.1 -25.1 -25.2 -25.3 -25 -25.1 -25.1 -25.5 -25.4 -25.5 -25.6 -25.8 -25.4 -25.6 -25.7 -25.6 -25.8 -25.8 -26 -26 -26.2 -26.1 -26.4 -26.4 -26.3 -26.4 -26.4 -26.6 -26.7 -26.7 -26.7 -26.5 -26.2 -26.1 -26 -25.9 -25.8 -25.7 -25.7 -25.8 -26 -26 -26.1 -26 -26.1 -26 -25.9 -26 -26 -26.2 -26.3 -26.3 -26.5 -26.3 -26.1 -25.9 -25.8 -25.6 -25.5 -25.5 -25.4 -25.3 -25.2 -25 -25.1 -25.1 -25.1 -25.3 -25.4 -25.4 -25.3 -25.3 -25.2 -25.3 -25.4 -25.3 -25.2 -25.2 -25 -24.7 -24.4 -24.4 -24.1 -24.1 -24.3 -24.3 -24.4 -24.5 -24.6 -24.6 -24.5 -24.4 -24.4 -24.2 -24 -23.9 -24 -23.8 -23.9 -24 -24.1 -24.2 -24.2 -24.2 -24 -24.2 -24 -23.7 -23.6 -24.2 -24.1 -24.1 -24.3 -24.4 -24.5 -24.3 -24.5 -24.4 -24.4 -24.2 -23.8 -23.6 -24 -24 -24.2 -24.7 -24.5 -25 -24.8 -24.8 -24.7 -24.7 -24.8 -24.9 -24.4 -23.4 -23.4 -23.3 -23.7 -23.6 -23.6 -23.3 -23.4 -25.4 -26.2 -25 -24.3 -23.7 -23.8 -23.1 -22.9 -23.1 -23.1 -23.1 -22.9 -23.1 -23.2 -22.8 -23.2 -23.6 -23.2 -23.2 -23 -22.7 -22.3 -22.6 -22.4 -22.5 -22.7 -22.9 -22.6 -22.7 -22.2 -21.5 -21.7 -21.6 -21.4 -21.8 -21.5 -21.2 -21.1 -20.7 -20.2 -20.1 -20.2 -19.1 -19.2 -19.3 -20.2 -20 -20 -20.2 -20.4 -20 -20.5 -21.9 -22.2 -21.7 -21.1 -21.9 -21.6 -20.6 -20.1 -19.5 -19.6 -19.7 -19.6 -20.3 -21.6 -21.7 -20.5 -20.2 -20.8 -20.6 -21 -21.3 -21.2 -20.5 -20.6 -20.9 -21.1 -21.5 -21.2 -21.1 -20.7 -20.5 -20.2 -20.4 -19.9 -19.9 -19.4 -19.3 -18.9 -18.7 -18.8 -18.8 -18.6 -18.9 -19.4 -19.5 -19.9 -19.7 -19.2 -18.7 -19.1 -18.8 -18.6 -19.1 -18.5 -18.3 -18.4 -18.7 -18.1 -17.9 -17.8 -17.8 -17.4 -17.3 -17.7 -17.7 -17.4 -17.5 -17.8 -17.6 -18.1 -18 -18.1 -18.1 -17.4 -17.6 -18 -17.3 -16.4 -16.7 -17.4 -17.7 -17.7 -18.3 -18.4 -18 -17.8 -17.9 -17.8 -17.4 -16.9 -16.6 -16.5 -16.6 -16.3 -16.4 -16.6 -16.7 -16.4 -16.4 -16.4 -16.8 -16.7 -16.4 -16.5 -16.8 -16.6 -16 -15.8 -15.3 -14.8 -14.7 -14.6 -14.5 -14.7 -14.8 -14.9 -14.5 -14.1 -14.3 -14.3 -14.6 -14.7 -14.6 -14.9 -15.7 -15.6 -16.2 -16.9 -17.3 -16.8 -16.7 -17.1 -16.7 -16.5 -16.7 -16.1 -15.8 -15.7 -15.5 -15.4 -15.2 -15.1 -15.1 -15.3 -15.3 -15.8 -15.8 -15.5 -15.3 -15.7 -15.9 -15.2 -14.7 -15 -15.4 -14.8 -14.8 -14.5 -14.1 -13.3 -13.3 -13.2 -13.6 -13.5 -13.8 -14.1 -15 -15.1 -14.5 -15.3 -15.7 -16 -16.7 -16.6 -16.1 -16.3 -16.5 -16.3 -16.1 -15.9 -15.9 -15.7 -15.1 -15.1 -15.2 -14.9 -15.2 -15.7 -16.5 -17 -16.6 -16.3 -16.5 -15.4 -14.6 -14.4 -14.4 -14.1 -13.9 -13.8 -14.1 -13.8 -13.5 -13.4 -12.7 -12.2 -11.9 -12.3 -12.3 -12.1 -12 -12.5 -12.3 -12.3 -13.8 -14.4 -14.8 -14.4 -14.5 -14.8 -14.6 -14.5 -14.6 -14.4 -13.5 -13.5 -13.4 -13.2 -12.8 -13 -12.8 -13 -12.5 -12.4 -12.2 -12.6 -12.9 -13 -14 -14 -14 -13.3 -13.1 -12.8 -12.5 -12.6 -12.6 -11.8 -11.5 -11.1 -10.8 -10.7 -10.6 -11 -11 -11.7 -12.1 -12.3 -13.2 -13.3 -13.4 -13.7 -13.5 -13.6 -13.3 -13.5 -13.4 -13.4 -13.5 -13 -12.8 -12.3 -12.8 -12 -12.1 -12.2 -12.5 -12.8 -12.9 -13.1 -13 -13.3 -13 -12.6 -12.5 -12.5 -11.8 -12.2 -12.1 -11.6 -11.2 -11.1 -10.7 -10.6 -10.5 -10.6 -11 -11.1 -12.1 -12.6 -12.8 -12.4 -12.5 -12.8 -12.7 -11.9 -12.1 -12.4 -12.6 -12.7 -12.5 -12.3 -12.2 -12.3 -12 -12.7 -12.2 -12.4 -12.5 -13.3 -12.7 -12.7 -13.6 -13.7 -13 -12.9 -13.5 -13.2 -12.6 -12.6 -12.7 -12.5 -12.7 -12.9 -13.4 -12.4 -11.8 -11 -11.3 -11.1 -10.7 -11.1 -11.5 -10.6 -10.2 -10.8 -10.1 -10.4 -10.5 -10.9 -11.1 -12.1 -12.4 -12.3 -12.3 -12.7 -12.9 -12.9 -12.6 -12.7 -12.6 -12.4 -12.4 -12.2 -12.4 -12.5 -12.1 -12 -12.3 -12.3 -12.2 -12.8 -13.3 -13.6 -13.6 -13.6 -13.4 -14 -13.8 -13.7 -13.7 -13.6 -13.7 -13 -12.6 -12.2 -12 -11.7 -11.5 -11.6 -11.4 -11.2 -11.1 -11.6 -10.9 -11.1 -11 -11.5 -11.7 -11.7 -12.6 -12.8 -12.8 -13.3 -13.3 -13.2 -13.8 -13.5 -13.5 -13.3 -13.3 -12.8 -13.4 -13 -13.1 -13 -12.9 -12.7 -12.9 -12.9 -12.5 -12.4 -12.4 -12.4 -12 -12.1 -12 -11.8 -11.5 -11.3 -11.1 -11.4 -11.5 -11.4 -11.4 -11.3 -11.5 -11.7 -11.9 -11.8 -12.1 -12.3 -12.1 -12.4 -12.6 -12.9 -12.8 -13.1 -12.8 -12.2 -12 -12.4 -12.7 -12.7 -12.2 -12 -12.2 -12 -11.5 -11.3 -11.1 -10.8 -10.4 -10.7 -11 -10.8 -10.8 -10.8 -10.7 -11.1 -10.9 -11 -11 -12 -12.1 -12.2 -12.2 -13.5 -14 -13.4 -14.4 -14.7 -14.4 -13.9 -14 -13.7 -13.5 -13.1 -13.1 -13.6 -14.1 -14.1 -14.3 -14.5 -15.3 -15.8 -14.8 -15.8 -16.7 -16.4 -15.9 -16.2 -16.3 -16 -15.3 -15.3 -14.7 -14.8 -14.5 -14.3 -14.2 -14.7 -15.2 -15.6 -17 -16.8 -17.4 -18.6 -19.2 -19.4 -19 -19.2 -19.2 -19.7 -19.4 -19.7 -19.7 -19.7 -19.9 -19.8 -20 -20.1 -20 -19.9 -20.4 -20.9 -21.1 -20.7 -21.3 -21.9 -22.6 -23.6 -23.6 -24 -24 -24.1 -24.2 -24.5 -24.1 -24 -24.5 -24.7 -25.2 -25 -25.1 -25.2 -25.1 -25.5 -25.3 -25.4 -25.1 -25.4 -26 -26.6 -27.4 -27.6 -27.9 -27.6 -27.3 -26.9 -26.7 -26.7 -26.9 -27.4 -27.1 -27.1 -27.1 -27.3 -27.4 -27.4 -27.5 -27.9 -28.1 -28.3 -28.3 -28.3 -28.4 -28.3 -28.2 -28.5 -28.2 -28.5 -28.7 -28.8 -28.9 -28.9 -29.1 -29 -29.2 -29.1 -29.5 -29.5 -29.7 -29.7 -30.1 -29.9 -30 -29.9 -29.9 -30 -30.3 -30.8 -30.4 -30.6 -30.5 -30.5 -30.3 -30.4 -30.4 -30.2 -30.1 -30.1 -30.2 -30.3 -30.1 -30.4 -30.3 -30.2 -29.9 -30.4 -30 -30.3 -30.4 -30.5 -30.6 -30.6 -30.7 -30.3 -30.5 -30.4 -30.4 -30.4 -30.4 -30.6 -30.1 -30.5 -30.2 -30.4 -30.3 -30.7 -30.4 -30.5 -30.5 -30.3 -30.2 -30.3 -30.8 -30.3 -30.6 -30.2 -30.4 -30.2 -30.4 -30.3 -30.6 -30.3 -30.2 -30.4 -30.4 -30.4 -30.5 -30.4 -30.3 -30.5 -30.2 -30.4 -30.6 -30.4 -30.4 -30.3 -30.5 -30.1 -30.5 -30.4 -30.4 -30.4 -30.3 -30.4 -30 -30.2 -30.1 -30.3 -30.4 -30.4 -30.5 -30.7 -30.5 -30.5 -30.5 -30.4 -30.1 -30.2 -30.2 -30.3 -30.5 -30.3 -30.5 -30.4 -30.4 -31.6 -34.3 -37.5 -40.4 -41.1 -39.5 -39.7 -36.7 -32.9 -28.8 -26 -22.8 -23.8 -31 -35.5 -36.6 -34.8 -30.2 -27.6 -25.9 -23.2 -20.2 -16.4 -14.3 -12.1 -12 -11 -11.7 -12.1 -12.6 -11.9 -10.1 -8.7 -8.1 -3.5 -1.9 -2.2 0.1 0.5 -1.2 -2.5 -4.3 -4.5 -4.4 -3.4 -2 -1.1 -0.6 -1 -2 -3.5 -4.7 -6.1 -7.1 -8.7 -13.1 -15.1 -15.1 -12.9 -12}}
addUserKnob {7 roll l " Camera Roll"}
roll {{curve -179.8 -178.2 -180 -177.8 -179.1 -178 -179.4 -178.7 -179.2 -179.5 -179.6 -179.4 -179.1 -179.2 -179.4 -179.5 -179.2 -180.1 -179.8 -180.3 -180 -180.8 -180.1 -180.6 -179.5 -179.6 -179.7 -179.5 -180 -180 -180.6 -180.2 -180.7 -180.2 -180.7 -180.3 -180.4 -180 -180.2 -179.9 -179.9 -180.3 -180.5 -180.3 -180.1 -180.4 -180.1 -180.2 -179.7 -180.2 -180.1 -180.1 -180 -180.1 -180.2 -180.4 -180.5 -180.5 -180.7 -180.9 -180.9 -179.9 -180 -180 -180.5 -179.6 -181 -181 -180.5 -179.7 -180.4 -181 -180.9 -180.9 -180.9 -180.6 -180.2 -180.6 -180.8 -180.5 -180.2 -180.8 -180 -180.7 -180.2 -180.3 -181 -181.4 -181.4 -181.4 -181.3 -180.8 -180.7 -181.1 -181.3 -181.3 -181.7 -181.6 -181.8 -181.4 -181.3 -181.2 -181.3 -181.6 -181.3 -181.4 -181.5 -181.6 -181.4 -181.6 -181.6 -181.5 -181.6 -181.8 -182 -182 -182 -182 -182 -181.8 -181.6 -181.4 -181.2 -180.9 -180.8 -180.8 -181 -181.2 -181.1 -181.5 -181.4 -181.6 -181.5 -181.3 -181.5 -181.5 -181.8 -182 -182.3 -182.5 -182.5 -182.3 -181.7 -181.7 -181.8 -181.8 -181.7 -181.6 -181.6 -181.6 -181.4 -181.3 -181.2 -181.3 -181.5 -181.7 -181.8 -181.8 -181.9 -181.7 -181.7 -181.8 -181.9 -181.9 -181.9 -181.8 -181.3 -181.4 -181.3 -180.9 -181.1 -181.3 -181.3 -181.4 -181.6 -181.8 -182 -181.8 -182 -182 -181.7 -181.4 -181.3 -181.5 -181.5 -181.6 -181.6 -181.6 -181.5 -181.5 -182 -182 -181.7 -181.5 -181.3 -180.8 -180.9 -180.9 -180.7 -180.5 -180.4 -180.3 -180.5 -180.7 -180.6 -180.6 -180.8 -180.8 -180.6 -180.6 -180.2 -180.3 -180.6 -180 -180.3 -180.1 -180.1 -180.2 -180.4 -180.7 -180.6 -180.5 -180.6 -180.7 -180.9 -180.9 -180.8 -181.5 -181.2 -180.9 -181.9 -183.4 -182.6 -182.1 -182.3 -183.4 -183.1 -182.5 -182.1 -182 -182.4 -182.9 -183.3 -183.2 -182.7 -182.6 -182.9 -182.4 -181.3 -181.1 -181.5 -181.2 -181.4 -181.2 -180.9 -180.6 -180.6 -179.8 -179.7 -178.9 -178.9 -179.3 -179.3 -179.1 -179.2 -179.2 -179 -179.5 -179.8 -180 -179.8 -180.1 -179.9 -179.8 -179.5 -180.3 -180.1 -180.6 -180.8 -180.7 -180.5 -180.5 -181.3 -181.1 -181.1 -180.7 -180.9 -181.2 -180.7 -180.7 -180.4 -180.6 -180.9 -181.2 -181.4 -182 -181.7 -180.8 -180.5 -181 -181.1 -181.6 -181.9 -182 -181.6 -181.9 -181.6 -181.1 -180.7 -180 -180.3 -179.7 -179.5 -179.5 -179.7 -179.3 -179.3 -179.5 -179.5 -179.7 -179.8 -179.8 -180.4 -180.4 -180.2 -180.3 -180.2 -180.8 -181.2 -181.1 -181.2 -180.9 -180.6 -180.8 -181 -180.5 -180 -179.8 -180.4 -180.4 -180.5 -180.7 -181 -180.9 -181.1 -180.8 -180.6 -180.5 -180.3 -181 -181.1 -181 -180.7 -180.2 -180.4 -180 -180.2 -180.1 -179.7 -179.5 -179.6 -179.5 -179.7 -179.6 -179.3 -179.2 -178.6 -178.6 -179.1 -179.2 -179 -179.4 -179.3 -179 -178.9 -179.2 -179 -178.9 -179.3 -179.2 -179.6 -179.4 -179.4 -179.8 -180.2 -180.5 -180.5 -180.3 -180.8 -180.9 -180.3 -180.1 -180.1 -179.8 -179.7 -180.6 -180.1 -179.8 -180.2 -179.7 -180 -180.3 -180.3 -180.4 -180.8 -180.7 -180.6 -179.9 -179.4 -179.5 -179.7 -179.2 -178.8 -178.5 -179.1 -178.9 -179 -179.1 -179 -179.3 -179.1 -179.1 -178.6 -178.5 -178.3 -178.6 -178.5 -179.1 -178.9 -178.8 -179.3 -179.7 -179.6 -179.3 -178.8 -178.6 -179.2 -179 -178.4 -178.2 -178.6 -178.3 -178.3 -178.4 -178.7 -179.4 -179.7 -179.6 -179.5 -179.8 -179.5 -179.6 -180.4 -179.5 -178.7 -179.3 -179 -178.7 -178.9 -178.5 -178.2 -178.1 -178.3 -178.5 -177.9 -178.5 -178.1 -177.7 -177.9 -178.2 -178.4 -179 -178.8 -179.2 -179.7 -179.9 -180.1 -180 -180.1 -179.9 -179.4 -179.1 -179.4 -179.3 -179.2 -179 -178.6 -178.3 -178.5 -179 -179 -179.1 -179 -178.7 -178.9 -178.9 -179.5 -179.4 -178.5 -178.5 -179.1 -178 -177.5 -178.6 -179 -178.3 -177.7 -177.8 -177.8 -178.1 -178.1 -178.3 -178.4 -178.6 -178.4 -178.6 -178.5 -178.3 -178.1 -178.3 -178.4 -178.5 -178.8 -178.7 -179.1 -179.5 -179.3 -178.9 -179 -178.6 -178.4 -178.7 -179.1 -179.2 -178.8 -179 -179.3 -179.7 -179.4 -179.8 -179.9 -180.5 -180 -179.4 -179.6 -179.5 -179.1 -178.4 -178.9 -178.2 -178.2 -178.7 -178.8 -178.2 -178.3 -178.4 -178.3 -178 -178.2 -178.2 -178.3 -178.9 -179.4 -179 -178.7 -179.3 -179.3 -179.5 -178.7 -178.5 -178.8 -178.6 -178.6 -178.6 -178.9 -179.1 -179.3 -179.6 -179.6 -179.5 -179.8 -180.2 -180.3 -180.2 -180 -179.2 -178.7 -177.9 -177.8 -178.5 -178.6 -178.3 -178.8 -179 -178.5 -179 -179 -178.9 -178.4 -178.2 -178.3 -178.9 -178.4 -178.5 -179.6 -180.3 -179.8 -179.9 -180.6 -180.6 -180.1 -179.7 -179.1 -179.3 -179.5 -179.4 -179.6 -179.4 -179.3 -179 -179.4 -179.4 -179.5 -179.6 -179.5 -179 -178.9 -179.5 -179.5 -180 -179.7 -179.7 -179.2 -179.1 -179.3 -179.6 -179.4 -178.9 -179.1 -179 -178.8 -178.8 -179.1 -178.4 -178.4 -178.3 -178.6 -178.3 -178.3 -177.9 -178.1 -178 -178.1 -178.1 -178.4 -178.3 -178.4 -178.9 -178.9 -179 -179.6 -180.1 -180.5 -180.3 -180.3 -180.1 -180 -179.9 -179.6 -179.3 -179.4 -179.6 -179.4 -179.8 -180 -179.6 -179.4 -179.5 -179.7 -179.3 -179.1 -179 -179.2 -179.5 -179.4 -179.8 -179.4 -179.1 -179.3 -178.8 -178.7 -178.3 -178.2 -178.2 -178.5 -178.6 -178.6 -178.7 -178.8 -178.7 -178.6 -178.4 -178.5 -178.6 -178.1 -177.9 -177.9 -177.8 -177.7 -178 -178.2 -178.3 -178 -178.1 -178.1 -177.8 -178.4 -178.3 -178.7 -178.9 -179.2 -179.1 -179.4 -179.3 -179.4 -179.5 -179.6 -179.4 -179.7 -179.4 -179.1 -179.5 -179.8 -179.2 -179 -179 -179 -179 -179.2 -179.5 -179.5 -179.5 -179.3 -179.2 -179.1 -179.4 -179.8 -179.4 -179.6 -179.4 -179.4 -179 -179.5 -179.8 -179.3 -179.6 -179.4 -179.5 -179.2 -179.6 -179.1 -179 -179.4 -179.2 -179 -178.8 -179 -178.9 -178.6 -178.3 -178.7 -178.1 -178.2 -178.7 -178.7 -178.9 -179.1 -179.1 -179.1 -179.4 -179.7 -180.7 -180.4 -180.5 -179.7 -179.8 -179.4 -179.4 -179.4 -179.6 -180 -179.9 -180.2 -179.4 -180 -179.8 -180.6 -180.5 -180.5 -180.6 -179.7 -179.3 -179.4 -179.1 -178.8 -179 -178.9 -179 -179.5 -179.7 -179.6 -179.7 -179.3 -179.1 -179.2 -179.2 -179.4 -179.2 -179 -179.7 -180 -180.7 -181.4 -181.9 -182.3 -181.9 -182 -182.1 -181.8 -181.6 -181.5 -181.4 -181.5 -181.6 -181.2 -181 -181.1 -180.8 -180.7 -180.4 -180 -180.1 -179.8 -179.4 -179.6 -180.1 -180 -180.1 -180.1 -179.8 -180 -179.6 -179.6 -179.4 -179.4 -179.7 -179.8 -179.8 -180 -179.8 -180 -180 -179.8 -180 -180.1 -180.4 -180 -180.3 -180.3 -180.5 -180.5 -180.7 -180.7 -180.7 -181.2 -181.2 -181.3 -181.2 -181.4 -181.2 -181.2 -181.2 -181.2 -181.2 -181.2 -181.2 -181.2 -181.2 -181 -181.1 -181 -181.2 -181.4 -182 -181.4 -181.8 -181.6 -181.8 -181.6 -181.7 -181.6 -181.4 -181.3 -181.3 -181.2 -181.4 -181.4 -181.4 -181.4 -181.1 -180.9 -181.1 -181 -181.3 -181.2 -181.3 -181.4 -181.1 -181.1 -180.9 -180.8 -180.7 -180.9 -181 -181 -181.4 -181.2 -181.4 -181.1 -181.4 -181.5 -181.6 -181.9 -181.7 -181.9 -181.8 -181.8 -181.9 -182.1 -182 -182.3 -182.1 -182.2 -182.1 -182.4 -182.1 -182.3 -182.1 -182.2 -182.3 -182.1 -182.1 -181.9 -182.3 -182 -182.4 -182 -182.3 -182.3 -182.4 -182.5 -182.4 -182.5 -182.4 -182.6 -182 -182.5 -182.7 -182.3 -182.2 -182.1 -182.1 -182.3 -182.3 -182.5 -182.7 -182.3 -182.7 -182.5 -182.5 -182.6 -182.5 -182.1 -182.1 -182.3 -182.2 -182.6 -182.4 -182.4 -182.4 -182.2 -182.4 -182.9 -184.5 -187.2 -190.1 -188.7 -186.7 -184 -181.8 -179.3 -176.4 -177.2 -173.8 -177.8 -184.6 -188.9 -187.7 -185.7 -185.2 -185.3 -187.3 -185.7 -183.4 -182.8 -181.7 -181.8 -180.8 -180.4 -180.4 -181 -181 -183.4 -185 -185.7 -185.9 -186 -185.7 -186.1 -183.7 -183.4 -182.8 -181.6 -182.2 -181.4 -180.3 -179.4 -178.2 -178.8 -178.9 -179.2 -180.1 -179.9 -179.5 -179.4 -178.7 -180.1 -180 -179.2 -177.5 -175.6}}
addUserKnob {20 "" -STARTLINE n -1}
}
 
 
0 # fast abst 2020-11-25 11:08
Hi Mohammed,
I'm trying to use your amazing script, but it doesn't work in some reason. I've tried different csv files, even downloaded
test2.csv from nuke forum you posted. I've tested on nuke 11, 12
Can you please send me some csv example so I can test?

I'm having this error if using my arri csv:
line 142, in ms_Arri_metadat a_extract_CSV
rowClipName = next(islice(met areader, 1, 1+1))
_csv.Error: line contains NULL byte

from test2.csv https://community.foundry.com/discuss/topic/121643/import-arri-lds-data-from-csv-through-python I get this error:

line 143, in ms_Arri_metadat a_extract_CSV
if rowClipName[14] == "":
IndexError: list index out of range
 
 
+3 # H Hakim 2021-10-23 23:04
I think it's not compatible with Nuke 13

I am getting this error on Nuke startup:

error interpreting this plugin.
 
 
0 # Evgenii Grigorenkov 2022-09-14 12:31
HI, maybe somewhere there is a version for 13 nuke?
 
 
0 # Mike Ilin 2022-11-29 10:43
Ok
https://drive.google.com/file/d/1_a7bfLh_CIrxCR9VUbd282sdcn1pbHty/view?usp=share_link
 
 
0 # Ludvig Friberg 2023-02-24 16:24
I tried this 1n Nuke 11.3v6 but I am getting the following error. File "C:/Users/ryz/. nuke/mS_ARRI_Me taExtract\ms_Ar ri_Metadata_Ext ract_Nuke.py", line 783, in ms_ARRI_META_EX TRACT
ms_Arri_metadat a_extract_CSV(f ilePath + fileNameOnly+". csv", FPS, csvFrame, synchData, node)
File "C:/Users/ryz/. nuke/mS_ARRI_Me taExtract\ms_Ar ri_Metadata_Ext ract_Nuke.py", line 142, in ms_Arri_metadat a_extract_CSV
rowClipName = next(islice(met areader, 1, 1+1))
_csv.Error: line contains NULL byte

Does anyone know hwat I am doing wrong?
 
 
0 # Mohamed Selim 2023-02-24 17:14
Apologies, this tool has not been updated in ages. Most probably it will not work anymore due the vast changes from The Foundry and Arri that needs to be updated in the code.

Sorry again.
 

You have no rights to post comments

We have 2524 guests and 125 members online