-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ability to extract spectrogram from detections (#41)
* Add ability to extract spectrograms for detections * Improve api command language * Fix and add missing keys for extracted media * Add tests for extracted media paths in detections * Update documentation for extractions * Change matplotlib to 3.5.3 to maintain py3.7 support * Correct test for slight float variablity across platforms * Handle test variability in py38 and py39
- Loading branch information
Showing
5 changed files
with
199 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ exclude = [ | |
|
||
[project] | ||
name = "birdnetlib" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
authors = [ | ||
{ name="Joe Weiss", email="[email protected]" }, | ||
] | ||
|
@@ -25,7 +25,8 @@ classifiers = [ | |
] | ||
dependencies = [ | ||
"watchdog==2.1.9", | ||
"pydub==0.25.1" | ||
"pydub==0.25.1", | ||
"matplotlib==3.5.3", | ||
] | ||
|
||
[project.urls] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters