Haha the easter bunny has delivered.
-
@d-healey Yeah, unfortunately. But I am very interested in a way to extract the harmonic dataset from a non-real-time sound
-
But I am very interested in a way to extract the harmonic dataset from a non-real-time sound
You might like this program (not open source) https://www.klingbeil.com/spear/
-
@d-healey Please, Dave, stop finding more tools, I can't follow anymore
Thank you I'm checking this! But in the end, I need a Hise-embedded solution for analysing input recordings (non real-time) -
@ustk said in Haha the easter bunny has delivered.:
But in the end, I need a Hise-embedded solution for analysing input recordings (non real-time)
For use in HISE or in your compiled projects?
-
@d-healey Compiled project.
Since the sampler's sample editor can show the partials already, the analysis might not be far from being ported as an API, or even is already possible and I don't know... -
@ustk In the end I just want a list of partials, let say the first 8th ones, and their level... Like for additive synthesis but it's not what I plan to do.
-
Compiled project
Since Loris is GPL it can only be embedded in a GPL project so you might be out of luck.
-
@d-healey oh I thought it was just the real-time capability that was GPL only, not everything...
-
@ustk The entire library, as far as I know there is no specific real-time stuff and based on what Christoph was saying earlier it wouldn't be fast enough for real-time processing.
Now you have another great reason to use the GPL for your software :)
-
-
@d-healey Since I just need a partial list it might not be the simpler tool anyway.
And if the sampler can draw them it should be possible. I reckon there's a 2DSpectrum thingy in the FFT already so getting a data object should be pretty simple to add for "who is not me" :)EDIT: In fact, I'm sure it's already there because we can get all bins from an FFT, I just have to somehow filter out the one I need...
-
@ustk I use audacity and then export the list to csv, open in a spreadsheet, and filter the data. Might be too slow though if you have a lot of samples
-
@d-healey Yeah but remember it has to be doable in a compiled project in the end ;)
-
@ustk cant you use Loris in HISE to generate the SDIF file and then some other (not open source) process to read the partials from the SDIF?
-
@Lindon what format is the SDIF file?
-
@Lindon Don't you know what an SDIF file is, Lindon? Because... well... I don't... :)
-
@ustk its the partials analysis produced by loris analyse - essentially the sines and their envelopes that (when combined) re-generate your original audio...
-
@Lindon A nice idea indeed, if it's authorised by the license
-
@ustk you can also build an open source analyser app that stores the data in a format that you can define yourself so you don‘t have to come up with an SDIF parser.
-
@Christoph-Hart I just need to get the harmonics from any FFT solution so let stay simple, especially since Hise probably has everything I need at some modifications away :)