Hi,
first of all, I would like to know if SVP can synthesize a 1GB4 with variable window size. If it’s possible, then – using a breakpoint function to control dynamically the window size for each frame, where the breakpoint is sampled in a way that each value of the function is a power of 2 – I’d like to know the right formulas to calculate correctly the window step T, given that, for a constant window size, T = WS/(SR*AOF). Thanks for your support.
Best,
Francesco Vitale
Hello Francesco,
what do you man here? You want supervp to analyse a sound with time varying window size and store the result as 1GB4 or you want to generate a 1GB4 file somewhere and want supervp to synthesize it?
In fact both cases work, but you should note that transformation with time varying windows is not yet fully tested.
Stepsize would be best calculated
T = min(WS_prev, WS)/(SR*AOF).
So you would ensure the overlap for both window sizes the previous and the current window.
Note, that window sizes don’t need to be a power of two. So this
using a breakpoint function to control dynamically the window size for each frame, where the breakpoint is sampled in a way that
each value of the function is a power of 2
is not necessary at all, and I would think you would waste a lot of time to really ensure this reliably.
Best
Axel
Thanks Axel.
Yes, what I meant is that I want to generate the 1GB4. (As far as I knew, it was not possible to analyze a sound in such a way: how do you do that with AS 3.2.8?). So, to ensure the overlap, all I need is to subtract from the value of WS the value of WS+1, right?
Best,
Francesco
how do you do that with AS 3.2.8?).
You need to differentiate what is possible in AS from what is possible in supervp. For the moment we don’t have time varying windows support in AS, but this is for quite a while already available in supervp. Note that AAAS in AS does not require the user to specify the window size bpf, it makes a choice automatically following the local sound properties. This is obviously a bit more complicated than just reading a bpf. The AAAS version of AS is pretty close to be published, but this for analysis only, using time varying windows in all treatments is still requiring many changes in AS.
So, to ensure the overlap, all I need is to subtract from the value of WS the value of WS+1, right?
no when I wrote min(WS_prev, WS) I meant take the smaller of the current and previous window sizes to calculate the step to be used to place the current window.
Best
Axel
My bad,
when I copied your instructions to the notepad on my desktop for an easier consultation, “min” was automatically changed by the text editor into “minus” (and so it changed in my mind). That explains my big misunderstanding!
P.S. I didn’t differentiate what is possible in AS from what is possible in supervp because I thought that AAAS required another kernel, different from supervp itself.
Best,
Francesco
P.S. I didn’t differentiate what is possible in AS from what is possible in supervp because I thought that AAAS required another kernel, different from supervp itself.
Yes AAAS in AS does require another kernel, but also this kernel does other things than supervp. More detailed
aaas kernel: reads a sound file and generates a M.bpf file that contains the estimate of the optimal windowsize over time
supervp kernel: reads the M.bpf file and the sound file and produces the spectrogram using these window sizes
AS: uses the sequence aaas -> supervp to produce an adaptive spectrogram that it then loads and displays.
Support for analysis with time varying windows in supervp is pretty old already. But generally we did not expect users would want to draw windows bpfs and so we waited for the finalization of the aaas kernel to give this out.
Best
Axel
Dear Axel,
thank you for your more detailed explanations. So, if I understood well what you said, for my purposes I do not have to write a SDIF from scratch: all I have to do is to create a suitable M.bpf file for svp (of course written on the base of a given analyzed sound). Now, since I’m not interested in estimating the optimal window size following the local sound properties as the AAAS kernel does, the M.bpf could contain any function that I want to draw. Thus, would you be so kind to show me how such a M.bpf file must be formatted with a little example (again: not necessarily with the characteristics of the adaptive analysis)? And then: what is the full command line to make svp read the M.bpf file?
Best,
Francesco
Hi Francesco,
Please find attached a bpf file containing time - window size as required by supervp
and an example (command line), here to compute an AAAS analysis (but that should give you an hint for other operations as well).
supervp -t -ns -I128 -S"/Volumes/Data/cp/as-sounds/A_S-FluteJS_Orig.aif" -Afft -Np1 -M"/Volumes/Data/cp/dev/forge/fg_audiosculpt/trunk/Output/Release/Fft/A_S-FluteJS_Orig-aaas-bpf.txt" -OS0 "/Volumes/Data/cp/dev/forge/fg_audiosculpt/trunk/Output/Release/Fft/tempAnalysis-0002.sdif"
HTH,
Best,
Charles
A_S-FluteJS_Orig-aaas-bpf.txt (5.38 KB)