/ Published in: Python
print a list of all the "read" nodes in a nuke script that has a "file" name containing 'mov'
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
for a in nuke.allNodes(): if 'Read' in a['name'].value(): if 'mov' in a['file'].value(): print a['file'].value()
URL: http://adamteale.com