File size: 448 Bytes
570b87b | 1 2 3 4 5 6 7 8 9 10 11 12 | #!/usr/bin/env bash
# spatial-report — PATH entry for Qwythos / Pi bash tool / humans.
# Wraps hoa64 CLI. Examples:
# spatial-report demo-scene -o /tmp/r.json
# spatial-report analyze /path/file.wav --ambix
# spatial-report vision --boxes '[{"az":30,"el":0,"label":"obj"}]'
# spatial-report serve
set -euo pipefail
ROOT="$(cd "$(dirname "$0")/.." && pwd)"
export PYTHONPATH="${ROOT}${PYTHONPATH:+:$PYTHONPATH}"
exec python3 -m hoa64 "$@"
|