Re: [Nuke-users] Nuke to Shake/Fusion roto

2012-04-26 Thread Justin Ball
Ping to this discussion.  Anyone have any thoughts on getting nuke roto
shapes to a fusion .settings file or any means into fusion?

Super annoying.

Justin

On Wed, Mar 14, 2012 at 7:39 PM, Ryan O'Phelan designer...@gmail.comwrote:

 Wow, ixir looks awesome!
 On Mar 14, 2012 5:19 AM, marlor.l...@gmail.com wrote:

 Tracksperanto or IXIR software?
 I remember that one of them allowed you to export masks:
 http://guerilla-di.org/tracksperanto
 http://www.ixirdigital.com/trackeditor.php

 ---
 m

 On Wed, Mar 14, 2012 at 6:06 AM, J Bills jbillsn...@flickfx.com wrote:

 no, no nuke import.  only export.


 On Tue, Mar 13, 2012 at 5:09 PM, Deke Kincaid dekekinc...@gmail.comwrote:

 I haven't used Silhouette in a while.  Did they ever add a Rotopaint
 importer?  I ask because then you could export shake from it.

 -deke

 On Tue, Mar 13, 2012 at 22:25, teidenzero 
 nuke-users-re...@thefoundry.co.uk wrote:

 **
 Hello everyone,
 I was wondering if there is a way to export Nuke roto files into Shake
 or Fusion without having to render out the matte.
 I heard about exporting ASCII but I'm not really sure what that means
 and how needs to be done.
 Can anyone help?

 Thank you very much

 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users



 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users



 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users



 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users


 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users




-- 
Justin Ball VFX
VFX Supervisor, Comp, Effects, Pipeline and more...
jus...@justinballvfx.com
818.384.0923
___
Nuke-users mailing list
Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users

[Nuke-users] Write node - TCL directory navigation question

2012-04-26 Thread Rich Bobo
Hi,

Does anyone know how to indicate a relative directory change in TCL? In a Write 
node, I'd like to designate the directory to write files to that is parallel to 
the one the script is in. I'm using this typical form to get the current script 
directory:

[file dirname [file tail [value root.name]]] 

Then, I'd like to do the equivalent of  'cd ../different_dir'. So, I'd like to 
have a (hopefully short) chunk of code that would a) grab the script's current 
directory, b) navigate up one directory and c) indicate the parallel directory 
to write the files to. Should be easy - I just don't know if it's possible with 
TCL or if I have to combine some Python in there...

Thanks for any help!

Rich


Rich Bobo
Senior VFX Compositor

Mobile:  (248) 840-2665
Web:  http://richbobo.com/

___
Nuke-users mailing list
Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users

Re: [Nuke-users] Write node - TCL directory navigation question

2012-04-26 Thread Rich Bobo
OK, I shouldn't try to write emails *before* I've had my morning coffee! The 
code I'm using to get the script path is actually:

[file rootname [value root.name]]

Rich

On Apr 26, 2012, at 8:57 AM, Rich Bobo wrote:

 Hi,
 
 Does anyone know how to indicate a relative directory change in TCL? In a 
 Write node, I'd like to designate the directory to write files to that is 
 parallel to the one the script is in. I'm using this typical form to get the 
 current script directory:
 
 [file dirname [file tail [value root.name]]] 
 
 Then, I'd like to do the equivalent of  'cd ../different_dir'. So, I'd like 
 to have a (hopefully short) chunk of code that would a) grab the script's 
 current directory, b) navigate up one directory and c) indicate the parallel 
 directory to write the files to. Should be easy - I just don't know if it's 
 possible with TCL or if I have to combine some Python in there...
 
 Thanks for any help!
 
 Rich
 
 
 Rich Bobo
 Senior VFX Compositor
 
 Mobile:  (248) 840-2665
 Web:  http://richbobo.com/
 
 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users

___
Nuke-users mailing list
Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users

Re: [Nuke-users] Write node - TCL directory navigation question

2012-04-26 Thread Howard Jones
[file dirname  [value root.name]]/../ [file tail [value root.name]] 

should do it I think

 
Howard




 From: Rich Bobo richb...@mac.com
To: Nuke-Users Mailing List nuke-users@support.thefoundry.co.uk 
Sent: Thursday, 26 April 2012, 13:57
Subject: [Nuke-users] Write node - TCL directory navigation question
 

