diff --git a/scripts/install_config.sh b/scripts/install_config.sh index 7512d9e..ab538bc 100755 --- a/scripts/install_config.sh +++ b/scripts/install_config.sh @@ -94,6 +94,9 @@ BIRDNETPI_URL= RTSP_STREAM= +## RTSP_STREAM_TO_LIVESTREAM is the index, so 0 means the first stream +RTSP_STREAM_TO_LIVESTREAM="0" + #----------------------- Apprise Miscellanous Configuration -------------------# APPRISE_NOTIFICATION_TITLE="New BirdNET-Pi Detection" diff --git a/scripts/update_birdnet_snippets.sh b/scripts/update_birdnet_snippets.sh index 592cd90..afa5fb7 100755 --- a/scripts/update_birdnet_snippets.sh +++ b/scripts/update_birdnet_snippets.sh @@ -65,6 +65,10 @@ if ! grep -E '^DATA_MODEL_VERSION=' /etc/birdnet/birdnet.conf &>/dev/null;then echo "DATA_MODEL_VERSION=1" >> /etc/birdnet/birdnet.conf fi +if ! grep -E '^RTSP_STREAM_TO_LIVESTREAM=' /etc/birdnet/birdnet.conf &>/dev/null;then + echo "RTSP_STREAM_TO_LIVESTREAM=\"0\"" >> /etc/birdnet/birdnet.conf +fi + [ -d $RECS_DIR/StreamData ] || sudo_with_user mkdir -p $RECS_DIR/StreamData [ -L ${EXTRACTED}/spectrogram.png ] || sudo_with_user ln -sf ${RECS_DIR}/StreamData/spectrogram.png ${EXTRACTED}/spectrogram.png