|
Post by nathanmyersc on Mar 30, 2024 9:16:16 GMT
I notice some people post silent audios like sigh energy or scalar waves and i was pondering how they work. like my images i understand ive encoded them with intentions and overlayed them with textual affirmations. But silent audios are still a mystery too me? is it as simple as setting the intention repeater to repeat a file? or using my densifier program to make several tracks of my track and then mix it down infinitely on loop? any tips or ideas?
|
|
|
Post by AnthroHeart on Mar 30, 2024 10:48:13 GMT
It might help to run a repeater function like this while you are writing the bytes to the WAV:
process_intention = intention_multiplied;
So that each byte that gets written has that energy of repeating in it.
Even if it writes a 0 byte, or an unchanging byte, it will still have that energy.
I'm not actually doing this as I probably didn't think of it before. But I thought I had.
|
|
|
Post by nathanmyersc on Mar 30, 2024 12:52:07 GMT
Add a thread that repeats the entire contents of a text file stating the wav file embodies these intentions or something like that eh?
|
|
|
Post by AnthroHeart on Mar 30, 2024 14:00:16 GMT
Add a thread that repeats the entire contents of a text file stating the wav file embodies these intentions or something like that eh? That might work, though I don't think you need another thread. As you write each byte, just do a process_intention = intentionMulitplied Or something like that. The intention can be directed at charging up each byte before it's written.
You could even do a loop over like a million for each byte written and repeating the intention, so that it gets amplified a million times for each sample written.
|
|
|
Post by reden on Mar 30, 2024 17:49:21 GMT
Add a thread that repeats the entire contents of a text file stating the wav file embodies these intentions or something like that eh? You can do that later with a Repeater if you want.
|
|
|
Post by reden on Mar 30, 2024 17:55:04 GMT
I know silent subliminals work by transposing voice and so forth to the upper ranges where humans can't hear, but our cells can.
This script is for Audacity's Nyquist variant. It basically just cuts the lower audio range and pastes it in the upper. It isn't too effective. ;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))
There are better ways, for example one that transforms the subliminal into a very quiet band in 17-18 kHz that is only heard as a thrumming if you turn the volume up, but that is executed by a proprietary, likely Windows, program.
|
|
|
Post by reden on Mar 30, 2024 18:02:07 GMT
A person can also make a typical subliminal, and turn the volume down to 0.01 (1%) and it still will have power.
|
|
|
Post by meteagle on Apr 4, 2024 11:19:45 GMT
I notice some people post silent audios like sigh energy or scalar waves and i was pondering how they work. like my images i understand ive encoded them with intentions and overlayed them with textual affirmations. But silent audios are still a mystery too me? is it as simple as setting the intention repeater to repeat a file? or using my densifier program to make several tracks of my track and then mix it down infinitely on loop? any tips or ideas? u can simply download a silent audio track ( search in web ) and charge it via repeater . i have done this effectively before
|
|