Files
rose-ash/examples/simple_sequence.yaml
giles cc2dcbddd4 Squashed 'core/' content from commit 4957443
git-subtree-dir: core
git-subtree-split: 4957443184ae0eb6323635a90a19acffb3e01d07
2026-02-24 23:09:39 +00:00

43 lines
820 B
YAML

# Simple sequence recipe - concatenates segments from a single input video
name: simple_sequence
version: "1.0"
description: "Split input into segments and concatenate them"
owner: test@local
dag:
nodes:
# Input source - variable (provided at runtime)
- id: video
type: SOURCE
config:
input: true
name: "Input Video"
description: "The video to process"
# Extract first 2 seconds
- id: seg1
type: SEGMENT
config:
start: 0.0
end: 2.0
inputs:
- video
# Extract seconds 5-7
- id: seg2
type: SEGMENT
config:
start: 5.0
end: 7.0
inputs:
- video
# Concatenate the segments
- id: output
type: SEQUENCE
inputs:
- seg1
- seg2
output: output