BeatNet integration and project additions/improvements#2
Open
pasquale90 wants to merge 21 commits intomainfrom
Open
BeatNet integration and project additions/improvements#2pasquale90 wants to merge 21 commits intomainfrom
pasquale90 wants to merge 21 commits intomainfrom
Conversation
…the default tracker for dev purposes. Technical dept: BeatNet computes upbeats and downbeats. To calculate the tempo, the calculate tempo function has to be implemented. This will compute the tempo based on the beat interval between two adjusted beats. Techincal dept 2: After building the plugin, all DLL files and model weights must be manually copied to the application host's installation directory. This is a temporary manual fix due to the current state of development.
…terface. Interface now stores in the stack memory both trackers and switches between two pre-initialized instances
…odel weights are now loaded dynamically from within the directory where the vst3 file is located.
linking against the libs
…ractions are triggered at config time.
…common libraries between tracker submodules
…llation dir for mac and linux
…racking operation. Also, isHostPlaying function is implemented, to return the host playback state (playback/stop/pause). This is used to conditionally process audio input and depict output states on the UI. Furthermore, some small fixes are applied : 1) added stopTimer on the PluginEditor destructor, and fixed a casting issue on the BeatNet class (double instead of float in the operate function of the BeatNets-wrapper class)
Steps: - consider both regular-beat and down-beat as valid beats - computes interval in ms between beats - filter out unrealistic tempos - convert inverval to BPM. - apply rolling average smoothing to stabilize the bpm calculation Technical dept: - the bmp estimation is unstable and needs improvement
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changes applied:
BeatNet integration
Trackerabstract class.Additions
Improvements
Technical dept