seems to work

This commit is contained in:
Patrick McGuire
2021-10-15 19:48:39 -04:00
parent 4f03fea42a
commit ae3e29ef1d
4 changed files with 52 additions and 12 deletions
+1 -1
View File
@@ -129,7 +129,7 @@ for h in "${SCAN_DIRS[@]}";do
"${NEWSPECIES_BYDATE}/${NEWFILE}" "${NEWSPECIES_BYDATE}/${NEWFILE}"
# Create spectrogram for extraction # Create spectrogram for extraction
sox "${NEWSPECIES_BYDATE}/${NEWFILE}" -n remix 1 rate 20k spectrogram \ sox "${NEWSPECIES_BYDATE}/${NEWFILE}" -n remix 1 rate 24k spectrogram \
-t "${COMMON_NAME}" \ -t "${COMMON_NAME}" \
-c "${NEWSPECIES_BYDATE}/${NEWFILE}" \ -c "${NEWSPECIES_BYDATE}/${NEWFILE}" \
-o "${NEWSPECIES_BYDATE}/${NEWFILE}.png" -o "${NEWSPECIES_BYDATE}/${NEWFILE}.png"
+5 -5
View File
@@ -1,19 +1,19 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# Sends a notification if a new species is detected # Sends a notification if a new species is detected
#set -x #set -x
trap 'rm -f $TMPFILE' EXIT trap 'rm -f $tmpids' EXIT
source /etc/birdnet/birdnet.conf source /etc/birdnet/birdnet.conf
TMPFILE=$(mktemp) tmpids=$(mktemp)
[ -f ${IDFILE} ] || touch ${IDFILE} [ -f ${IDFILE} ] || touch ${IDFILE}
cat "${IDFILE}" > "${TMPFILE}" cat "${IDFILE}" > "${tmpids}"
/usr/local/bin/update_species.sh > /dev/null /usr/local/bin/update_species.sh > /dev/null
if ! diff "${IDFILE}" "${TMPFILE}" &> /dev/null; then if ! diff "${IDFILE}" "${tmpids}" &> /dev/null; then
SPECIES=("$(diff "${IDFILE}" "${TMPFILE}" \ SPECIES=("$(diff "${IDFILE}" "${tmpids}" \
| grep "Common Name" \ | grep "Common Name" \
| sort \ | sort \
| awk '{for(i=4;i<=NF;++i)printf $i""FS ; print ""}')") | awk '{for(i=4;i<=NF;++i)printf $i""FS ; print ""}')")
+1 -1
View File
@@ -4,4 +4,4 @@ source /etc/birdnet/birdnet.conf
analyzing_now="$(cat /home/pi/BirdNET-Pi/analyzing_now.txt)" analyzing_now="$(cat /home/pi/BirdNET-Pi/analyzing_now.txt)"
spectrogram_png=${EXTRACTED}/spectrogram.png spectrogram_png=${EXTRACTED}/spectrogram.png
#sudo -u pi sox "${analyzing_now}" -n spectrogram -t "Currently Analyzing" -c "${analyzing_now}" -o "${spectrogram_png}" #sudo -u pi sox "${analyzing_now}" -n spectrogram -t "Currently Analyzing" -c "${analyzing_now}" -o "${spectrogram_png}"
sudo -u pi sox "${analyzing_now}" -n remix 1 rate 20k spectrogram -t "Currently Analyzing" -c "${analyzing_now}" -o "${spectrogram_png}" sudo -u pi sox "${analyzing_now}" -n remix 1 rate 24k spectrogram -t "Currently Analyzing" -c "${analyzing_now}" -o "${spectrogram_png}"
+45 -5
View File
@@ -53,14 +53,10 @@ $mysqli->close();
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>BirdNET-Pi DB</title> <title>BirdNET-Pi DB</title>
<!-- CSS FOR STYLING THE PAGE --> <!-- CSS FOR STYLING THE PAGE -->
<style> <style>
@media screen and (max-width: 600px) {
.column {
width: 100%;
}
}
* { * {
box-sizing: border-box; box-sizing: border-box;
} }
@@ -114,6 +110,50 @@ $mysqli->close();
text-align: center; text-align: center;
} }
@media screen and (max-width: 800px) {
.column {
float: none;
width: 100%;
}
table {
margin: 0 auto;
font-size: medium;
border-collapse: collapse;
border-spacing: 1;
width: 100%;
border: 1px solid black;
}
h1 {
text-align: center;
color: black;
font-size: large;
font-family: 'Gill Sans', 'Gill Sans MT',
' Calibri', 'Trebuchet MS', 'sans-serif';
}
h2 {
text-align: center;
color: black;
font-size: large;
font-family: 'Gill Sans', 'Gill Sans MT',
' Calibri', 'Trebuchet MS', 'sans-serif';
}
td {
background-color: rgb(119, 196, 135);
border: 1px solid black;
}
th,
td {
font-weight: bold;
border: 1px solid black;
padding: 10px;
text-align: center;
}
}
td { td {
font-weight: lighter; font-weight: lighter;
} }