2022-08-12 18:08:39 +02:00
< h1 align = "center" > BirdNET-stream< / h1 >
2022-08-07 15:08:51 +02:00
2022-08-12 18:08:39 +02:00
< p align = "center" > Realtime BirdNET powered soundscape analysis for bird song identification.< / p >
2022-08-12 18:01:01 +02:00
2022-08-12 18:08:39 +02:00
< p align = "center" >
< img src = "./media/logo.svg" alt = "BirdNET-stream logo image IA generated" style = "width: 500px" >
< / p >
2022-08-12 18:01:01 +02:00
2022-08-13 07:48:06 +02:00
## Introduction
2022-08-24 08:01:52 +02:00
BirdNET-stream records sound 24/7 on any Linux computer with a microphone and analyze it using BirdNET algorithm by [**@kahst** ](https://github.com/kahst ).
2022-08-13 07:48:06 +02:00
2022-08-18 09:23:11 +02:00
Bird contacts are stored in a database and are made accessible in a webapp.
## Features
- 24/7 recording and [BirdNET-Analyzer ](https://github.com/kahst/BirdNET-Analyzer ) analysis of sound
- Live audio streaming and live spectrogram visualization from web browser
- Bird contacts saved into a SQL database
- Web Interface for system monitoring, data analysis and visualization
## Requirements
BirdNET-stream aims to be able to run on any 64-bit Linux computer.
It has been tested on Fedora and Debian.
It should work on a Raspberry Pi (or other Single Board Computer) with a USB microphone or Sound Card (not tested yet).
## Installation
2022-08-13 07:48:06 +02:00
2022-08-24 08:01:52 +02:00
> **Warning** BirdNET-stream is in early development, and may not work properly...
<!-- On debian based system, you can install BirdNET - stream with the following command:
2022-08-13 07:48:06 +02:00
```bash
2022-08-13 11:33:40 +02:00
curl -sL https://raw.githubusercontent.com/UncleSamulus/BirdNET-stream/main/install.sh | bash
2022-08-24 08:01:52 +02:00
``` -->
On debian based systems (tested on Debian Bullseye), the following command should allow you to install the base components without too much trouble:
```bash
# Change to your installation directory here, /home/$USER/Documents/BirdNET-stream for instance, or /opt/birdnet-stream, or whatever
cd /path/to/installation/directory
# Download installation script
2022-08-25 13:34:27 +02:00
curl -O https://raw.githubusercontent.com/UncleSamulus/BirdNET-stream/main/install.sh
2022-08-24 08:01:52 +02:00
# Run installation script:
chmod +x ./install.sh
./install.sh
```
I recommend to add `DEBUG=1` before this command to see the installation steps:
```bash
DEBUG=1 ./install.sh
```
To install from a specific git branch, add `BRANCH=<branch>` before the command, for instance:
```bash
BRANCH=dev DEBUG=1 ./install.sh
2022-08-13 07:48:06 +02:00
```
2022-08-24 08:01:52 +02:00
For finer control, or to adapt to your system, you can follow the instructions in the [INSTALL.md ](./INSTALL.md ) file (it may unfortunatly not be accurate for your system).
2022-08-13 07:48:06 +02:00
## Usage
2022-08-18 09:23:11 +02:00
- BirdNET-stream web application can be accessed on any web browser at [https://birdnet.home ](https://birdnet.home ), from your local network, or at any other hostname you set in nginx configuration, if your public IP is accessible from the internet.
2022-08-24 08:01:52 +02:00
- See the species detected
2022-08-18 09:23:11 +02:00
## Acknoledgments
2022-08-12 18:01:01 +02:00
- [BirdNET ](https://birdnet.cornell.edu ) on which this project relies
- [BirdNET-Pi ](https://birdnetpi.com ) the great inspiration of this project
2022-08-18 09:23:11 +02:00
## License
2022-08-24 08:01:52 +02:00
BirdNET-stream is licensed under the GNU General Public License v3.0, see [./LICENSE ](./LICENSE ) for more details.