rfblackmagic
New Member
I want to verify if the silent subliminal made with this script in Audacity is working as it should.
The script:
The script claims to generate an SSB AM signal, in which the voice frequencies are upshifted to near the threshold of audible frequencies, humans can hear between 20Hz to 20KHz but as they get older, they lose sensitivity towards 20KHz, so the script shifts the voice frequencies towards these higher frequencies. The theory is that when this is played, because the conscious mind doesn't hear it, it directly goes the subconscious mind.
So I tried that script on few messages, but I wasn't able to notice any difference in my thought process.
But the problem with the script is it amplitude modulates the messages rather than PCM in which most audio files are stored, so I want to know what kind of output would I get if I transmitted an audio file generated from this script on AM. Is there any transmitter I can build to verify if it is producing the output it should.
The script:
Code:
;nyquist plug-in
;version 1
;type process
;name "Subliminal..."
;action "Subliminal..."
;control carrier "Carrier" real "Hz" 17500 14000 20000
(setf carrier (max 14000 (min carrier 20000)))
;; 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) (- (/ *sound-srate* 2.0) 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.")
(multichan-expand #'subliminal s))
The script claims to generate an SSB AM signal, in which the voice frequencies are upshifted to near the threshold of audible frequencies, humans can hear between 20Hz to 20KHz but as they get older, they lose sensitivity towards 20KHz, so the script shifts the voice frequencies towards these higher frequencies. The theory is that when this is played, because the conscious mind doesn't hear it, it directly goes the subconscious mind.
So I tried that script on few messages, but I wasn't able to notice any difference in my thought process.
But the problem with the script is it amplitude modulates the messages rather than PCM in which most audio files are stored, so I want to know what kind of output would I get if I transmitted an audio file generated from this script on AM. Is there any transmitter I can build to verify if it is producing the output it should.