Announcement

Collapse
No announcement yet.

vray submit to deadline - $F4 or ${F} not translated

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • vray submit to deadline - $F4 or ${F} not translated

    hi, me again...

    one little thing , the parsing of $F4 in the vrscene and image path works correct.
    But to use the function "view output" in Deadline, it is not "translated" corrcectly .
    In DL the frame padding is: <frame04> or <frame> instead of a real frame number.
    I added 2 pics to make it more clearly

    best regards
    Attached Files

  • #2
    That's probably what Deadline guys should add support for on their side...
    V-Ray For Houdini | V-Ray Hydra Delegate | VRayScene
    andrei.izrantcev@chaos.com
    Support Request

    Comment


    • #3
      Probably yes, but as know DL expected a "####" - Padding.
      However, for another script i translated this by myselve.

      Code:
      ​job_info = {
      "Name":str(dl_job_name),
      "Frames":"%s-%s" % (dl_frames[0],dl_frames[1]),
      "Plugin":renderer,
      "Pool":str(dl_pool),
      "Priority":str(dl_priority),
      "MachineName":platform.node(),
      "OutputDirectory0":os.path.dirname(dl_OutputFilename),
      "OutputFilename0":os.path.basename(dl_OutputFilename).replace(str(hou .intFrame()).zfill(4),"####"),
      "EnvironmentKeyValue0":prj_name,
      "EnvironmentKeyValue1":renderer_env
      }​
      Code:
      "OutputFilename0":os.path.basename(dl_OutputFilename).replace(str(hou .intFrame()).zfill(4),"####"),
      -> do the magic , u may like to solve this in the same way?
      Last edited by suedlich_t; 16-07-2020, 12:43 AM.

      Comment

      Working...
      X