junvfx Posted April 22, 2020 Share Posted April 22, 2020 (edited) I want to use mplay save sequence image to disk. I find hscript imgsave can do it. the help -a tag can render all frames. actually not. only save one frame at a time. Texport command : imgsave -a -f 1000 1100 -i 1 C:/test/test.$F4.jpg I want save sequence image to disk. Is there any other way. please thanks Edited April 22, 2020 by junvfx Quote Link to comment Share on other sites More sharing options...
msmahesh Posted April 24, 2020 Share Posted April 24, 2020 I only find a for loop can solve this problem, for i = 1000 to 1100 imgsave -f $i $i C:/test/test.$i.jpg end Quote Link to comment Share on other sites More sharing options...
jamesr Posted January 29, 2021 Share Posted January 29, 2021 (edited) In case anyone else runs across this in the future, you need to escape the $F like so: imgsave -a "/tmp/test/test1.\$F.jpg" And if running from Python hou.hscript("imgsave -a "/tmp/test/test1.\$\F.jpg") Edited January 30, 2021 by jamesr 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.