Skip to content

Instantly share code, notes, and snippets.

@benbrandt
Created March 5, 2015 06:25
Show Gist options
  • Save benbrandt/9d121ac539fe5e339d80 to your computer and use it in GitHub Desktop.
Save benbrandt/9d121ac539fe5e339d80 to your computer and use it in GitHub Desktop.
MaxScript to take Image Sequence and Convert to Quicktime through Nuke
PassName = substring maxfilename 1 (maxfilename.count - 4)
RenDir = MyDir + "/" + PassName
RenFile = RenDir + "/" + PassName + ".jpg"
RenSeq = RenDir + "/" + PassName + "####.jpg"
NukePath = "C:/Program Files/Nuke9.0v4/Nuke9.0.exe"
QTScript = "-x " + "D:/myfiles/QT_conv_v001.nk" + " " + PassName + " " + RenSeq
shelllaunch NukePath QTScript
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment