10 lines
306 B
Bash
Executable File
10 lines
306 B
Bash
Executable File
#!/bin/bash
|
|
# Quick start script - starts streaming with default pipeline
|
|
|
|
SOCKET="/tmp/vizion_control.sock"
|
|
|
|
echo "Starting stream with default pipeline (videoconvert ! autovideosink)..."
|
|
echo '{"command":"start_stream"}' | socat - UNIX-CONNECT:$SOCKET
|
|
|
|
echo "Stream started. Use stop_stream.sh to stop."
|