1b3a31c3ee
After some services were recently quieted down by adjusting the log level for e.g ffmpeg. It would be nice if the user can easily adjust the log level again so that that they can investigate or debug a issue since output is not generated by default, so now the Livestream, Spectrogream and Birdnet Recording have a adjustable log levels to help with this.
30 lines
1.1 KiB
Bash
Executable File
30 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Make sox spectrogram
|
|
source /etc/birdnet/birdnet.conf
|
|
|
|
# Read the logging level from the configuration option
|
|
LOGGING_LEVEL="${LogLevel_SpectrogramViewerService}"
|
|
# If empty for some reason default to log level of error
|
|
[ -z $LOGGING_LEVEL ] && LOGGING_LEVEL='error'
|
|
# Additionally if we're at debug or info level then allow printing of script commands and variables
|
|
if [ "$LOGGING_LEVEL" == "info" ] || [ "$LOGGING_LEVEL" == "debug" ];then
|
|
# Enable printing of commands/variables etc to terminal for debugging
|
|
set -x
|
|
fi
|
|
|
|
# Time to sleep between generating spectrogram's, default set the recording length
|
|
# To try catch the spectrogram as soon as possible run at a smaller intervals
|
|
SLEEP_DELAY=$((RECORDING_LENGTH / 4))
|
|
|
|
# Continuously loop generating a spectrogram every 10 seconds
|
|
while true; do
|
|
analyzing_now="$(cat $HOME/BirdNET-Pi/analyzing_now.txt)"
|
|
|
|
if [ ! -z "${analyzing_now}" ] && [ -f "${analyzing_now}" ]; then
|
|
spectrogram_png=${EXTRACTED}/spectrogram.png
|
|
sox -V1 "${analyzing_now}" -n remix 1 rate 24k spectrogram -c "${analyzing_now//$HOME\//}" -o "${spectrogram_png}"
|
|
fi
|
|
|
|
sleep $SLEEP_DELAY
|
|
done
|