Hi,


Does anyone know how to indicate a relative directory change in TCL? In a 
Write node, I'd like to designate the directory to write files to that is 
parallel to the one the script is in. I'm using this typical form to get the 
current script directory:


[file dirname [file tail [value root.name]]] 


Then, I'd like to do the equivalent of  'cd ../different_dir'. So, I'd like to 
have a (hopefully short) chunk of code that would a) grab the script's current 
directory, b) navigate up one directory and c) indicate the parallel directory 
to write the files to. Should be easy - I just don't know if it's possible 
with TCL or if I have to combine some Python in there...


Thanks for any help!


Rich


Rich Bobo
Senior VFX Compositor

Mobile:  (248) 840-2665Web:  http://richbobo.com/ 

___
Nuke-users mailing list
Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users

___
Nuke-users mailing list
Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users

Re: [Nuke-users] Write node - TCL directory navigation question

2012-04-26 Thread Howard Jones
[file dirname  [value root.name]]/../
to be more precise

 
Howard




 From: Howard Jones mrhowardjo...@yahoo.com
To: Nuke user discussion nuke-users@support.thefoundry.co.uk 
Sent: Thursday, 26 April 2012, 14:11
Subject: Re: [Nuke-users] Write node - TCL directory navigation question
 

[file dirname  [value root.name]]/../ [file tail [value root.name]] 

should do it I think
 
Howard




 From: Rich Bobo richb...@mac.com
To: Nuke-Users Mailing List nuke-users@support.thefoundry.co.uk 
Sent: Thursday, 26 April 2012, 13:57
Subject: [Nuke-users] Write node - TCL directory navigation question
 

Hi,


Does anyone know how to indicate a relative directory change in TCL? In a 
Write node, I'd like to designate the directory to write files to that is 
parallel to the one the script is in. I'm using this typical form to get the 
current script directory:


[file dirname [file tail [value root.name]]] 


Then, I'd like to do the equivalent of  'cd ../different_dir'. So, I'd like 
to have a (hopefully short) chunk of code that would a) grab the script's 
current directory, b) navigate up one directory and c) indicate the parallel 
directory to write the files to. Should be easy - I just don't know if it's 
possible with TCL or if I have to combine some Python in there...


Thanks for any help!


Rich


Rich Bobo
Senior VFX Compositor

Mobile:  (248) 840-2665Web:  http://richbobo.com/ 

___
Nuke-users mailing list
Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users


___
Nuke-users mailing list
Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users

___
Nuke-users mailing list
Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users

Re: [Nuke-users] Write node - TCL directory navigation question

2012-04-26 Thread Rich Bobo
Howard,

Hmm... That just seems to append /../ to the path and doesn't actually perform 
the change directory command... Unless I'm missing something.

Thanks,
Rich


On Apr 26, 2012, at 9:14 AM, Howard Jones wrote:

 [file dirname  [value root.name]]/../
 to be more precise
  
 Howard
 
 From: Howard Jones mrhowardjo...@yahoo.com
 To: Nuke user discussion nuke-users@support.thefoundry.co.uk 
 Sent: Thursday, 26 April 2012, 14:11
 Subject: Re: [Nuke-users] Write node - TCL directory navigation question
 
 [file dirname  [value root.name]]/../ [file tail [value root.name]] 
 should do it I think
  
 Howard
 
 From: Rich Bobo richb...@mac.com
 To: Nuke-Users Mailing List nuke-users@support.thefoundry.co.uk 
 Sent: Thursday, 26 April 2012, 13:57
 Subject: [Nuke-users] Write node - TCL directory navigation question
 
 Hi,
 
 Does anyone know how to indicate a relative directory change in TCL? In a 
 Write node, I'd like to designate the directory to write files to that is 
 parallel to the one the script is in. I'm using this typical form to get the 
 current script directory:
 
 [file dirname [file tail [value root.name]]] 
 
 Then, I'd like to do the equivalent of  'cd ../different_dir'. So, I'd like 
 to have a (hopefully short) chunk of code that would a) grab the script's 
 current directory, b) navigate up one directory and c) indicate the parallel 
 directory to write the files to. Should be easy - I just don't know if it's 
 possible with TCL or if I have to combine some Python in there...
 
 Thanks for any help!
 
 Rich
 
 
 Rich Bobo
 Senior VFX Compositor
 
 Mobile:  (248) 840-2665
 Web:  http://richbobo.com/
 
 
 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users
 
 
 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users
 
 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users

