Hallo Freunde, folgendes altes Skript habe ich gefunden und ausprobiert. Leider verliert der Player ständig den Stream. Laut Skript soll er aber den Stream dann aber neu starten. Was könnte der Fehler sein oder was müsste man ergänzen. #!/bin/bash echo "Videostreamer Startup" ######################################################## Single ############################################# ##Assign location of this script to variable ##Used to restart script after connection is lost Script=/bin/startupstream.sh omxplayer -o hdmi -b --live rtsp://192.168.168.19/media/video3 ##Find PID of omxplayer.bin #The brackets "[ ]" around the n prevent grep from returning itself #in the results of the ps command PID=$(ps ax | grep omxplayer.bi[n] | cut -d' ' -f2) echo "PID = $PID" ##Loop to test if connection is present every 60 seconds while [ $PID ]; do sleep 5 PID=$(ps ax | grep omxplayer.bi[n] | cut -d' ' -f2) done #If connection is not found to be present execute this command to retry every 15 seconds sleep 10 exec $Script ################################################################### Über eure Hilfe werde ich mich sehr freuen. Wolke