Re: VST Effects 8192 samples delay
Posted: Fri Nov 02, 2012 4:52 am
If it's any help to you TheRoofInhabitant, I can give you a quick and easy way to delete the first 8192 samples from a track or selection.
A Nyquist snippet to do this is:
To use this code, select the first part of the track (at least 8192 samples, but you don't need to be at all precise), then copy and paste this code into the "Nyquist Prompt" effect. Click OK and the first 8192 samples of the selection will be deleted.
If this is useful, then I could convert this code into a plug-in effect which would be a lot more convenient as you would then be able to assign a hot-key to run the effect.
Would that be useful?
A Nyquist snippet to do this is:
Code: Select all
(let ((start (/ 8192 *sound-srate*)))
(multichan-expand #'extract-abs start (get-duration 1) s))If this is useful, then I could convert this code into a plug-in effect which would be a lot more convenient as you would then be able to assign a hot-key to run the effect.
Would that be useful?