___
Nuke-users mailing list
Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users

Re: [Nuke-users] Write node - TCL directory navigation question

2012-04-26 Thread Rich Bobo
I tried...

[file dirname [value root.name]][cd ../Comp]

...and it gives me the error couldn't change working directory to ../Comp: 
no such file or directory.  So, I'm thinking that I have to somehow embed the 
cd command as part of the original dirname command. It seems that the cd 
doesn't work because it's outside of that command and is handled as a 
separate, unrelated command...

Rich


On Apr 26, 2012, at 9:38 AM, Rich Bobo wrote:

 Howard,
 
 Hmm... That just seems to append /../ to the path and doesn't actually 
 perform the change directory command... Unless I'm missing something.
 
 Thanks,
 Rich
 
 
 On Apr 26, 2012, at 9:14 AM, Howard Jones wrote:
 
 [file dirname  [value root.name]]/../
 to be more precise
  
 Howard
 
 From: Howard Jones mrhowardjo...@yahoo.com
 To: Nuke user discussion nuke-users@support.thefoundry.co.uk 
 Sent: Thursday, 26 April 2012, 14:11
 Subject: Re: [Nuke-users] Write node - TCL directory navigation question
 
 [file dirname  [value root.name]]/../ [file tail [value root.name]] 
 should do it I think
  
 Howard
 
 From: Rich Bobo richb...@mac.com
 To: Nuke-Users Mailing List nuke-users@support.thefoundry.co.uk 
 Sent: Thursday, 26 April 2012, 13:57
 Subject: [Nuke-users] Write node - TCL directory navigation question
 
 Hi,
 
 Does anyone know how to indicate a relative directory change in TCL? In a 
 Write node, I'd like to designate the directory to write files to that is 
 parallel to the one the script is in. I'm using this typical form to get the 
 current script directory:
 
 [file dirname [file tail [value root.name]]] 
 
 Then, I'd like to do the equivalent of  'cd ../different_dir'. So, I'd like 
 to have a (hopefully short) chunk of code that would a) grab the script's 
 current directory, b) navigate up one directory and c) indicate the parallel 
 directory to write the files to. Should be easy - I just don't know if it's 
 possible with TCL or if I have to combine some Python in there...
 
 Thanks for any help!
 
 Rich
 
 
 Rich Bobo
 Senior VFX Compositor
 
 Mobile:  (248) 840-2665
 Web:  http://richbobo.com/
 
 
 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users
 
 
 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users
 
 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users
 
 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users

___
Nuke-users mailing list
Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users

Re: [Nuke-users] Write node - TCL directory navigation question

2012-04-26 Thread Nathan Rusch
[file dirname [file dirname [value root.name]]] should do it.

Nathan

On Apr 26, 2012, at 6:46 AM, Rich Bobo richb...@mac.com wrote:

 I tried...
 
 [file dirname [value root.name]][cd ../Comp]
 
 ...and it gives me the error couldn't change working directory to ../Comp: 
 no such file or directory.  So, I'm thinking that I have to somehow embed 
 the cd command as part of the original dirname command. It seems that the cd 
 doesn't work because it's outside of that command and is handled as a 
 separate, unrelated command...
 
 Rich
 
 
 On Apr 26, 2012, at 9:38 AM, Rich Bobo wrote:
 
 Howard,
 
 Hmm... That just seems to append /../ to the path and doesn't actually 
 perform the change directory command... Unless I'm missing something.
 
 Thanks,
 Rich
 
 
 On Apr 26, 2012, at 9:14 AM, Howard Jones wrote:
 
 [file dirname  [value root.name]]/../
 to be more precise
  
 Howard
 
 From: Howard Jones mrhowardjo...@yahoo.com
 To: Nuke user discussion nuke-users@support.thefoundry.co.uk 
 Sent: Thursday, 26 April 2012, 14:11
 Subject: Re: [Nuke-users] Write node - TCL directory navigation question
 
 [file dirname  [value root.name]]/../ [file tail [value root.name]] 
 should do it I think
  
 Howard
 
 From: Rich Bobo richb...@mac.com
 To: Nuke-Users Mailing List nuke-users@support.thefoundry.co.uk 
 Sent: Thursday, 26 April 2012, 13:57
 Subject: [Nuke-users] Write node - TCL directory navigation question
 
 Hi,
 
 Does anyone know how to indicate a relative directory change in TCL? In a 
 Write node, I'd like to designate the directory to write files to that is 
 parallel to the one the script is in. I'm using this typical form to get 
 the current script directory:
 
 [file dirname [file tail [value root.name]]] 
 
 Then, I'd like to do the equivalent of  'cd ../different_dir'. So, I'd like 
 to have a (hopefully short) chunk of code that would a) grab the script's 
 current directory, b) navigate up one directory and c) indicate the 
 parallel directory to write the files to. Should be easy - I just don't 
 know if it's possible with TCL or if I have to combine some Python in 
 there...
 
 Thanks for any help!
 
 Rich
 
 
 Rich Bobo
 Senior VFX Compositor
 
 Mobile:  (248) 840-2665
 Web:  http://richbobo.com/
 
 
 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users
 
 
 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users
 
 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users
 
 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users
 
 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users
