kubabuk Posted June 15, 2006 Share Posted June 15, 2006 I'm not sure if comand line tools support $F variable? How can I convert sequence...? Thanks Kuba Quote Link to comment Share on other sites More sharing options...
zoki Posted June 16, 2006 Share Posted June 16, 2006 hi is this waht you need http://www.odforce.net/wiki/index.php/CreatingMovieFile I did it yesterday and it works check it here: http://www.sidefx.com/index.php?option=com...iewtopic&t=5362 Quote Link to comment Share on other sites More sharing options...
kubabuk Posted June 16, 2006 Author Share Posted June 16, 2006 Hi, Thanks but I think I was slightly misunderstood. I am trying to convert sequence of 32bit floating point Zdepth images to 8bit using commandline tool IZG - and have problem to figure out how can I convert the sequence... Thanks, Kuba Quote Link to comment Share on other sites More sharing options...
crunch Posted June 16, 2006 Share Posted June 16, 2006 Hi, Thanks but I think I was slightly misunderstood. I am trying to convert sequence of 32bit floating point Zdepth images to 8bit using commandline tool IZG - and have problem to figure out how can I convert the sequence...Thanks, Kuba 28649[/snapback] Personally, I'd write a quick and dirty VEX COP to do it... If I have time, I'll put one up on the exchange... But it should be dirt simple to do this. Quote Link to comment Share on other sites More sharing options...
symek Posted June 16, 2006 Share Posted June 16, 2006 you can do it also manually in COPS treating your seq as ordinary sequence, equalize, convert to 8bit and save out to disk. Are there any reasons for not doing it in UI? cheers, SY. Quote Link to comment Share on other sites More sharing options...
michael Posted June 16, 2006 Share Posted June 16, 2006 if you're using Apprentice COPs will watermark your files.... Quote Link to comment Share on other sites More sharing options...
symek Posted June 16, 2006 Share Posted June 16, 2006 if you're using Apprentice COPs will watermark your files.... 28656[/snapback] ...so izg won't work either without proper licenese... or (?) will save *.picnc files, right? The same here COP after job done can save picnc..? Just can't check it now... Quote Link to comment Share on other sites More sharing options...
symek Posted June 16, 2006 Share Posted June 16, 2006 you can always do like that: cd to pic's directory, then: >>python >>import os >>for pic in os.listdir(''): # make sure there are only pics in this dir >>.........os.system('izg -depth 8 %s %s.%s.tiff' % (pic,pic.split('.')[0],pic.split('.')[1])) #all in one line! ... ... that's it! ugly but funny cheers, SY. [edit] ok, I feel guilty, so perhaps this would look better: >>python >>import os >>for item in os.listdir(''): >>.......if item.endswith('pic'): >>................newItem = '.'.join(item.split('.')[0:2]) >>................os.system('izg -depth 8 %s %s.tiff' % (item, newItem)) Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.