Sep
21
nuke.nodes.Read()
Posted in: NUKE from The Foundryhi, i use python to create a Read node.
Code:
nuke.nodes.Read(file="~/path/file.mov")
it creates a node with frame range 1-1. So to get the full clip range i have to enter manually using ‘last=’ :
Code:
nuke.nodes.Read(file="~/path/file.mov",last=50)
Is there any way to automtically get the framerange from a movie file, without explicitely using ‘last’ ?
thanx
Post a Comment