Hallo!
Is it possible to get the length of the audio file which I want to analyze ?
In one algorithm I want to analyze the whole audio file at once and now I am thinking about a good way to do it:
a) I could set the blocksize to the length of the whole audio file (therefore I would need the length of the file)
b) or process the file in small blocks, save them and call getRemainingFeatures at the end
But also in b) I need the file length, because it would be nice to allocate the big buffer arrays before (and not always resize them each block).
Thanks for any hints how this could be achieved in a nice way,
LG
Georg
PS: I am using python/vampy, but I guess the same problem is valid for C++ plugins ...