diff --git a/CHANGELOG.md b/CHANGELOG.md index faca72b..cee4f9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## [1.2.4] 2024 - 01 - 07 + +### Added + +- Support for python 3.11 + ## [1.2.3] 2023 - 04 - 11 ### Added diff --git a/README.md b/README.md index 656ce74..57d488f 100644 --- a/README.md +++ b/README.md @@ -172,6 +172,13 @@ fingerprint_rec.save_fingerprinted_files("save_file.json") # or .pickle fingerprint_rec.load_fingerprinted_files("save_file.json") # or .pickle ``` +## Resources and Tools + +For more tools to align audio and video files, see [forart/HyMPS's collection of alignment resources.](https://github.com/forart/HyMPS/blob/main/A_Tools.md#alignmentsynch-) + +[forart/HyMPS](https://github.com/forart/HyMPS/tree/main) also has many other audio/video resources. + + ## Getting ffmpeg set up You can use **ffmpeg or libav**. diff --git a/setup.py b/setup.py index 6672291..fe3bf87 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ def parse_requirements(requirements): PACKAGE_NAME = "audalign" -PACKAGE_VERSION = "1.2.3" +PACKAGE_VERSION = "1.2.4" SUMMARY = "Audio Alignment and Recognition in Python" REQUIREMENTS = parse_requirements("requirements.txt")