Skip to content

Feature request: Add support for non-contiguous frame ranges in V-Ray Standalone workflow #233

Description

@ZainAallii

Describe the problem

get_frame_range_from_string() in vrscene_job_submission.py only returns a single
(start, end) tuple representing a contiguous frame range. The OpenJD job template
uses range: "{{Param.Frames}}" which also only supports contiguous ranges.

If a user submits a non-contiguous frame list like 1-10,20-30, the function parses
it incorrectly and the job renders the wrong frames.

Proposed Solution

Two options:

  1. Expand non-contiguous ranges to the full bounding range (e.g. 1-10,20-30
    render frames 1-30, skipping frames 11-19). Simple but renders extra frames.

  2. Split non-contiguous ranges into multiple job submissions, one per contiguous
    segment. More accurate but more complex.

Recommend option 1 as the simpler approach with a warning to the user that gaps
will be filled.

Example Use Cases

  1. Artist wants to re-render only specific frames 1-5,50-55,100 after a lighting
    change without re-rendering the full sequence
  2. Studio pipeline generates frame lists with gaps for pickup renders

Related

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions