diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d225ce..f014336 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.5.0](https://github.com/Mouwrice/DrumPy/compare/v0.4.0...v0.5.0) (2024-05-27) + + +### Features + +* process results ([5835dc5](https://github.com/Mouwrice/DrumPy/commit/5835dc5202f37873f098424d0e12f4302ae4e7d1)) + + +### Bug Fixes + +* fix audio files ([9e66b8f](https://github.com/Mouwrice/DrumPy/commit/9e66b8ff13a395fbdbf7b9d468a71af12f7fb643)) + ## [0.4.0](https://github.com/Mouwrice/DrumPy/compare/v0.3.0...v0.4.0) (2024-05-14) diff --git a/README.md b/README.md index ad638f2..fad7cb1 100644 --- a/README.md +++ b/README.md @@ -2,13 +2,18 @@ Air drumming using MediaPipe Pose Landmarker. + + +https://github.com/Mouwrice/DrumPy/assets/56763273/8e15504c-e404-40da-8d5b-a491cbc1f449 + + ## Installation ### Download the DrumPy binary from the latest release Find the latest release on the releases page and download the binary for your platform. For windows, download the `DrumPy` folder with the `.exe` file inside. -After downloading, extract the folder and run the `.exe` file. +After downloading, extract the folder and run the `cli.exe` file. ### Using python 3.11 and poetry @@ -32,7 +37,7 @@ Registry. https://github.com/Mouwrice/DrumPy/pkgs/container/drumpy > [!NOTE] > Although the docker image is available, it requires some additional steps to be able to run it properly. -> As It requires a webcam and display to be made available to the container. This seems to be especially difficult +> As it requires a webcam and display to be made available to the container. This seems to be especially difficult > on Windows. ```shell @@ -65,6 +70,9 @@ After the calibration phase, you can start playing the drums freely. This calibration phase is only done once when the application is started and progress is shown in the console. Keep this console visible to see the progress and the drum sounds that are being calibrated. +The currently enabled drum elements are: Snare Drum, High Hat Closed, Kick Drum and Cymbal. +They are calibrated in that order. + The application also has a small CLI interface that can be used to tweaks some parameters or choose a different camera. Open a terminal in the same directory as the application to access the CLI. diff --git a/pyproject.toml b/pyproject.toml index 1c7940f..c2bae34 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "drumpy" -version = "0.4.0" +version = "0.5.0" description = "" authors = ["Maurice Van Wassenhove "]