appendclip v1.0


 
This location is for Registered Users Only.
Perhaps you need to login or register.
Contributor: saurabh sameer
This small scripts puts all your selected read node into a single append node in that order,thus giving you a small time line of nodes,user can scrub through.
Requirements:
4.8, 5.0, 5.1, 5.2, 6.0, 6.1 or later
Windows
28 Jul 2010
190

Here the Function :

1
2
3
4
5
6
7
8
9
10
11
def appendallclips():
 
    sw=nuke.nodes.AppendClip()
    an = [n for n in nuke.allNodes() if n.Class() == "Read"] 
    s=len(an)
    print s
    x=0
    while x != s:
        sw.setInput(x,an[x])
        x=x+1
 

and to add the button in your menu py.

1
2
mymenu=nuke.toolbar('Nodes',)
mymenu.addCommand('Clip Line UP','appendallclips()')

 

 

Please login in order to download these files.

Comments   

 
0 # Zach Lewis 2011-08-20 15:42
So blissfully useful. Thanks!
 
 
0 # Andrew Kow 2012-06-27 22:15
Hi!

Is that possible to follow the Read node's sequence shot name in order?
example : all clip are following from sc01, sc02, sc03 .....

If this is work that are perfectly work well~
Thanks
 

You have no rights to post comments

We have 2430 guests and 66 members online