___
Nuke-users mailing list
Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users

Re: [Nuke-users] Write node - TCL directory navigation question

2012-04-26 Thread Rich Bobo
Wow. I knew it had to be simple - thanks, Nathan!

Rich


On Apr 26, 2012, at 11:13 AM, Nathan Rusch wrote:

 [file dirname [file dirname [value root.name]]] should do it.
 
 Nathan
 
 On Apr 26, 2012, at 6:46 AM, Rich Bobo richb...@mac.com wrote:
 
 I tried...
 
 [file dirname [value root.name]][cd ../Comp]
 
 ...and it gives me the error couldn't change working directory to 
 ../Comp: no such file or directory.  So, I'm thinking that I have to 
 somehow embed the cd command as part of the original dirname command. It 
 seems that the cd doesn't work because it's outside of that command and is 
 handled as a separate, unrelated command...
 
 Rich
 
 
 On Apr 26, 2012, at 9:38 AM, Rich Bobo wrote:
 
 Howard,
 
 Hmm... That just seems to append /../ to the path and doesn't actually 
 perform the change directory command... Unless I'm missing something.
 
 Thanks,
 Rich
 
 
 On Apr 26, 2012, at 9:14 AM, Howard Jones wrote:
 
 [file dirname  [value root.name]]/../
 to be more precise
  
 Howard
 
 From: Howard Jones mrhowardjo...@yahoo.com
 To: Nuke user discussion nuke-users@support.thefoundry.co.uk 
 Sent: Thursday, 26 April 2012, 14:11
 Subject: Re: [Nuke-users] Write node - TCL directory navigation question
 
 [file dirname  [value root.name]]/../ [file tail [value root.name]] 
 should do it I think
  
 Howard
 
 From: Rich Bobo richb...@mac.com
 To: Nuke-Users Mailing List nuke-users@support.thefoundry.co.uk 
 Sent: Thursday, 26 April 2012, 13:57
 Subject: [Nuke-users] Write node - TCL directory navigation question
 
 Hi,
 
 Does anyone know how to indicate a relative directory change in TCL? In a 
 Write node, I'd like to designate the directory to write files to that is 
 parallel to the one the script is in. I'm using this typical form to get 
 the current script directory:
 
 [file dirname [file tail [value root.name]]] 
 
 Then, I'd like to do the equivalent of  'cd ../different_dir'. So, I'd 
 like to have a (hopefully short) chunk of code that would a) grab the 
 script's current directory, b) navigate up one directory and c) indicate 
 the parallel directory to write the files to. Should be easy - I just 
 don't know if it's possible with TCL or if I have to combine some Python 
 in there...
 
 Thanks for any help!
 
 Rich
 
 
 Rich Bobo
 Senior VFX Compositor
 
 Mobile:  (248) 840-2665
 Web:  http://richbobo.com/
 
 
 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users
 
 
 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users
 
 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users
 
 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users
 
 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users
 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users

___
Nuke-users mailing list
Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users

Re: [Nuke-users] Write node - TCL directory navigation question

2012-04-26 Thread Howard Jones
You must be missing something or I'm misunderstanding what you want

[file dirname  [value root.name]]/../foo/bar.%04d.exr

