Got a nice little script for importing focus distance metadata per frame into 3dsmax. However the timecode column includes colons, which messes up my script. A simple workaround has been to find/replace ":" with "" in notepad before import.
I'd love to add this functionality to my maxscript instead to further optimize my workflow. Does anybody know how?
I'd love to add this functionality to my maxscript instead to further optimize my workflow. Does anybody know how?
Code:
( theFilename = getOpenFileName types:"Arri Metadata (*.csv)|*.CSV|All Files (*.*)|*.*" --csv file requires 3 tab delimited columns (frame number | timecode | focus distance in inches) if theFilename != undefined and (isProperty $ #focus_distance ) do ( --if a valid filename picked local theFile = openFile theFilename --open the file skipToNextLine theFile --skip the header row while not eof theFile do ( --loop until the end of file framenum=(readValue theFile) timecode=(readValue theFile) focusdistance=(readValue theFile) with animate on ( at time framenum $'Render Cam'.focus_distance = focusdistance ) ) ) )
Comment