ComfyUI Node

AM Seed

A ComfyUI node in AM VFX Tools/Util with 5 inputs and 1 output.

By am-pipeline-prod·Created 4 months ago·Updated 2 months ago· 3
AM Seed
    • seed
    moderandomize
    value0
    step1
    min0
    max2147483647
    CategoryAM VFX Tools/Util

    Inputs (5)

    NameTypeDefaultDescription
    modeCOMBOrandomizeSeed selection mode. randomize = fresh draw from [min,max] each prompt (default). fixed = emit `value` clamped to [min,max]. increment / decrement = `value ± step·n` per execution, clamped at the bounds. Mode logic runs server-side so it behaves identically on headless render farms.
    valueINT00–2147483647fixed: emitted directly (clamped to [min,max]). increment / decrement: starting base; advances by `step` per execution. randomize: ignored — a fresh value is drawn from [min,max].
    stepINT11–1000000increment / decrement step. Ignored in fixed / randomize modes.
    minINT00–2147483647Lower bound used by randomize and as a clamp for the others.
    maxINT21474836470–2147483647Upper bound used by randomize and as a clamp for the others. Default 2,147,483,647 (int32 max) for compatibility with API nodes that reject larger seeds.

    Outputs (1)

    NameTypeDescription
    seedINTResolved seed value. Wire into samplers / API nodes that take a seed input. AM Image Write / AM Video Write also pick up this seed automatically via the process-global registry (their `seed` widget at -1 = look up).