„Netvideo“ ist eine elegante Erweiterung, um Videos nicht von USB-Stick oder dem internen Verzeichnis abzuspielen, sondern über das Netzwerk. Vorteil: jede Änderung in dem Netzwerkverzeichnis wird unmittelbar erkannt und die Datei oder die Dateien werden ganz easy, vom Schreibtisch aus gesteuert, abgespielt. Macht richtig viel Sinn für mittlere und grosse Ausstellungsflächen.
#!/bin/bash
# set: "sudo pico /boot/video_looper.ini" with directory mode and the mount location:
# path = /mnt/netvideo/
# create the mount location with privileges: /mnt/netvideo
# create a mount.service to execute at startup
# Set the SMB share credentials
username="smb_username"
password="smb_userpassword"
# Set the SMB share details
share_address="//serverIP/smb_share"
mount_point="/mnt/netvideo"
# sleep command important to wait for network
sleep 10
# Mount the SMB share
sudo mount -t cifs -o username="$username",password="$password" "$share_address" "$mount_point"
# Check if the mount was successful
if [ $? -eq 0 ]; then
echo "SMB share mounted successfully."
else
echo "Failed to mount SMB share."
fi