"Silent Subliminal - Plug In"

Hello,

I’m trying to install the “Silent Subliminal - Plug In” to my Audacity.

I follow the given instructions on diferent websites:

I copy the code (at the end of my post) into my office and try to safe it in audacity / plug - ins with .ny at the end. But then a report shows up that I’m not allowed to safe into this path and that I have to contact the admin. (I’m the admin on my computer). Can somebody help me?

Thank you and Greetings from Germany



[m];nyquist plug-in
;version 1
;type process
;name “Subliminal…”
;action “Subliminal…”
;control carrier “Carrier” real “Hz” 17500 14000 20000

(setf nyquist-srate (/ sound-srate 2.0))

(setf carrier (max 14000 (min carrier (- nyquist-srate 3000))))

;; We have two Nyquist frequencies, carrier/2 and sound-srate/2.
;; The CUTOFF is the maximum allowed frequency in the modulator.
;; It must not be greater than carrier/2, but also not greater than
;; the difference between the carrier and sound-srate/2, because
;; otherwise the modulated carrier aliases.

(setf cutoff (min (/ carrier 2.0) (- nyquist-srate carrier)))

(defun cut (function sound frequency)
(dotimes (ignore 10 sound)
(setf sound (funcall function sound frequency))))

(defun subliminal (sound)
(let ((result (mult 2 (cut #'lowpass8 (hp sound 80) cutoff)
(hzosc carrier))))
(cut #'highpass8 result carrier)))

(if (< sound-srate 44100)
;; (princ “The track sample frequency must be minimum 44100Hz.”)
(princ “Die Samplefrequenz der Tonspur muss mindestens 44100Hz sein.”)
(multichan-expand #'subliminal s))[/m]

(if (arrayp s)
(vector (modulator (aref s 0) f) (modulator (aref s 1) f))
(modulator s f))

Try saving it somewhere else first, then copy or drag the file to the plug-ins directory.

Try the instructions in the Audacity manual (it is a “Nyquist plug-in”): https://manual.audacityteam.org/man/installing_effect_generator_and_analyzer_plug_ins_on_windows.html#nyquist_install