11 lines
559 B
Bash
Executable file
11 lines
559 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
export LLM_CONFIGS="${LLM_CONFIGS:-$HOME/src/llm-configs}"
|
|
# shellcheck source=common.sh
|
|
source "$LLM_CONFIGS/openkknd2/scripts/common.sh"
|
|
openkknd2_bootstrap "${OPENKKND2_ROOT:-$HOME/src/openkknd2-am-vids}"
|
|
openkknd2_print_brief "amanita-vids"
|
|
echo "Cinematics: instruction 19 + knowledge 03-cinematics."
|
|
echo " export MEDIA_SECONDS=2 MEDIA_FPS=10 MEDIA_WIDTH=640 MEDIA_HEIGHT=360"
|
|
echo " $LLM_CONFIGS/media/am-agent-vids --make-still --seconds 2 --fps 10"
|
|
echo "Move results into \$OPENKKND2_ROOT/assets/cinematics/"
|