Jump to content

Render a random set of frames


Recommended Posts

How can I render a random set of frames (ex. 4,24,56,112,345) ?

You mean like a complete random?:D Easy! This in post-frame script parm:

fcur `rand($F)*$RFEND`; render out/$OS

and toggled on "Block Until Render Complete" on a Rop will generate infinite number of frames chosen randomly from a frange. Please, don't do this, it will run forever! B)

Seriously, you need to script a command. In Python shell anything along the line:

frames = ( 4,24,56,112,345 )
rop    = hou.node("/out/mantra")

for frame in frames:
   hou.setFrame(frame)
   rop.render()

hth,

skk.

Edited by SYmek
Link to comment
Share on other sites

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...