Skip to content

Commit

Permalink
Update readme, changelog for 1.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
benfmiller committed Jun 3, 2024
1 parent 4d5ef5f commit 59aeb58
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## [1.3.0] 2024 - 06 - 02

### Changed

- Migrated to pyproject.toml
- Extracted noisereduce and visrecognize to optional dependencies

## [1.2.4] 2024 - 01 - 07

### Added
Expand Down
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@ pip install audalign

in the directory

### Optional dependencies

- visrecognize: additional recognizer based on spectrogram image comparison. `pip install audalign[visrecognize]`
- noisereduce: wrapper utils around [timsainb/noisereduce](https://github.com/timsainb/noisereduce). `pip install audalign[noisereduce]`

## Recognizers

There are currently four included recognizers, each with their own config objects.
Expand All @@ -64,7 +69,7 @@ import audalign as ad
fingerprint_rec = ad.FingerprintRecognizer()
correlation_rec = ad.CorrelationRecognizer()
cor_spec_rec = ad.CorrelationSpectrogramRecognizer()
visual_rec = ad.VisualRecognizer()
visual_rec = ad.VisualRecognizer() # requires installting optional visrecognize dependencies

fingerprint_rec.config.set_accuracy(3)
# recognizer.config.some_item
Expand Down Expand Up @@ -108,7 +113,7 @@ Correlation is more precise than fingerprints and will always give a best alignm
## Other Functions

```python
# wrapper for timsainb/noisereduce
# wrapper for timsainb/noisereduce, optional dependency
ad.remove_noise_file(
"target/file",
"5", # noise start in seconds
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "audalign"
version = "1.2.4"
version = "1.3.0"
description = "Audio Alignment and Recognition in Python"
requires-python = ">= 3.8"
readme = "README.md"
Expand Down

0 comments on commit 59aeb58

Please sign in to comment.