ComfyUI Node: (deforum) Audio Schedule Expression Templates
Authored by XmYx
Created 9 months ago
Updated 2 months ago
150 stars
Category
deforum/help
Inputs
expression
- x * 2
- x / 2
- abs(x)
- x * x
- sqrt(abs(x))
- log(abs(x) + 1)
- x * sin(x)
- x * cos(x)
- -x
- x * (exp(x) - 1)
- x * pow(e, x - 1)
- x * factorial(int(abs(x)) % 5)
- x if x > 0.5 else x * 2
- min(x, 0.5)
- max(x, -0.5)
- x % 0.5
- tan(x)
- asin(min(1, max(-1, x))) / pi
- 1 / (abs(x) + 1)
- pow(e, -abs(x))
- x * t / max_f
- x * sin(2 * pi * t / max_f)
- x * exp(-t / max_f)
- x * (1 - exp(-t / max_f))
- x * cos(2 * pi * e * t / max_f)
- x * if(t < max_f / 2, 1, 0)
- x * pow(t / max_f, 2)
- x * sqrt(t / max_f)
- x * tan(pi * t / max_f)
- x * sin(2 * pi * t / max_f) * cos(2 * pi * t / max_f)
- x * sin(2 * pi * t / max_f) if t < max_f / 2 else x * cos(2 * pi * t / max_f)
- x * sin(4 * pi * t / max_f) + x * cos(2 * pi * t / max_f)
- x * (exp(t / max_f) - 1) / log(e + t)
- (x * cos(2 * pi * t / max_f)) / (1 + log(t + 1))
- x * (sin(2 * pi * t / max_f) ** 2 + cos(2 * pi * t / max_f) ** 2)
- x * (1 - abs(2 * t / max_f - 1))
- x * abs(sin(2 * pi * t / max_f))
- x * pow(e, cos(2 * pi * t / max_f))
- x * asin(sin(2 * pi * t / max_f)) / pi
- x * pow(2, sin(2 * pi * t / max_f))
- x * log(1 + abs(sin(2 * pi * t / max_f)))
- x * (sin(2 * pi * t / (max_f + t)))
- (x * cos(2 * pi * t / max_f)) / (1 + log(t + 1)) * sin(2 * pi * t / max_f)
- x * (sin(2 * pi * t / max_f) * (t % 10))
- x * exp(t / max_f) * sin(2 * pi * t / max_f)
- x * (if(t < max_f / 3, sin(2 * pi * t / max_f), cos(2 * pi * t / max_f)))
- x * (1 / (1 + exp(-t / max_f)))
- x * pow(e, -t / max_f) * cos(2 * pi * t / max_f)
- x * sin(2 * pi * t / max_f) / (1 + exp(-t / max_f))
- x * (e ** (t / max_f) - e ** (-t / max_f)) / 2
- x * (1 - (t / max_f) ** 2)
- x * tanh(2 * pi * t / max_f)
- x * factorial((int(t) % 5) + 1)
Outputs
STRING
Extension: Deforum Nodes
Official Deforum animation pipeline tools that provide a unique way to create frame-by-frame generative motion art.
Authored by XmYx