This commit is contained in:
2026-04-09 18:19:03 -03:00
parent 5921cd6562
commit 5b467ffba8
18 changed files with 1793 additions and 43 deletions

21
media/ctrl/client.sh Executable file
View File

@@ -0,0 +1,21 @@
#!/bin/bash
# Build and run the media client (sender)
# Requires DRM master access — runs under sudo unless already root.
# Usage: ./client.sh [server_addr] e.g. ./client.sh mcrndeb:4444
set -euo pipefail
MEDIA_DIR="$(cd "$(dirname "$0")/.." && pwd)"
CARGO="${CARGO:-$HOME/.cargo/bin/cargo}"
LOG_DIR="$MEDIA_DIR/logs"
mkdir -p "$LOG_DIR"
"$CARGO" build -p cht-client --manifest-path "$MEDIA_DIR/Cargo.toml" 2>&1 | tee "$LOG_DIR/build-client.log"
if [ "${PIPESTATUS[0]}" -ne 0 ]; then exit 1; fi
BIN="$MEDIA_DIR/target/debug/cht-client"
if [ "$(id -u)" -ne 0 ]; then
exec sudo "$BIN" "$@"
else
exec "$BIN" "$@"
fi