< Back to IRCAM Forum

Saving the parameters of the supervp-processing

Dear Karim,

is there a way to save all the parameters of the supervp-processing in a text file having the list of parameters as following ?

I created my own tool but it is not patch space savy…

“begin
end
window-size 4096
fft-size 4096
window-step 4
window-type hanning
shape-invariant
preserve-transient t
normalize
outfile NEW_filename
extend-across yes”

OR maybe save an excerpt similar to the information in the Listener, for exemple :

OLD_filename.aif
-Afft -M4096 -N4096 -Whanning -oversamp 4 -P1 -td_thresh 1.4 -td_band 0.0,22050.0 -td_ampfac 1.5 -D1.075 -Osa16
NEW_filename.aif

And another relative question.
How can I use the ’save-params’ or ’save-as-text’ or svp-paramfile’ ?
I can’t find any doc about…

Thank you !
Georgia

Hi,

there’s an old (but gold) trick to save and recall text here:

(just change the command with “echo your VP parameters”)

or the file box stuff:

https://support.ircam.fr/docs/om/om6-manual/co/ReadingWriting.html

I’m also interested in this topic! if you know more ways please share them if you can :slight_smile:

best rc

Dear Georgia,

I don’t seem to understand exactly your question about the parameters. They are all available starting from supervp-processing method.
Now if you mean you need to create a shortcut starting from a script you can use om-terminal with a textfile. If you need me to send you an example, please do send the processing type you are using.

BEst
K

Dear Goergia,

Anyhow, if i understand you well here ia an example based on the info you gave:

And the patch:
01-one-treatment-1.omp (16.4 KB)

Best
K

…as for your next question, i think you are refering to this:

It’s in the OM prefs under externals tab pressing Options button

Dear Karim,

sorry i it wasn’t clear.

I need to save automaticaly in a .txt all the parameters of 1) my treatment and 2) of the supervp processing.
By “automaticaly’ I mean without copy paste from terminal. The .txt should be saved together with the processing.

A .txt file containing either this:

"OLD_filename.aif
stretch 1.075
begin
end
window-size 4096
fft-size 4096
window-step 4
window-type hanning
shape-invariant nill
preserve-transient t
normalize nil
outfile NEW_filename.aif
extend-across yes”

OR this

“OLD_filename.aif
stretch 1.075
-Afft -M4096 -N4096 -Whanning -oversamp 4 -P1 -td_thresh 1.4 -td_band 0.0,22050.0 -td_ampfac 1.5 -D1.075 -Osa16
NEW_filename.aif”

I created myself the first version (for the moment without the ’in_filename and the treatment) but it is not space savvy.
In my version both the treated AF and the .txt file have the same name automatically.

I am sending you my patch

Thank you very much

The second version would be more ‘universal’

“OLD_filename.aif
TREATMENT treatment_ALL_PARAMETERS
-Afft -M4096 -N4096 -Whanning -oversamp 4 -P1 -td_thresh 1.4 -td_band 0.0,22050.0 -td_ampfac 1.5 -D1.075 -Osa16
NEW_filename.aif”

thanks

Thank you Georgia,

I appreciate rather a patch than a picture:-)

Anyhow, in order to output the arguments for m supervp-processing you need to change the method. Because what are you doing in your screenshots is just formating the commands. So maybe this?:

01-one-treatment-1 2.omp (14.4 KB)

Dear Goergia,

Can you just tell me what do you want really to achieve here?
Is it to auto-rename your soundfile according to the transformation. Because if it is the case, you are rather complicating the matter ie, there is a simpler way to do so.

BEst
K

Dear Karim

thank you for the patches.

I need to autoname the final file, autoname and save a .txt file.

The txt should have the name of the processed audio file, the parameters of the treatment, and the parameters of supervp-processing.

I would like to find this information in order to repeat a treatment with exactly the same parameters if needed.

The command you are using is in a textfile separate from the supervp-processing object. That means that on have to add twice the parameters.

Is it possible to extract this command at the end of processing, directly from supervp-processing object, and save it as .txt?

Dear Georgia,

This is possible of course if we re-write the supervp-processing method, or do a new one for that. Because this implies two actions: Writing a soundfile and a textfile.
By the way, the method you use for naming your soundfile is rather problematic. Ie you are using white spaces which is not a standard method of dealing with pathnames at least in the unix world. I suggest you use underscores instead of white spaces.

Now if you need me to write a new method for doing so, i suggest you define clearly your needs. In your examples it is rather unclear which are the fields you want to name your soundfile. As for the commandline, we can of course write it in a file.

Best regards

Karim

Dear Georgia,

Here is a code for writing the commandline on disk + processing the soundfile:
Screenshot_2025-04-03_18-13-48

The code:
svp-proc.lisp (6.4 KB)

Waiting for your specs for naming the soundfile. Please be specific and clear if possible.

Best
K