Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions feature_tests/run_birdnet_on_microphone_stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,12 @@
from birdnetlib import RecordingBuffer
from birdnetlib.analyzer import Analyzer

LATITUDE = 32.7157
LONGITUDE = -117.1611
# Latitude (decimal degrees). Positive = North. Range: -90 .. +90
LATITUDE = None # e.g., 32.7157

# Longitude (decimal degrees). Positive = East. Range: -180 .. +180
LONGITUDE = None # e.g., -117.1611

SAMPLERATE = 48000
CONFIDENCE_THRESHOLD = 0.1

Expand Down