nuke.nodes.Read()

hi, 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

No Responses to “nuke.nodes.Read()”

Post a Comment