[Nuke-users] Autoload both eyes from stereo file sequences?

2011-10-24 Thread VikD
Hi, is there way to automatically load both left and right stereo file sequences when they are in the same folder instead of manually changing filename later in reader, for example change myfilename.l.exr to myfilename.%v.exr ? ___ Nuke-users

Re: [Nuke-users] Autoload both eyes from stereo file sequences?

2011-10-24 Thread Hugh Macdonald
I don't believe that the file browser supports the detection of stereo sequences. You could probably write your own file browser to do this (I know that this has been done in some places), but as far as I know, this isn't a built-in option. Hugh Macdonald nvizible – VISUAL EFFECTS

Re: [Nuke-users] Autoload both eyes from stereo file sequences?

2011-10-24 Thread Howard Jones
Macdonald li...@hughmacdonald.co.uk To: nuke-users@support.thefoundry.co.uk Sent: Monday, 24 October 2011, 10:06 Subject: Re: [Nuke-users] Autoload both eyes from stereo file sequences? I don't believe that the file browser supports the detection of stereo sequences. You could probably write your own

Re: [Nuke-users] Autoload both eyes from stereo file sequences?

2011-10-24 Thread Johannes Hezer
Hi I have not tried myself but you could set up a filter for the filenames.. typically that is used for converting between different operating systems maybe it works for stereo, too ? import nuke import os def stereoFilename(filename) x = filename.replace( '_l_', '%v' ) return x