will render up one directory from the script - then into 'foo' with img seq' 
bar' which is what I understand you want to do
at least it does here.

 
Howard




 From: Rich Bobo richb...@mac.com
To: Howard Jones mrhowardjo...@yahoo.com; Nuke user discussion 
nuke-users@support.thefoundry.co.uk 
Sent: Thursday, 26 April 2012, 14:38
Subject: Re: [Nuke-users] Write node - TCL directory navigation question
 

Howard,


Hmm... That just seems to append /../ to the path and doesn't actually perform 
the change directory command... Unless I'm missing something.


Thanks,
Rich




On Apr 26, 2012, at 9:14 AM, Howard Jones wrote:

[file dirname  [value root.name]]/../
to be more precise

 
Howard




 From: Howard Jones mrhowardjo...@yahoo.com
To: Nuke user discussion nuke-users@support.thefoundry.co.uk 
Sent: Thursday, 26 April 2012, 14:11
Subject: Re: [Nuke-users] Write node - TCL directory navigation question
 

[file dirname  [value root.name]]/../ [file tail [value root.name]] 

should do it I think
 
Howard




 From: Rich Bobo richb...@mac.com
To: Nuke-Users Mailing List nuke-users@support.thefoundry.co.uk 
Sent: Thursday, 26 April 2012, 13:57
Subject: [Nuke-users] Write node - TCL directory navigation question
 

Hi,


Does anyone know how to indicate a relative directory change in TCL? In a 
Write node, I'd like to designate the directory to write files to that is 
parallel to the one the script is in. I'm using this typical form to get 
the current script directory:


[file dirname [file tail [value root.name]]] 


Then, I'd like to do the equivalent of  'cd ../different_dir'. So, I'd like 
to have a (hopefully short) chunk of code that would a) grab the script's 
current directory, b) navigate up one directory and c) indicate the 
parallel directory to write the files to. Should be easy - I just don't 
know if it's possible with TCL or if I have to combine some Python in 
there...


Thanks for any help!


Rich


Rich Bobo
Senior VFX Compositor

Mobile:  (248) 840-2665Web:  http://richbobo.com/ 

___
Nuke-users mailing list
Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users


___
Nuke-users mailing list
Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users

___
Nuke-users mailing list
Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users


___
Nuke-users mailing list
Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users

Re: [Nuke-users] Write node - TCL directory navigation question

2012-04-26 Thread Rich Bobo
Howard,

Thanks. Maybe it does render to the correct place when actually processing a 
render. I was only looking at what it evaluated to and it was just showing me 
the /../ in the path and not the actual evaluated path - where it was going 
to go. Nathan's suggestion of adding another enclosing dirname did the trick 
for what I needed:

[file dirname [file dirname [value root.name]]] 

Thanks for the help!

Rich

On Apr 26, 2012, at 1:13 PM, Howard Jones wrote:

 You must be missing something or I'm misunderstanding what you want
 
 [file dirname  [value root.name]]/../foo/bar.%04d.exr
 
 will render up one directory from the script - then into 'foo' with img seq' 
 bar' which is what I understand you want to do
 at least it does here.
  
 Howard
 
 From: Rich Bobo richb...@mac.com
 To: Howard Jones mrhowardjo...@yahoo.com; Nuke user discussion 
 nuke-users@support.thefoundry.co.uk 
 Sent: Thursday, 26 April 2012, 14:38
 Subject: Re: [Nuke-users] Write node - TCL directory navigation question
 
 Howard,
 
 Hmm... That just seems to append /../ to the path and doesn't actually 
 perform the change directory command... Unless I'm missing something.
 
 Thanks,
 Rich
 
 
 On Apr 26, 2012, at 9:14 AM, Howard Jones wrote:
 
 [file dirname  [value root.name]]/../
 to be more precise
  
 Howard
 
 From: Howard Jones mrhowardjo...@yahoo.com
 To: Nuke user discussion nuke-users@support.thefoundry.co.uk 
 Sent: Thursday, 26 April 2012, 14:11
 Subject: Re: [Nuke-users] Write node - TCL directory navigation question
 
 [file dirname  [value root.name]]/../ [file tail [value root.name]] 
 should do it I think
  
 Howard
 
 From: Rich Bobo richb...@mac.com
 To: Nuke-Users Mailing List nuke-users@support.thefoundry.co.uk 
 Sent: Thursday, 26 April 2012, 13:57
 Subject: [Nuke-users] Write node - TCL directory navigation question
 
 Hi,
 
 Does anyone know how to indicate a relative directory change in TCL? In a 
 Write node, I'd like to designate the directory to write files to that is 
 parallel to the one the script is in. I'm using this typical form to get the 
 current script directory:
 
 [file dirname [file tail [value root.name]]] 
 
 Then, I'd like to do the equivalent of  'cd ../different_dir'. So, I'd like 
 to have a (hopefully short) chunk of code that would a) grab the script's 
 current directory, b) navigate up one directory and c) indicate the parallel 
 directory to write the files to. Should be easy - I just don't know if it's 
 possible with TCL or if I have to combine some Python in there...
 
 Thanks for any help!
 
 Rich
 
 
 Rich Bobo
 Senior VFX Compositor
 
 Mobile:  (248) 840-2665
 Web:  http://richbobo.com/
 
 
 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users
 
 
 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users
 
 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users
 
 
 
 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users

