mirror of
git://f0xx.org/ac/ac-ms-media-transcode
synced 2026-07-29 04:38:08 +03:00
Encode-once/fanout scripts, HLS output, and single overloadable env source. Commits assets/pirate_drift.png as default watermark for cluster runs. Co-authored-by: Cursor <cursoragent@cursor.com>
7 lines
162 B
Bash
7 lines
162 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
log() { printf '[%s] %s\n' "$(date '+%H:%M:%S')" "$*" >&2; }
|
|
warn() { log "WARN: $*"; }
|
|
die() { log "ERROR: $*"; exit 1; }
|