Encue (pronounced "on cue") is a simple TUI-based application for running sound cues. It is primarily designed for use in a theater setting.
Encue gets sound cues from a "script" stored in the app's
working directory. This script should be a
YAML file named script.yaml
and contain cues which reference audio files relative to the
working directory.
The most important field of the script is the cues
field,
which contains an ordered list of all cues in the file.
A cue contains the following fields:
yaml
- label: ... # A unique identifier for this cue used by other cues to reference this one
description: ... # OPTIONAL: a short description of the cue to display to the user
hint: ... # OPTIONAL: the line or visual cue that signals this cue
# ACTION: see below
In addition to the fields above, each cue must contain one action directive. Action directives usually have a short form with a single parameter and a long form with more advanced parameters.
Possible action directives include:
``yaml
playback: <filename> # Play the file at
filename`
playback:
file: x
seconds of the file
fade_in: x
seconds
playlist: folder
as a playlist
playlist:
folder: ...
files: # OPTIONAL: list of files to play
- ...
- ... # Must specify at least one of files
and folder
- ...
volume: ... # Volume (0-100) to start at (default: 100)
loop:
fade:
fade:
target:
stop:
```
The following is an example of a valid script file
yaml
cues:
- label: SQ1
description: my first sound cue
playback: my_sound_cue.mp3
- label: SQ2
description: fade out my first sound cue
fade:
target: SQ1
duration: 20
encue
is under active development as a hobby/side project. Below are
some features I hope to implement soon:
Additional UI elements: - An audio visualizer - A clock - A list of active playback cues with progress bar for elapsed time - Show cue loading status - Jump to a cue by its label
Additional cue parameters: - Crossfade between files in a playlist - Fade out playback cues after set duration