Skip to content

Commit

Permalink
chore: add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
tphakala committed May 26, 2024
1 parent 11f1335 commit 1aa3a01
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions internal/conf/consts.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
// conf/consts.go hard coded constants
package conf

const (
SampleRate = 48000
BitDepth = 16
NumChannels = 1
CaptureLength = 3
SampleRate = 48000 // Sample rate of the audio fed to BirdNET Analyzer
BitDepth = 16 // Bit depth of the audio fed to BirdNET Analyzer
NumChannels = 1 // Number of channels of the audio fed to BirdNET Analyzer
CaptureLength = 3 // Length of audio data fed to BirdNET Analyzer in seconds

SpeciesConfigCSV = "species_config.csv"
SpeciesActionsCSV = "species_actions.csv"
Expand Down

0 comments on commit 1aa3a01

Please sign in to comment.