View Single Post
Old 03-21-2019, 08:40 AM   #434
danerius
Human being with feelings
 
Join Date: Oct 2018
Posts: 173
Default

Quote:
Originally Posted by mrelwood View Post
Didn’t know such exists, I better check them out as well!

Exactly. Reaper reads the value of the next sample in the audio file and gives it to the plugin as values in parameters called ”spl0” (left) and ”spl1” (right). The plugin updated the ”spl0” and ”spl1” values, and reads and executes all code in the @sample section. So that section is executed 48000 times per second, for every new sample. (Or whatever the samplerate is set to.)

Other code sections:
@init - is read only at plugin load, srate change, and depending on settings at playback start/stop.
@slider - is read only when you drag the plugin’s slider with the mouse.
@block - is read at every audio buffer start, so every 64-2048 samples, depending on the audio buffer size.
@gfx - is executed max 30 times per second, depending on how hard the computer is working.
The section before @init is only read once at plugin load. Sliders and some options are set there.

Not exactly, they are all parameters in the plugin code. If you set ”myage = 128;” in the code, it will show up on the right. You can filter the list by typing ”age” at the filtering field below, then the list will only show ”myage”, ”yourage”, ”cages” etc, if you have them set in the code. And who doesn’t, right? ;o)
Kiitos mrelwood

Heres LOSERs Tutorial: https://wiki.cockos.com/wiki/index.p...sonic_Tutorial

Ive done some research on the things you mentioned. Much appreciated and helpful. Still in the learning stage and slowly getting there

Best regards /Bo
danerius is offline   Reply With Quote