From 9c9dde3423c1c000a85e439655c0e14acfd33516 Mon Sep 17 00:00:00 2001 From: Maurice Van Wassenhove Date: Mon, 27 May 2024 16:55:55 +0200 Subject: [PATCH 1/3] Update README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index ad638f2..a4ff215 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ Air drumming using MediaPipe Pose Landmarker. +https://github.com/Mouwrice/DrumPy/assets/56763273/36107c48-a916-4dba-ab1e-c4f9960ca7ed + ## Installation ### Download the DrumPy binary from the latest release @@ -65,6 +67,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. From 0ec86c9ccfa717a372858beb2839942387d94d94 Mon Sep 17 00:00:00 2001 From: Maurice Van Wassenhove Date: Mon, 27 May 2024 17:02:42 +0200 Subject: [PATCH 2/3] Update README.md --- README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a4ff215..fad7cb1 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,10 @@ Air drumming using MediaPipe Pose Landmarker. -https://github.com/Mouwrice/DrumPy/assets/56763273/36107c48-a916-4dba-ab1e-c4f9960ca7ed + + +https://github.com/Mouwrice/DrumPy/assets/56763273/8e15504c-e404-40da-8d5b-a491cbc1f449 + ## Installation @@ -10,7 +13,7 @@ https://github.com/Mouwrice/DrumPy/assets/56763273/36107c48-a916-4dba-ab1e-c4f99 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 @@ -34,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 From 3cfe1923c2a982420df3c106ab5c00e9427d6c73 Mon Sep 17 00:00:00 2001 From: Maurice Van Wassenhove Date: Mon, 27 May 2024 17:04:16 +0200 Subject: [PATCH 3/3] chore(main): release 0.5.0 (#59) --- CHANGELOG.md | 12 ++++++++++++ pyproject.toml | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) 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/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 "]