Image cue
Puts a still picture on a video output.
Settings
| Setting | What it does |
|---|---|
| Source | The image file |
| Output | Which video output it displays on |
| Level | Opacity, 0–100% |
| Input area | The part of the image stretched onto the output, with an option to keep its ratio |
| Mirror | Flip horizontally and/or vertically |
| Processing | Tint, brightness, contrast, saturation |
How it runs
Stays up until something stops it — another cue, Stop all, or a fade that lands on zero. Fadeable (that is what its level is), not seekable.
Invalid without a file, or with no video output configured or picked.
Scripting
duration, level, tint, brightness, contrast, saturation,
mirrorX, mirrorY. See properties.
function onTick() {
this.brightness.set(1 + Math.sin(time * 2) * 0.2);
}