Merges full history from art-dag/mono.git into the monorepo under the artdag/ directory. Contains: core (DAG engine), l1 (Celery rendering server), l2 (ActivityPub registry), common (shared templates/middleware), client (CLI), test (e2e). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> git-subtree-dir: artdag git-subtree-mainline:1a179de547git-subtree-split:4c2e716558
43 lines
820 B
YAML
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
|