___
Nuke-users mailing list
Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users

Re: [Nuke-users] Re: Renderman in Nuke, Maximum particle count?

2012-04-26 Thread Deke Kincaid
I would still send this to supp...@thefoundry.co.uk even though you found a
work around so it can be fixed in the future.

-deke

On Mon, Apr 23, 2012 at 17:05, Alex - alex...@gmail.com wrote:

 False alarm.
 For future reference...

 Turns out this was actually something else..
 Seems like using multiple scene nodes in sequence was causing the points
 to be culled..

 If you refer to the DAG screen shot there are 2 setups, one with a series
 of transformGeo nodes and scene nodes being used in sequence to double the
 point coulds, 2,4,8 etc, and another with many Transform Geo nodes and a
 single Scene node 1,2,3,4 etc.

 DAG screenshot:
 http://dl.dropbox.com/u/3656251/rendermanCullExample_v001.jpg

 Both layouts produce identical output, and render the identically in the
 ScanlineRenderer, but via Renderman each additional Scene node causes more
 points to be culled..

 -Alex



 On Mon, Apr 23, 2012 at 12:38 PM, Alex - alex...@gmail.com wrote:

 Hey guys...

 I'm having some issues rendering point clouds using the PrmanRender node.

 Basically im using the PositionToPoints - ParticleEmitter hack to render
 a bunch of little objects that I dont want to use real geo for..
 Using the PrmanRender node I can render 1 or 2 instances perfectly, but
 once I jump to 3 or more Renderman starts to randomly cull points from my
 scene, the Scanline renderer will keep rendering all the points no matter
 how many I throw at it, but Renderman culls more and more as I throw more
 at it..

 Does anyone know if the Nuke to Renderman exporter being used by the
 PrmanRender node has some sort of preset upper limit or particle count?
 If so can it being modified anywhere vaugely accessable?and

 Regards
 Alex



 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users

___
Nuke-users mailing list
Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users

Re: [Nuke-users] Write node - TCL directory navigation question

2012-04-26 Thread Howard Jones
Yes - I've used that as well, the only problem is it becomes less clear when 
you need to go up several directories for example,
which is why I use this method (for proxy generation in this case).

But as you say it will not evaluate in the file path (though does show you 
correctly in the browser section).

 
Howard




 From: Rich Bobo richb...@mac.com
To: Howard Jones mrhowardjo...@yahoo.com; Nuke user discussion 
nuke-users@support.thefoundry.co.uk 
Sent: Thursday, 26 April 2012, 20:28
Subject: Re: [Nuke-users] Write node - TCL directory navigation question
 

Howard,


Thanks. Maybe it does render to the correct place when actually processing a 
render. I was only looking at what it evaluated to and it was just showing me 
the /../ in the path and not the actual evaluated path - where it was going 
to go. Nathan's suggestion of adding another enclosing dirname did the trick 
for what I needed:


[file dirname [file dirname [value root.name]]] 


Thanks for the help!


Rich


On Apr 26, 2012, at 1:13 PM, Howard Jones wrote:

You must be missing something or I'm misunderstanding what you want


[file dirname  [value root.name]]/../foo/bar.%04d.exr


