add GStreamer helper scripts

This commit is contained in:
Maik Jurischka
2025-12-12 11:47:43 +01:00
parent 212a9ec64c
commit 43a1abdd31
11 changed files with 526 additions and 4 deletions

10
scripts/set_pipeline_display.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
# Set pipeline for local display (default)
SOCKET="/tmp/vizion_control.sock"
echo "Setting display pipeline (default)..."
echo '{"command":"set_pipeline","params":{"pipeline":"videoconvert ! autovideosink"}}' | socat - UNIX-CONNECT:$SOCKET
echo ""
echo "Pipeline set. Start display with start_stream.sh"