From 133dacf4770c4a77c68caa7a994c76bc2f09c08b Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Tue, 9 Jun 2026 16:48:46 +0530 Subject: Add audio generation + mario theme --- justfile | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'justfile') diff --git a/justfile b/justfile index 69420b7..63f5eae 100644 --- a/justfile +++ b/justfile @@ -25,6 +25,16 @@ gen-video video_id: echo "Displaying {{video_id}}" 1>&2 ./video.sh "{{video_id}}" +audio file *args: + #!/usr/bin/env sh + set -eu + audio_id=$(just run "{{file}}" {{args}}) + just gen-audio "$audio_id" + +gen-audio audio_id: + echo "Displaying {{audio_id}}" 1>&2 + ./audio.sh "{{audio_id}}" + repl *args: rlwrap sqlite3 "{{DB}}" {{args}} -- cgit v1.3.1