-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstall.sh
executable file
·153 lines (121 loc) · 4.17 KB
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
#!/bin/bash
# Function to prompt for and save basic auth credentials
set_basic_auth_credentials() {
read -rp "Enter the Basic Auth username: " username
read -rsp "Enter the Basic Auth password: " password
echo
auth_file=".auth"
echo "BASIC_AUTH_USERNAME=$username" > "$auth_file"
echo "BASIC_AUTH_PASSWORD=$password" >> "$auth_file"
echo "BASIC_AUTH_FORCE=True" >> "$auth_file"
echo "Basic Auth credentials have been saved to $auth_file"
}
# Function to list audio devices and prompt user for selection
select_audio_device() {
arecord_output=$(arecord -l)
device_list=()
echo "Available audio devices:"
while IFS= read -r line; do
if [[ $line == *"card"* && $line == *"device"* ]]; then
device_list+=("$line")
echo "${#device_list[@]}: $line"
fi
done <<< "$arecord_output"
if [ ${#device_list[@]} -eq 0 ]; then
echo "No audio devices found. Exiting."
exit 1
fi
echo -n "Enter the number of the audio device you want to use: "
read -r device_number
if ! [[ "$device_number" =~ ^[0-9]+$ ]] || [ "$device_number" -lt 1 ] || [ "$device_number" -gt ${#device_list[@]} ]; then
echo "Invalid selection. Exiting."
exit 1
fi
chosen_device="${device_list[$((device_number - 1))]}"
device_name=$(echo "$chosen_device" | awk -F '[][]' '{print $2}')
echo "$device_name" > audio_device.txt
echo "Audio device $device_name has been written to audio_device.txt"
echo "Run the installer again if you need to change this device. You can also manually change the device in the audio_device.txt file."
}
# Get the current working directory and current user
WORK_DIR=$(pwd)
CURRENT_USER=$(whoami)
# Update and upgrade system packages
sudo apt update && sudo apt upgrade -y
# Install necessary packages
sudo apt install -y ffmpeg alsa-tools alsa-utils python3-dotenv python3-flask python3-flask-basicauth python3-psutil v4l-utils samba samba-common-bin nodejs npm git
# Change to the working directory
cd "$WORK_DIR"
# Update the code base
git pull
# Install node packages
npm install
# Rename sample.env to .env if it exists
if [ -f "sample.env" ]; then
mv sample.env .env
echo "sample.env renamed to .env"
else
echo "sample.env not found"
fi
# Rename sample.auth to .auth if it exists
if [ -f "sample.auth" ]; then
mv sample.auth .auth
echo "sample.auth renamed to .auth"
else
echo "sample.auth not found"
fi
# Prompt for and save basic auth credentials
set_basic_auth_credentials
# Setup Samba share configuration
SAMBA_CONF="/etc/samba/smb.conf"
SHARE_CONF="[raspi-streamer]
path = $WORK_DIR
browseable = yes
writable = yes
only guest = no
create mask = 0777
directory mask = 0777
public = yes"
# Remove any existing raspi-streamer configuration
sudo sed -i '/\[raspi-streamer\]/,/^$/d' "$SAMBA_CONF"
# Add the new configuration
echo "$SHARE_CONF" | sudo tee -a "$SAMBA_CONF"
sudo smbpasswd -a $CURRENT_USER
sudo systemctl restart smbd
echo "Samba share configured"
# Create stream_control service file
SERVICE_FILE="/etc/systemd/system/stream_control.service"
# Remove existing service file if it exists
if [ -f "$SERVICE_FILE" ]; then
sudo rm "$SERVICE_FILE"
echo "Existing stream_control.service deleted"
fi
# Create the new service file
sudo tee "$SERVICE_FILE" > /dev/null <<EOL
[Unit]
Description=Stream Control Service
After=network.target sound.target
[Service]
StartDelaySec=3
ExecStart=/usr/bin/sudo -E /usr/bin/python3 $WORK_DIR/stream_control.py
WorkingDirectory=$WORK_DIR
StandardOutput=inherit
StandardError=inherit
Restart=always
User=$CURRENT_USER
Group=$CURRENT_USER
Environment="PYTHONUNBUFFERED=1"
[Install]
WantedBy=multi-user.target
EOL
echo "stream_control.service created"
# Reload systemd daemon and enable/start the stream_control service
sudo systemctl daemon-reload
sudo systemctl enable stream_control.service
sudo systemctl restart stream_control.service
# Get the IP address of the Raspberry Pi
IP_ADDRESS=$(hostname -I | awk '{print $1}')
# Select audio device
select_audio_device
echo "Installation complete"
echo "Please reboot the Raspberry Pi and then visit http://$IP_ADDRESS:5000 to access the Web UI."