8 lines
155 B
Bash
Executable File
8 lines
155 B
Bash
Executable File
#!/bin/bash
|
|
# Stop streaming
|
|
|
|
SOCKET="/tmp/vizion_control.sock"
|
|
|
|
echo "Stopping stream..."
|
|
echo '{"command":"stop_stream"}' | socat - UNIX-CONNECT:$SOCKET
|