will render up one directory from the script - then into 'foo' with img seq' 
bar' which is what I understand you want to do
at least it does here.

 
Howard




 From: Rich Bobo richb...@mac.com
To: Howard Jones mrhowardjo...@yahoo.com; Nuke user discussion 
nuke-users@support.thefoundry.co.uk 
Sent: Thursday, 26 April 2012, 14:38
Subject: Re: [Nuke-users] Write node - TCL directory navigation question
 

Howard,


Hmm... That just seems to append /../ to the path and doesn't actually 
perform the change directory command... Unless I'm missing something.


Thanks,
Rich




On Apr 26, 2012, at 9:14 AM, Howard Jones wrote:

[file dirname  [value root.name]]/../
to be more precise

 
Howard




 From: Howard Jones mrhowardjo...@yahoo.com
To: Nuke user discussion nuke-users@support.thefoundry.co.uk 
Sent: Thursday, 26 April 2012, 14:11
Subject: Re: [Nuke-users] Write node - TCL directory navigation question
 

[file dirname  [value root.name]]/../ [file tail [value root.name]] 

should do it I think
 
Howard




 From: Rich Bobo richb...@mac.com
To: Nuke-Users Mailing List nuke-users@support.thefoundry.co.uk 
Sent: Thursday, 26 April 2012, 13:57
Subject: [Nuke-users] Write node - TCL directory navigation question
 

Hi,


Does anyone know how to indicate a relative directory change in TCL? In a 
Write node, I'd like to designate the directory to write files to that is 
parallel to the one the script is in. I'm using this typical form to get 
the current script directory:


[file dirname [file tail [value root.name]]] 


Then, I'd like to do the equivalent of  'cd ../different_dir'. So, I'd 
like to have a (hopefully short) chunk of code that would a) grab the 
script's current directory, b) navigate up one directory and c) indicate 
the parallel directory to write the files to. Should be easy - I just 
don't know if it's possible with TCL or if I have to combine some Python 
in there...


Thanks for any help!


Rich


Rich Bobo
Senior VFX Compositor

Mobile:  (248) 840-2665Web:  http://richbobo.com/ 

___
Nuke-users mailing list
Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users


___
Nuke-users mailing list
Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users

___
Nuke-users mailing list
Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users


___
Nuke-users mailing list
Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users


___
Nuke-users mailing list
Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users

Re: [Nuke-users] Nuke to Shake/Fusion roto

2012-04-26 Thread J Bills
i've not verified, but the IXIR software mentioned seems to be the swiss
army knife that does it.

On Thu, Apr 26, 2012 at 3:50 AM, Justin Ball blamsamm...@gmail.com wrote:

 Ping to this discussion.  Anyone have any thoughts on getting nuke roto
 shapes to a fusion .settings file or any means into fusion?

 Super annoying.

 Justin


 On Wed, Mar 14, 2012 at 7:39 PM, Ryan O'Phelan designer...@gmail.comwrote:

 Wow, ixir looks awesome!
 On Mar 14, 2012 5:19 AM, marlor.l...@gmail.com wrote:

 Tracksperanto or IXIR software?
 I remember that one of them allowed you to export masks:
 http://guerilla-di.org/tracksperanto
 http://www.ixirdigital.com/trackeditor.php

 ---
 m

 On Wed, Mar 14, 2012 at 6:06 AM, J Bills jbillsn...@flickfx.com wrote:

 no, no nuke import.  only export.


 On Tue, Mar 13, 2012 at 5:09 PM, Deke Kincaid dekekinc...@gmail.comwrote:

 I haven't used Silhouette in a while.  Did they ever add a Rotopaint
 importer?  I ask because then you could export shake from it.

 -deke

 On Tue, Mar 13, 2012 at 22:25, teidenzero 
 nuke-users-re...@thefoundry.co.uk wrote:

  Hello everyone,
 I was wondering if there is a way to export Nuke roto files into
 Shake or Fusion without having to render out the matte.
 I heard about exporting ASCII but I'm not really sure what that means
 and how needs to be done.
 Can anyone help?

 Thank you very much

 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users



 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users



 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users



 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users


 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users




  --
 Justin Ball VFX
 VFX Supervisor, Comp, Effects, Pipeline and more...
 jus...@justinballvfx.com
 818.384.0923


 ___
 Nuke-users mailing list
 Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
 http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users

___
Nuke-users mailing list
Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users