-
Hi there, was looking for some help. I just installed BirdNET-Pi on a new Raspberry Pi 4B, upgrading from a Raspberry Pi 3B. New SD card too. Fresh install, but I transferred the birds.db, the birdnet.conf, and the BirdSongs\Extracted\By_Date\ folders. I'm running into an issue where looking at |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
wild shot: that old classic, permissions maybe? or ownership? |
Beta Was this translation helpful? Give feedback.
I am running a regex rename in order to rename each of the files in the directory that match with the sanitized file format back to include colons in the timestamp.
This has solved the issue, at least for one date so far. Thanks for rubber ducking for me.
find . -type f \( -name "*-*-*-birdnet-*_*.mp3" -o -name "*-*-*-birdnet-*_*.mp3.png" \) -exec rename 's/(.*-birdnet-\d{2})_(\d{2})_(\d{2})(\.mp3(?:\.png)?)$/$1:$2:$3$4/' {} +